File: //var/backups/mysql/sboh
-- MySQL dump 10.16 Distrib 10.1.44-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: sboh
-- ------------------------------------------------------
-- Server version 10.1.44-MariaDB-0+deb9u1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2019-06-13 11:06:55','2019-06-13 09:06:55','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=7272 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://www.silverbirchonhohenhort.co.za','yes'),(2,'home','https://www.silverbirchonhohenhort.co.za','yes'),(3,'blogname','Silverbirch On Hohenhort','yes'),(4,'blogdescription','DETAIL BY DESIGN','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@ctrlaltdesign.co.za','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','jS F Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','jS F Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:166:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:48:\"index.php?layout_category=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?layout_category=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:37:\"index.php?layout_category=$matches[1]\";s:52:\"layout_pack/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_pack=$matches[1]&feed=$matches[2]\";s:47:\"layout_pack/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_pack=$matches[1]&feed=$matches[2]\";s:28:\"layout_pack/([^/]+)/embed/?$\";s:44:\"index.php?layout_pack=$matches[1]&embed=true\";s:40:\"layout_pack/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_pack=$matches[1]&paged=$matches[2]\";s:22:\"layout_pack/([^/]+)/?$\";s:33:\"index.php?layout_pack=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:44:\"index.php?layout_type=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_type=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:33:\"index.php?layout_type=$matches[1]\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:38:\"index.php?scope=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?scope=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:27:\"index.php?scope=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:45:\"index.php?module_width=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?module_width=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:34:\"index.php?module_width=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=7&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'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:1:{i:0;s:67:\"nifty-coming-soon-and-under-construction-page/nifty-coming-soon.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:46:\"under-construction-page/under-construction.php\";a:2:{i:0;s:3:\"UCP\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','Africa/Johannesburg','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','7','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'initial_db_version','44719','yes'),(94,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'WPLANG','en_ZA','yes'),(97,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(103,'cron','a:9:{i:1592348817;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:1592384817;a:1:{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;}}}i:1592384818;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1592384828;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1592384829;a:1:{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:1592384830;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:1592424532;a:1:{s:21:\"et_builder_fonts_cron\";a:1:{s:32:\"552cbb9d6515dadbbc4718ad75114f08\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{s:8:\"interval\";s:5:\"daily\";}s:8:\"interval\";i:86400;}}}i:1594491434;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}','yes'),(104,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'recovery_keys','a:0:{}','yes'),(116,'theme_mods_twentynineteen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1560795433;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(133,'can_compress_scripts','0','no'),(152,'recently_activated','a:1:{s:46:\"under-construction-page/under-construction.php\";i:1561020721;}','yes'),(182,'current_theme','Divi','yes'),(183,'theme_mods_Divi','a:5:{i:0;b:0;s:18:\"custom_css_post_id\";i:28;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:2;}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";}','yes'),(184,'theme_switched','','yes'),(185,'et_pb_cache_notice','a:1:{s:6:\"3.22.7\";s:6:\"ignore\";}','yes'),(190,'et_core_version','3.24.1','yes'),(192,'et_divi','a:140:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"et_flush_rewrite_rules_library\";s:6:\"3.24.1\";s:31:\"divi_previous_installed_version\";s:6:\"3.22.7\";s:29:\"divi_latest_installed_version\";s:6:\"3.24.1\";s:27:\"divi_skip_font_subset_force\";b:1;s:27:\"et_pb_clear_templates_cache\";b:1;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:19:\"product_tour_status\";a:1:{i:1;s:3:\"off\";}s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:20:\"et_fb_pref_view_mode\";s:7:\"desktop\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:0:\"\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:400;s:33:\"et_fb_pref_modal_dimension_height\";i:400;s:27:\"et_fb_pref_modal_position_x\";i:30;s:27:\"et_fb_pref_modal_position_y\";i:50;s:24:\"et_fb_pref_toolbar_click\";s:5:\"false\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:24:\"show_footer_social_icons\";b:0;s:9:\"footer_bg\";s:7:\"#002349\";s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:29:\"disable_custom_footer_credits\";b:1;s:9:\"divi_logo\";s:101:\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/LGSIR-new-logo-vector-cmyk-01.png\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:2:\"on\";s:21:\"divi_show_google_icon\";s:2:\"on\";s:24:\"divi_show_instagram_icon\";s:2:\"on\";s:18:\"divi_show_rss_icon\";s:2:\"on\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:18:\"divi_instagram_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:5:\"false\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:27:\"divi_minify_combine_scripts\";s:2:\"on\";s:26:\"divi_minify_combine_styles\";s:2:\"on\";s:15:\"divi_custom_css\";s:0:\"\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:27:\"et_pb_post_type_integration\";a:3:{s:4:\"post\";s:2:\"on\";s:4:\"page\";s:2:\"on\";s:7:\"project\";s:2:\"on\";}s:21:\"et_pb_static_css_file\";s:2:\"on\";s:19:\"et_pb_css_in_footer\";s:3:\"off\";s:25:\"et_pb_product_tour_global\";s:2:\"on\";s:24:\"et_enable_classic_editor\";s:3:\"off\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:2:\"on\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:26:\"divi_bfb_optin_modal_shown\";s:2:\"no\";s:11:\"logo_height\";i:90;}','yes'),(193,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(194,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(195,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(196,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(197,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(198,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(199,'et_support_site_id','q(Q-Du=Spk4OjY7yAU5)','yes'),(200,'et_safe_mode_plugins_whitelist','a:5:{i:0;s:27:\"ari-adminer/ari-adminer.php\";i:1;s:15:\"etdev/etdev.php\";i:2;s:29:\"divi-builder/divi-builder.php\";i:3;s:31:\"query-monitor/query-monitor.php\";i:4;s:27:\"woocommerce/woocommerce.php\";}','yes'),(201,'et_support_center_installed','true','yes'),(202,'et_images_temp_folder','/home/sboh/public_html/wp-content/uploads/et_temp','yes'),(203,'et_schedule_clean_images_last_time','1594485317','yes'),(204,'et_bfb_settings','a:1:{s:10:\"enable_bfb\";s:2:\"on\";}','yes'),(205,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(216,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"info@ctrlaltdesign.co.za\";s:7:\"version\";s:5:\"5.2.7\";s:9:\"timestamp\";i:1591872783;}','no'),(223,'et_automatic_updates_options','a:2:{s:8:\"username\";s:11:\"Rufus.Rhoda\";s:7:\"api_key\";s:40:\"ea7875cd836c6644d847cdcebfafd860b5cc043d\";}','no'),(224,'et_account_status','active','no'),(240,'et_google_api_settings','a:3:{s:7:\"api_key\";s:0:\"\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";s:16:\"use_google_fonts\";s:2:\"on\";}','yes'),(285,'et_account_status_last_checked','1561020715','no'),(286,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1561021099;}','no'),(296,'_site_transient_et_update_themes','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1561021100;}','no'),(306,'option_tree_settings','a:3:{s:15:\"contextual_help\";a:1:{s:7:\"sidebar\";s:0:\"\";}s:8:\"sections\";a:6:{i:0;a:2:{s:2:\"id\";s:16:\"general_settings\";s:5:\"title\";s:16:\"General Settings\";}i:1;a:2:{s:2:\"id\";s:6:\"themes\";s:5:\"title\";s:6:\"Themes\";}i:2;a:2:{s:2:\"id\";s:17:\"design_and_layout\";s:5:\"title\";s:17:\"Design and Layout\";}i:3;a:2:{s:2:\"id\";s:11:\"translation\";s:5:\"title\";s:11:\"Translation\";}i:4;a:2:{s:2:\"id\";s:12:\"social_links\";s:5:\"title\";s:12:\"Social links\";}i:5;a:2:{s:2:\"id\";s:13:\"documentation\";s:5:\"title\";s:13:\"Documentation\";}}s:8:\"settings\";a:66:{i:0;a:10:{s:2:\"id\";s:7:\"themes2\";s:5:\"label\";s:6:\"Themes\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:13:\"custom_themes\";s:7:\"section\";s:6:\"themes\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:0:\"\";s:8:\"operator\";s:3:\"and\";}i:1;a:10:{s:2:\"id\";s:16:\"general_settings\";s:5:\"label\";s:16:\"General settings\";s:4:\"desc\";s:181:\"Here you can manage general settings. You can disable or enable Coming soon / Maintenace page or any of its sections. You can also add your Google Analytics code and Additional CSS.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:16:\"textblock-titled\";s:7:\"section\";s:16:\"general_settings\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:0:\"\";s:8:\"operator\";s:3:\"and\";}i:2;a:11:{s:2:\"id\";s:25:\"coming_soon_mode_on___off\";s:5:\"label\";s:23:\"Enable coming soon mode\";s:4:\"desc\";s:35:\"Enable of disable coming soon mode.\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:16:\"general_settings\";s:12:\"min_max_step\";s:0:\"\";s:7:\"sidebar\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:0:\"\";s:8:\"operator\";s:3:\"and\";}i:3;a:6:{s:2:\"id\";s:24:\"display_count_down_timer\";s:5:\"label\";s:24:\"Display count down timer\";s:4:\"desc\";s:52:\"Enable or disable count down timer on the home page.\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:16:\"general_settings\";}i:4;a:6:{s:2:\"id\";s:16:\"enable_preloader\";s:5:\"label\";s:16:\"Enable Preloader\";s:4:\"desc\";s:48:\"Enable of disable preloader of coming soon page.\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:16:\"general_settings\";}i:5;a:0:{}i:6;a:6:{s:2:\"id\";s:19:\"enable_sign_up_form\";s:5:\"label\";s:28:\"Enable built in Sign-up form\";s:4:\"desc\";s:89:\"If you want to use custom Sign-up form option below, you need to turn this option to off.\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:16:\"general_settings\";}i:7;a:10:{s:2:\"id\";s:25:\"insert_custom_signup_form\";s:5:\"label\";s:26:\"Insert custom Sign-up form\";s:4:\"desc\";s:364:\"You can use your MailChimp (or any other custom) embed code and replace the theme build in sign up form. Make sure that the upper option Enable built in Sign-up form is turned off.<br /><br />Please note that you need to adjust the elements that you paste inside this form, remove any remote CSS and use Additional CSS field for adjusting your form styles as well.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:10:\"javascript\";s:7:\"section\";s:16:\"general_settings\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:27:\"enable_sign_up_form:not(on)\";s:8:\"operator\";s:3:\"and\";}i:8;a:6:{s:2:\"id\";s:22:\"enable_contact_details\";s:5:\"label\";s:22:\"Enable Contact details\";s:4:\"desc\";s:76:\"Enable of disable Contact details on the second tab of the coming soon page.\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:16:\"general_settings\";}i:9;a:6:{s:2:\"id\";s:19:\"enable_social_links\";s:5:\"label\";s:19:\"Enable Social links\";s:4:\"desc\";s:72:\"Enable of disable Social links on the third tab of the coming soon page.\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:16:\"general_settings\";}i:10;a:6:{s:2:\"id\";s:18:\"disable_navigation\";s:5:\"label\";s:10:\"Navigation\";s:4:\"desc\";s:74:\"Enable of disable navigation buttons that are just below the logo section.\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:16:\"general_settings\";}i:11;a:6:{s:2:\"id\";s:17:\"disable_animation\";s:5:\"label\";s:14:\"Text animation\";s:4:\"desc\";s:33:\"Enable of disable text animation.\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:16:\"general_settings\";}i:12;a:6:{s:2:\"id\";s:28:\"insert_google_analytics_code\";s:5:\"label\";s:21:\"Google Analytics code\";s:4:\"desc\";s:128:\"Enter your Google Analytics code that will be added in your coming soon page footer. Make sure to include < script > tags.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:10:\"javascript\";s:7:\"section\";s:16:\"general_settings\";}i:13;a:6:{s:2:\"id\";s:21:\"insert_additional_css\";s:5:\"label\";s:14:\"Additional CSS\";s:4:\"desc\";s:265:\"You can enter your custom CSS code that can override theme default classes, just remember to add !important at the end of your CSS statements.<br /><br />See example below:<br /><br /><pre>.nifty-coming-soon-message {<br /> font-size: 3em !important;<br />}</pre>\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:3:\"css\";s:7:\"section\";s:16:\"general_settings\";}i:14;a:6:{s:2:\"id\";s:26:\"design_and_layout_settings\";s:5:\"label\";s:26:\"Design and Layout settings\";s:4:\"desc\";s:232:\"Here you can setup your desired text, adjust date and time for the counter and setup the slider images for the background slider. You can also setup the pattern overlay with the opacity control, assign desired Google Fonts and more.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:16:\"textblock-titled\";s:7:\"section\";s:17:\"design_and_layout\";}i:15;a:6:{s:2:\"id\";s:12:\"disable_logo\";s:5:\"label\";s:12:\"Display logo\";s:4:\"desc\";s:29:\"Enable of disable logo image.\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:17:\"design_and_layout\";}i:16;a:10:{s:2:\"id\";s:16:\"upload_your_logo\";s:5:\"label\";s:16:\"Upload your logo\";s:4:\"desc\";s:150:\"Upload your logo here, it will be placed at the top of the coming soon page.<br /><br />\r\n TIP: You should use some png images with 200x90px in size.\";s:3:\"std\";s:135:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin//assets/images/logo.png\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:17:\"design_and_layout\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:21:\"disable_logo:not(off)\";s:8:\"operator\";s:3:\"and\";}i:17;a:10:{s:2:\"id\";s:18:\"display_site_title\";s:5:\"label\";s:18:\"Display Site title\";s:4:\"desc\";s:161:\"If you dont use logo image, you can enable this option and display Site title.<br /><br />\r\n TIP: You can adjust Site title inside <em>Settings -> General.</em>\";s:3:\"std\";s:3:\"off\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:17:\"design_and_layout\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:20:\"disable_logo:not(on)\";s:8:\"operator\";s:3:\"and\";}i:18;a:6:{s:2:\"id\";s:24:\"your_coming_soon_message\";s:5:\"label\";s:24:\"Your coming soon message\";s:4:\"desc\";s:36:\"Enter your coming soon message here.\";s:3:\"std\";s:31:\"Our website is coming very soon\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:17:\"design_and_layout\";}i:19;a:6:{s:2:\"id\";s:10:\"page_title\";s:5:\"label\";s:10:\"Page Title\";s:4:\"desc\";s:35:\"Page title, for SEO. Keep it short.\";s:3:\"std\";s:39:\"Silverbirch On Hohenhort is coming soon\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:17:\"design_and_layout\";}i:20;a:6:{s:2:\"id\";s:16:\"page_description\";s:5:\"label\";s:16:\"Page Description\";s:4:\"desc\";s:60:\"Page description, for SEO. Keep it between 50 and 300 chars.\";s:3:\"std\";s:65:\"We are doing some work on our site. Please be patient. Thank you.\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:17:\"design_and_layout\";}i:21;a:6:{s:2:\"id\";s:32:\"enter_second_coming_soon_message\";s:5:\"label\";s:31:\"Your second coming soon message\";s:4:\"desc\";s:121:\"This second message will be animated over the first message. So, you can have more that one sentence for your message. ;)\";s:3:\"std\";s:34:\"Feel free to drop-by any time soon\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:17:\"design_and_layout\";}i:22;a:6:{s:2:\"id\";s:26:\"setup_the_count_down_timer\";s:5:\"label\";s:38:\"Enter the countdown ending date / time\";s:4:\"desc\";s:130:\"Specify the date and time of your count down timer expiration. If you leave this field empty, the countdown will not be displayed.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:16:\"date-time-picker\";s:7:\"section\";s:17:\"design_and_layout\";}i:23;a:6:{s:2:\"id\";s:20:\"countdown_font_color\";s:5:\"label\";s:29:\"Countdown timer numbers color\";s:4:\"desc\";s:53:\"Main color for countdown timer - for the big numbers.\";s:3:\"std\";s:7:\"#ffffff\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:17:\"design_and_layout\";}i:24;a:6:{s:2:\"id\";s:27:\"countdown_font_color_bottom\";s:5:\"label\";s:28:\"Countdown timer labels color\";s:4:\"desc\";s:67:\"Secondary color for countdown timer - for the smaller labels below.\";s:3:\"std\";s:7:\"#ffffff\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:17:\"design_and_layout\";}i:25;a:6:{s:2:\"id\";s:16:\"background_color\";s:5:\"label\";s:16:\"Background color\";s:4:\"desc\";s:89:\"Setup the default background color if you do not want to use the background image slider.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:17:\"design_and_layout\";}i:26;a:6:{s:2:\"id\";s:20:\"sign_up_button_color\";s:5:\"label\";s:12:\"Button color\";s:4:\"desc\";s:39:\"Setup the desired Sign-up button color.\";s:3:\"std\";s:7:\"#9e0039\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:17:\"design_and_layout\";}i:27;a:6:{s:2:\"id\";s:26:\"sign_up_button_color_hover\";s:5:\"label\";s:18:\"Button hover color\";s:4:\"desc\";s:45:\"Setup the desired Sign-up button hover color.\";s:3:\"std\";s:7:\"#9e0039\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:17:\"design_and_layout\";}i:28;a:6:{s:2:\"id\";s:31:\"disable_background_image_slider\";s:5:\"label\";s:23:\"Background image slider\";s:4:\"desc\";s:153:\"Enable or disable background image slider.<br /><br />NOTICE:You need to disable background image slider if you want to use only background color option.\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:17:\"design_and_layout\";}i:29;a:10:{s:2:\"id\";s:22:\"background_slider_time\";s:5:\"label\";s:37:\"Enter background slider rotation time\";s:4:\"desc\";s:83:\"Here you can enter desired time per slide. For example, 10000 equals to 10 seconds.\";s:3:\"std\";s:5:\"10000\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:17:\"design_and_layout\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:40:\"disable_background_image_slider:not(off)\";s:8:\"operator\";s:3:\"and\";}i:30;a:10:{s:2:\"id\";s:32:\"background_slider_animation_time\";s:5:\"label\";s:30:\"Enter transition duration time\";s:4:\"desc\";s:105:\"You can specify the time needed for transition effect to complete. For example, 2000 equals to 2 seconds.\";s:3:\"std\";s:4:\"2000\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:17:\"design_and_layout\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:40:\"disable_background_image_slider:not(off)\";s:8:\"operator\";s:3:\"and\";}i:31;a:10:{s:2:\"id\";s:20:\"upload_slider_images\";s:5:\"label\";s:37:\"Upload first background slider images\";s:4:\"desc\";s:111:\"Here you can upload your cover images, the best dimensions should be 1920x1080 or any with similar proportions.\";s:3:\"std\";s:134:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/slideshow/1.jpg\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:17:\"design_and_layout\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:40:\"disable_background_image_slider:not(off)\";s:8:\"operator\";s:3:\"and\";}i:32;a:10:{s:2:\"id\";s:22:\"upload_slider_images_2\";s:5:\"label\";s:38:\"Upload second background slider images\";s:4:\"desc\";s:111:\"Here you can upload your cover images, the best dimensions should be 1920x1080 or any with similar proportions.\";s:3:\"std\";s:134:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/slideshow/2.jpg\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:17:\"design_and_layout\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:40:\"disable_background_image_slider:not(off)\";s:8:\"operator\";s:3:\"and\";}i:33;a:10:{s:2:\"id\";s:22:\"upload_slider_images_3\";s:5:\"label\";s:37:\"Upload third background slider images\";s:4:\"desc\";s:111:\"Here you can upload your cover images, the best dimensions should be 1920x1080 or any with similar proportions.\";s:3:\"std\";s:134:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/slideshow/3.jpg\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:17:\"design_and_layout\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:40:\"disable_background_image_slider:not(off)\";s:8:\"operator\";s:3:\"and\";}i:34;a:10:{s:2:\"id\";s:22:\"upload_slider_images_4\";s:5:\"label\";s:38:\"Upload fourth background slider images\";s:4:\"desc\";s:111:\"Here you can upload your cover images, the best dimensions should be 1920x1080 or any with similar proportions.\";s:3:\"std\";s:134:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/slideshow/4.jpg\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:17:\"design_and_layout\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:40:\"disable_background_image_slider:not(off)\";s:8:\"operator\";s:3:\"and\";}i:35;a:11:{s:2:\"id\";s:27:\"background_slider_animation\";s:5:\"label\";s:42:\"Choose animation for the background slider\";s:4:\"desc\";s:111:\"Here you can select the desired animation between background slides, you can use the Random option and use all.\";s:3:\"std\";s:6:\"random\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:29:{i:0;a:2:{s:5:\"value\";s:6:\"random\";s:5:\"label\";s:6:\"Random\";}i:1;a:2:{s:5:\"value\";s:4:\"fade\";s:5:\"label\";s:4:\"Fade\";}i:2;a:2:{s:5:\"value\";s:5:\"fade2\";s:5:\"label\";s:6:\"Fade 2\";}i:3;a:2:{s:5:\"value\";s:9:\"slideLeft\";s:5:\"label\";s:10:\"Slide Left\";}i:4;a:2:{s:5:\"value\";s:10:\"slideLeft2\";s:5:\"label\";s:12:\"Slide Left 2\";}i:5;a:2:{s:5:\"value\";s:10:\"slideRight\";s:5:\"label\";s:11:\"Slide Right\";}i:6;a:2:{s:5:\"value\";s:11:\"slideRight2\";s:5:\"label\";s:13:\"Slide Right 2\";}i:7;a:2:{s:5:\"value\";s:7:\"slideUp\";s:5:\"label\";s:8:\"Slide Up\";}i:8;a:2:{s:5:\"value\";s:8:\"slideUp2\";s:5:\"label\";s:10:\"Slide Up 2\";}i:9;a:2:{s:5:\"value\";s:9:\"slideDown\";s:5:\"label\";s:10:\"Slide Down\";}i:10;a:2:{s:5:\"value\";s:10:\"slideDown2\";s:5:\"label\";s:12:\"Slide Down 2\";}i:11;a:2:{s:5:\"value\";s:6:\"zoomIn\";s:5:\"label\";s:7:\"Zoom In\";}i:12;a:2:{s:5:\"value\";s:7:\"zoomIn2\";s:5:\"label\";s:9:\"Zoom In 2\";}i:13;a:2:{s:5:\"value\";s:7:\"zoomOut\";s:5:\"label\";s:8:\"Zoom Out\";}i:14;a:2:{s:5:\"value\";s:8:\"zoomOut2\";s:5:\"label\";s:10:\"Zoom Out 2\";}i:15;a:2:{s:5:\"value\";s:9:\"swirlLeft\";s:5:\"label\";s:10:\"Swirl Left\";}i:16;a:2:{s:5:\"value\";s:10:\"swirlLeft2\";s:5:\"label\";s:12:\"Swirl Left 2\";}i:17;a:2:{s:5:\"value\";s:10:\"swirlRight\";s:5:\"label\";s:11:\"Swirl Right\";}i:18;a:2:{s:5:\"value\";s:11:\"swirlRight2\";s:5:\"label\";s:13:\"Swirl Right 2\";}i:19;a:2:{s:5:\"value\";s:7:\"swirlUp\";s:5:\"label\";s:8:\"Swirl Up\";}i:20;a:2:{s:5:\"value\";s:8:\"swirlUp2\";s:5:\"label\";s:10:\"Swirl Up 2\";}i:21;a:2:{s:5:\"value\";s:9:\"swirlDown\";s:5:\"label\";s:10:\"Swirl Down\";}i:22;a:2:{s:5:\"value\";s:10:\"swirlDown2\";s:5:\"label\";s:12:\"Swirl Down 2\";}i:23;a:2:{s:5:\"value\";s:4:\"burn\";s:5:\"label\";s:4:\"Burn\";}i:24;a:2:{s:5:\"value\";s:5:\"burn2\";s:5:\"label\";s:6:\"Burn 2\";}i:25;a:2:{s:5:\"value\";s:4:\"blur\";s:5:\"label\";s:4:\"Blur\";}i:26;a:2:{s:5:\"value\";s:5:\"blur2\";s:5:\"label\";s:6:\"Blur 2\";}i:27;a:2:{s:5:\"value\";s:5:\"flash\";s:5:\"label\";s:5:\"Flash\";}i:28;a:2:{s:5:\"value\";s:6:\"flash2\";s:5:\"label\";s:7:\"Flash 2\";}}s:7:\"section\";s:17:\"design_and_layout\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:40:\"disable_background_image_slider:not(off)\";s:8:\"operator\";s:3:\"and\";}i:36;a:11:{s:2:\"id\";s:22:\"select_pattern_overlay\";s:5:\"label\";s:22:\"Select pattern overlay\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:6:\"16.png\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:17:\"design_and_layout\";s:12:\"min_max_step\";s:0:\"\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:40:\"disable_background_image_slider:not(off)\";s:8:\"operator\";s:3:\"and\";s:7:\"choices\";a:17:{i:0;a:3:{s:5:\"value\";s:6:\"01.png\";s:5:\"label\";s:9:\"Pattern 1\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/01.png\";}i:1;a:3:{s:5:\"value\";s:6:\"02.png\";s:5:\"label\";s:9:\"Pattern 2\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/02.png\";}i:2;a:3:{s:5:\"value\";s:6:\"03.png\";s:5:\"label\";s:9:\"Pattern 3\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/03.png\";}i:3;a:3:{s:5:\"value\";s:6:\"04.png\";s:5:\"label\";s:9:\"Pattern 4\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/04.png\";}i:4;a:3:{s:5:\"value\";s:6:\"05.png\";s:5:\"label\";s:9:\"Pattern 5\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/05.png\";}i:5;a:3:{s:5:\"value\";s:6:\"06.png\";s:5:\"label\";s:9:\"Pattern 6\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/06.png\";}i:6;a:3:{s:5:\"value\";s:6:\"07.png\";s:5:\"label\";s:9:\"Pattern 7\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/07.png\";}i:7;a:3:{s:5:\"value\";s:6:\"08.png\";s:5:\"label\";s:9:\"Pattern 8\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/08.png\";}i:8;a:3:{s:5:\"value\";s:6:\"09.png\";s:5:\"label\";s:9:\"Pattern 9\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/09.png\";}i:9;a:3:{s:5:\"value\";s:6:\"10.png\";s:5:\"label\";s:10:\"Pattern 10\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/10.png\";}i:10;a:3:{s:5:\"value\";s:6:\"11.png\";s:5:\"label\";s:10:\"Pattern 11\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/11.png\";}i:11;a:3:{s:5:\"value\";s:6:\"12.png\";s:5:\"label\";s:10:\"Pattern 12\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/12.png\";}i:12;a:3:{s:5:\"value\";s:6:\"13.png\";s:5:\"label\";s:10:\"Pattern 13\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/13.png\";}i:13;a:3:{s:5:\"value\";s:6:\"14.png\";s:5:\"label\";s:10:\"Pattern 14\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/14.png\";}i:14;a:3:{s:5:\"value\";s:6:\"15.png\";s:5:\"label\";s:10:\"Pattern 15\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/15.png\";}i:15;a:3:{s:5:\"value\";s:6:\"16.png\";s:5:\"label\";s:10:\"Pattern 16\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/16.png\";}i:16;a:3:{s:5:\"value\";s:6:\"17.png\";s:5:\"label\";s:10:\"No pattern\";s:3:\"src\";s:141:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/images/patterns/17.png\";}}}i:37;a:10:{s:2:\"id\";s:23:\"pattern_overlay_opacity\";s:5:\"label\";s:31:\"Set the pattern overlay opacity\";s:4:\"desc\";s:75:\"Adjust the level of opacity / transparency for the overall pattern overlay.\";s:3:\"std\";s:3:\"0.5\";s:4:\"type\";s:14:\"numeric-slider\";s:7:\"section\";s:17:\"design_and_layout\";s:12:\"min_max_step\";s:7:\"0,1,0.1\";s:5:\"class\";s:0:\"\";s:9:\"condition\";s:40:\"disable_background_image_slider:not(off)\";s:8:\"operator\";s:3:\"and\";}i:38;a:7:{s:2:\"id\";s:21:\"choose_sitetitle_font\";s:5:\"label\";s:22:\"Choose Site Title font\";s:4:\"desc\";s:111:\"Here you can assign the font for your Site title heading, if you use are using Logo you can ignore this option.\";s:3:\"std\";s:4:\"Lato\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:17:\"design_and_layout\";s:7:\"choices\";a:530:{s:4:\"Abel\";a:2:{s:5:\"label\";s:4:\"Abel\";s:5:\"value\";s:4:\"Abel\";}s:13:\"Abril Fatface\";a:2:{s:5:\"label\";s:13:\"Abril Fatface\";s:5:\"value\";s:13:\"Abril Fatface\";}s:8:\"Aclonica\";a:2:{s:5:\"label\";s:8:\"Aclonica\";s:5:\"value\";s:8:\"Aclonica\";}s:4:\"Acme\";a:2:{s:5:\"label\";s:4:\"Acme\";s:5:\"value\";s:4:\"Acme\";}s:5:\"Actor\";a:2:{s:5:\"label\";s:5:\"Actor\";s:5:\"value\";s:5:\"Actor\";}s:7:\"Adamina\";a:2:{s:5:\"label\";s:7:\"Adamina\";s:5:\"value\";s:7:\"Adamina\";}s:10:\"Advent Pro\";a:2:{s:5:\"label\";s:10:\"Advent Pro\";s:5:\"value\";s:10:\"Advent Pro\";}s:15:\"Aguafina Script\";a:2:{s:5:\"label\";s:15:\"Aguafina Script\";s:5:\"value\";s:15:\"Aguafina Script\";}s:6:\"Aladin\";a:2:{s:5:\"label\";s:6:\"Aladin\";s:5:\"value\";s:6:\"Aladin\";}s:7:\"Aldrich\";a:2:{s:5:\"label\";s:7:\"Aldrich\";s:5:\"value\";s:7:\"Aldrich\";}s:8:\"Alegreya\";a:2:{s:5:\"label\";s:8:\"Alegreya\";s:5:\"value\";s:8:\"Alegreya\";}s:11:\"Alegreya SC\";a:2:{s:5:\"label\";s:11:\"Alegreya SC\";s:5:\"value\";s:11:\"Alegreya SC\";}s:10:\"Alex Brush\";a:2:{s:5:\"label\";s:10:\"Alex Brush\";s:5:\"value\";s:10:\"Alex Brush\";}s:13:\"Alfa Slab One\";a:2:{s:5:\"label\";s:13:\"Alfa Slab One\";s:5:\"value\";s:13:\"Alfa Slab One\";}s:5:\"Alice\";a:2:{s:5:\"label\";s:5:\"Alice\";s:5:\"value\";s:5:\"Alice\";}s:5:\"Alike\";a:2:{s:5:\"label\";s:5:\"Alike\";s:5:\"value\";s:5:\"Alike\";}s:13:\"Alike Angular\";a:2:{s:5:\"label\";s:13:\"Alike Angular\";s:5:\"value\";s:13:\"Alike Angular\";}s:5:\"Allan\";a:2:{s:5:\"label\";s:5:\"Allan\";s:5:\"value\";s:5:\"Allan\";}s:7:\"Allerta\";a:2:{s:5:\"label\";s:7:\"Allerta\";s:5:\"value\";s:7:\"Allerta\";}s:15:\"Allerta Stencil\";a:2:{s:5:\"label\";s:15:\"Allerta Stencil\";s:5:\"value\";s:15:\"Allerta Stencil\";}s:6:\"Allura\";a:2:{s:5:\"label\";s:6:\"Allura\";s:5:\"value\";s:6:\"Allura\";}s:8:\"Almendra\";a:2:{s:5:\"label\";s:8:\"Almendra\";s:5:\"value\";s:8:\"Almendra\";}s:11:\"Almendra SC\";a:2:{s:5:\"label\";s:11:\"Almendra SC\";s:5:\"value\";s:11:\"Almendra SC\";}s:8:\"Amarante\";a:2:{s:5:\"label\";s:8:\"Amarante\";s:5:\"value\";s:8:\"Amarante\";}s:8:\"Amaranth\";a:2:{s:5:\"label\";s:8:\"Amaranth\";s:5:\"value\";s:8:\"Amaranth\";}s:9:\"Amatic SC\";a:2:{s:5:\"label\";s:9:\"Amatic SC\";s:5:\"value\";s:9:\"Amatic SC\";}s:9:\"Amethysta\";a:2:{s:5:\"label\";s:9:\"Amethysta\";s:5:\"value\";s:9:\"Amethysta\";}s:6:\"Andada\";a:2:{s:5:\"label\";s:6:\"Andada\";s:5:\"value\";s:6:\"Andada\";}s:6:\"Andika\";a:2:{s:5:\"label\";s:6:\"Andika\";s:5:\"value\";s:6:\"Andika\";}s:6:\"Angkor\";a:2:{s:5:\"label\";s:6:\"Angkor\";s:5:\"value\";s:6:\"Angkor\";}s:24:\"Annie Use Your Telescope\";a:2:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:5:\"value\";s:24:\"Annie Use Your Telescope\";}s:13:\"Anonymous Pro\";a:2:{s:5:\"label\";s:13:\"Anonymous Pro\";s:5:\"value\";s:13:\"Anonymous Pro\";}s:5:\"Antic\";a:2:{s:5:\"label\";s:5:\"Antic\";s:5:\"value\";s:5:\"Antic\";}s:12:\"Antic Didone\";a:2:{s:5:\"label\";s:12:\"Antic Didone\";s:5:\"value\";s:12:\"Antic Didone\";}s:10:\"Antic Slab\";a:2:{s:5:\"label\";s:10:\"Antic Slab\";s:5:\"value\";s:10:\"Antic Slab\";}s:5:\"Anton\";a:2:{s:5:\"label\";s:5:\"Anton\";s:5:\"value\";s:5:\"Anton\";}s:6:\"Arapey\";a:2:{s:5:\"label\";s:6:\"Arapey\";s:5:\"value\";s:6:\"Arapey\";}s:7:\"Arbutus\";a:2:{s:5:\"label\";s:7:\"Arbutus\";s:5:\"value\";s:7:\"Arbutus\";}s:19:\"Architects Daughter\";a:2:{s:5:\"label\";s:19:\"Architects Daughter\";s:5:\"value\";s:19:\"Architects Daughter\";}s:5:\"Arimo\";a:2:{s:5:\"label\";s:5:\"Arimo\";s:5:\"value\";s:5:\"Arimo\";}s:8:\"Arizonia\";a:2:{s:5:\"label\";s:8:\"Arizonia\";s:5:\"value\";s:8:\"Arizonia\";}s:6:\"Armata\";a:2:{s:5:\"label\";s:6:\"Armata\";s:5:\"value\";s:6:\"Armata\";}s:8:\"Artifika\";a:2:{s:5:\"label\";s:8:\"Artifika\";s:5:\"value\";s:8:\"Artifika\";}s:4:\"Arvo\";a:2:{s:5:\"label\";s:4:\"Arvo\";s:5:\"value\";s:4:\"Arvo\";}s:4:\"Asap\";a:2:{s:5:\"label\";s:4:\"Asap\";s:5:\"value\";s:4:\"Asap\";}s:5:\"Asset\";a:2:{s:5:\"label\";s:5:\"Asset\";s:5:\"value\";s:5:\"Asset\";}s:7:\"Astloch\";a:2:{s:5:\"label\";s:7:\"Astloch\";s:5:\"value\";s:7:\"Astloch\";}s:4:\"Asul\";a:2:{s:5:\"label\";s:4:\"Asul\";s:5:\"value\";s:4:\"Asul\";}s:10:\"Atomic Age\";a:2:{s:5:\"label\";s:10:\"Atomic Age\";s:5:\"value\";s:10:\"Atomic Age\";}s:6:\"Aubrey\";a:2:{s:5:\"label\";s:6:\"Aubrey\";s:5:\"value\";s:6:\"Aubrey\";}s:9:\"Audiowide\";a:2:{s:5:\"label\";s:9:\"Audiowide\";s:5:\"value\";s:9:\"Audiowide\";}s:7:\"Average\";a:2:{s:5:\"label\";s:7:\"Average\";s:5:\"value\";s:7:\"Average\";}s:19:\"Averia Gruesa Libre\";a:2:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:5:\"value\";s:19:\"Averia Gruesa Libre\";}s:12:\"Averia Libre\";a:2:{s:5:\"label\";s:12:\"Averia Libre\";s:5:\"value\";s:12:\"Averia Libre\";}s:17:\"Averia Sans Libre\";a:2:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:5:\"value\";s:17:\"Averia Sans Libre\";}s:18:\"Averia Serif Libre\";a:2:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:5:\"value\";s:18:\"Averia Serif Libre\";}s:10:\"Bad Script\";a:2:{s:5:\"label\";s:10:\"Bad Script\";s:5:\"value\";s:10:\"Bad Script\";}s:9:\"Balthazar\";a:2:{s:5:\"label\";s:9:\"Balthazar\";s:5:\"value\";s:9:\"Balthazar\";}s:7:\"Bangers\";a:2:{s:5:\"label\";s:7:\"Bangers\";s:5:\"value\";s:7:\"Bangers\";}s:5:\"Basic\";a:2:{s:5:\"label\";s:5:\"Basic\";s:5:\"value\";s:5:\"Basic\";}s:10:\"Battambang\";a:2:{s:5:\"label\";s:10:\"Battambang\";s:5:\"value\";s:10:\"Battambang\";}s:7:\"Baumans\";a:2:{s:5:\"label\";s:7:\"Baumans\";s:5:\"value\";s:7:\"Baumans\";}s:5:\"Bayon\";a:2:{s:5:\"label\";s:5:\"Bayon\";s:5:\"value\";s:5:\"Bayon\";}s:8:\"Belgrano\";a:2:{s:5:\"label\";s:8:\"Belgrano\";s:5:\"value\";s:8:\"Belgrano\";}s:7:\"Belleza\";a:2:{s:5:\"label\";s:7:\"Belleza\";s:5:\"value\";s:7:\"Belleza\";}s:7:\"Bentham\";a:2:{s:5:\"label\";s:7:\"Bentham\";s:5:\"value\";s:7:\"Bentham\";}s:15:\"Berkshire Swash\";a:2:{s:5:\"label\";s:15:\"Berkshire Swash\";s:5:\"value\";s:15:\"Berkshire Swash\";}s:5:\"Bevan\";a:2:{s:5:\"label\";s:5:\"Bevan\";s:5:\"value\";s:5:\"Bevan\";}s:11:\"Bigshot One\";a:2:{s:5:\"label\";s:11:\"Bigshot One\";s:5:\"value\";s:11:\"Bigshot One\";}s:5:\"Bilbo\";a:2:{s:5:\"label\";s:5:\"Bilbo\";s:5:\"value\";s:5:\"Bilbo\";}s:16:\"Bilbo Swash Caps\";a:2:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:5:\"value\";s:16:\"Bilbo Swash Caps\";}s:6:\"Bitter\";a:2:{s:5:\"label\";s:6:\"Bitter\";s:5:\"value\";s:6:\"Bitter\";}s:13:\"Black Ops One\";a:2:{s:5:\"label\";s:13:\"Black Ops One\";s:5:\"value\";s:13:\"Black Ops One\";}s:5:\"Bokor\";a:2:{s:5:\"label\";s:5:\"Bokor\";s:5:\"value\";s:5:\"Bokor\";}s:6:\"Bonbon\";a:2:{s:5:\"label\";s:6:\"Bonbon\";s:5:\"value\";s:6:\"Bonbon\";}s:8:\"Boogaloo\";a:2:{s:5:\"label\";s:8:\"Boogaloo\";s:5:\"value\";s:8:\"Boogaloo\";}s:10:\"Bowlby One\";a:2:{s:5:\"label\";s:10:\"Bowlby One\";s:5:\"value\";s:10:\"Bowlby One\";}s:13:\"Bowlby One SC\";a:2:{s:5:\"label\";s:13:\"Bowlby One SC\";s:5:\"value\";s:13:\"Bowlby One SC\";}s:7:\"Brawler\";a:2:{s:5:\"label\";s:7:\"Brawler\";s:5:\"value\";s:7:\"Brawler\";}s:10:\"Bree Serif\";a:2:{s:5:\"label\";s:10:\"Bree Serif\";s:5:\"value\";s:10:\"Bree Serif\";}s:14:\"Bubblegum Sans\";a:2:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:5:\"value\";s:14:\"Bubblegum Sans\";}s:4:\"Buda\";a:2:{s:5:\"label\";s:4:\"Buda\";s:5:\"value\";s:4:\"Buda\";}s:7:\"Buenard\";a:2:{s:5:\"label\";s:7:\"Buenard\";s:5:\"value\";s:7:\"Buenard\";}s:10:\"Butcherman\";a:2:{s:5:\"label\";s:10:\"Butcherman\";s:5:\"value\";s:10:\"Butcherman\";}s:14:\"Butterfly Kids\";a:2:{s:5:\"label\";s:14:\"Butterfly Kids\";s:5:\"value\";s:14:\"Butterfly Kids\";}s:5:\"Cabin\";a:2:{s:5:\"label\";s:5:\"Cabin\";s:5:\"value\";s:5:\"Cabin\";}s:15:\"Cabin Condensed\";a:2:{s:5:\"label\";s:15:\"Cabin Condensed\";s:5:\"value\";s:15:\"Cabin Condensed\";}s:12:\"Cabin Sketch\";a:2:{s:5:\"label\";s:12:\"Cabin Sketch\";s:5:\"value\";s:12:\"Cabin Sketch\";}s:15:\"Caesar Dressing\";a:2:{s:5:\"label\";s:15:\"Caesar Dressing\";s:5:\"value\";s:15:\"Caesar Dressing\";}s:10:\"Cagliostro\";a:2:{s:5:\"label\";s:10:\"Cagliostro\";s:5:\"value\";s:10:\"Cagliostro\";}s:14:\"Calligraffitti\";a:2:{s:5:\"label\";s:14:\"Calligraffitti\";s:5:\"value\";s:14:\"Calligraffitti\";}s:5:\"Cambo\";a:2:{s:5:\"label\";s:5:\"Cambo\";s:5:\"value\";s:5:\"Cambo\";}s:6:\"Candal\";a:2:{s:5:\"label\";s:6:\"Candal\";s:5:\"value\";s:6:\"Candal\";}s:9:\"Cantarell\";a:2:{s:5:\"label\";s:9:\"Cantarell\";s:5:\"value\";s:9:\"Cantarell\";}s:11:\"Cantata One\";a:2:{s:5:\"label\";s:11:\"Cantata One\";s:5:\"value\";s:11:\"Cantata One\";}s:8:\"Capriola\";a:2:{s:5:\"label\";s:8:\"Capriola\";s:5:\"value\";s:8:\"Capriola\";}s:5:\"Cardo\";a:2:{s:5:\"label\";s:5:\"Cardo\";s:5:\"value\";s:5:\"Cardo\";}s:5:\"Carme\";a:2:{s:5:\"label\";s:5:\"Carme\";s:5:\"value\";s:5:\"Carme\";}s:10:\"Carter One\";a:2:{s:5:\"label\";s:10:\"Carter One\";s:5:\"value\";s:10:\"Carter One\";}s:6:\"Caudex\";a:2:{s:5:\"label\";s:6:\"Caudex\";s:5:\"value\";s:6:\"Caudex\";}s:18:\"Cedarville Cursive\";a:2:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:5:\"value\";s:18:\"Cedarville Cursive\";}s:11:\"Ceviche One\";a:2:{s:5:\"label\";s:11:\"Ceviche One\";s:5:\"value\";s:11:\"Ceviche One\";}s:10:\"Changa One\";a:2:{s:5:\"label\";s:10:\"Changa One\";s:5:\"value\";s:10:\"Changa One\";}s:6:\"Chango\";a:2:{s:5:\"label\";s:6:\"Chango\";s:5:\"value\";s:6:\"Chango\";}s:18:\"Chau Philomene One\";a:2:{s:5:\"label\";s:18:\"Chau Philomene One\";s:5:\"value\";s:18:\"Chau Philomene One\";}s:14:\"Chelsea Market\";a:2:{s:5:\"label\";s:14:\"Chelsea Market\";s:5:\"value\";s:14:\"Chelsea Market\";}s:6:\"Chenla\";a:2:{s:5:\"label\";s:6:\"Chenla\";s:5:\"value\";s:6:\"Chenla\";}s:17:\"Cherry Cream Soda\";a:2:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:5:\"value\";s:17:\"Cherry Cream Soda\";}s:5:\"Chewy\";a:2:{s:5:\"label\";s:5:\"Chewy\";s:5:\"value\";s:5:\"Chewy\";}s:6:\"Chicle\";a:2:{s:5:\"label\";s:6:\"Chicle\";s:5:\"value\";s:6:\"Chicle\";}s:5:\"Chivo\";a:2:{s:5:\"label\";s:5:\"Chivo\";s:5:\"value\";s:5:\"Chivo\";}s:4:\"Coda\";a:2:{s:5:\"label\";s:4:\"Coda\";s:5:\"value\";s:4:\"Coda\";}s:12:\"Coda Caption\";a:2:{s:5:\"label\";s:12:\"Coda Caption\";s:5:\"value\";s:12:\"Coda Caption\";}s:8:\"Codystar\";a:2:{s:5:\"label\";s:8:\"Codystar\";s:5:\"value\";s:8:\"Codystar\";}s:9:\"Comfortaa\";a:2:{s:5:\"label\";s:9:\"Comfortaa\";s:5:\"value\";s:9:\"Comfortaa\";}s:11:\"Coming Soon\";a:2:{s:5:\"label\";s:11:\"Coming Soon\";s:5:\"value\";s:11:\"Coming Soon\";}s:11:\"Concert One\";a:2:{s:5:\"label\";s:11:\"Concert One\";s:5:\"value\";s:11:\"Concert One\";}s:9:\"Condiment\";a:2:{s:5:\"label\";s:9:\"Condiment\";s:5:\"value\";s:9:\"Condiment\";}s:7:\"Content\";a:2:{s:5:\"label\";s:7:\"Content\";s:5:\"value\";s:7:\"Content\";}s:12:\"Contrail One\";a:2:{s:5:\"label\";s:12:\"Contrail One\";s:5:\"value\";s:12:\"Contrail One\";}s:11:\"Convergence\";a:2:{s:5:\"label\";s:11:\"Convergence\";s:5:\"value\";s:11:\"Convergence\";}s:6:\"Cookie\";a:2:{s:5:\"label\";s:6:\"Cookie\";s:5:\"value\";s:6:\"Cookie\";}s:5:\"Copse\";a:2:{s:5:\"label\";s:5:\"Copse\";s:5:\"value\";s:5:\"Copse\";}s:6:\"Corben\";a:2:{s:5:\"label\";s:6:\"Corben\";s:5:\"value\";s:6:\"Corben\";}s:9:\"Courgette\";a:2:{s:5:\"label\";s:9:\"Courgette\";s:5:\"value\";s:9:\"Courgette\";}s:7:\"Cousine\";a:2:{s:5:\"label\";s:7:\"Cousine\";s:5:\"value\";s:7:\"Cousine\";}s:8:\"Coustard\";a:2:{s:5:\"label\";s:8:\"Coustard\";s:5:\"value\";s:8:\"Coustard\";}s:21:\"Covered By Your Grace\";a:2:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:5:\"value\";s:21:\"Covered By Your Grace\";}s:12:\"Crafty Girls\";a:2:{s:5:\"label\";s:12:\"Crafty Girls\";s:5:\"value\";s:12:\"Crafty Girls\";}s:9:\"Creepster\";a:2:{s:5:\"label\";s:9:\"Creepster\";s:5:\"value\";s:9:\"Creepster\";}s:11:\"Crete Round\";a:2:{s:5:\"label\";s:11:\"Crete Round\";s:5:\"value\";s:11:\"Crete Round\";}s:12:\"Crimson Text\";a:2:{s:5:\"label\";s:12:\"Crimson Text\";s:5:\"value\";s:12:\"Crimson Text\";}s:7:\"Crushed\";a:2:{s:5:\"label\";s:7:\"Crushed\";s:5:\"value\";s:7:\"Crushed\";}s:6:\"Cuprum\";a:2:{s:5:\"label\";s:6:\"Cuprum\";s:5:\"value\";s:6:\"Cuprum\";}s:6:\"Cutive\";a:2:{s:5:\"label\";s:6:\"Cutive\";s:5:\"value\";s:6:\"Cutive\";}s:6:\"Damion\";a:2:{s:5:\"label\";s:6:\"Damion\";s:5:\"value\";s:6:\"Damion\";}s:14:\"Dancing Script\";a:2:{s:5:\"label\";s:14:\"Dancing Script\";s:5:\"value\";s:14:\"Dancing Script\";}s:7:\"Dangrek\";a:2:{s:5:\"label\";s:7:\"Dangrek\";s:5:\"value\";s:7:\"Dangrek\";}s:20:\"Dawning of a New Day\";a:2:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:5:\"value\";s:20:\"Dawning of a New Day\";}s:8:\"Days One\";a:2:{s:5:\"label\";s:8:\"Days One\";s:5:\"value\";s:8:\"Days One\";}s:6:\"Delius\";a:2:{s:5:\"label\";s:6:\"Delius\";s:5:\"value\";s:6:\"Delius\";}s:17:\"Delius Swash Caps\";a:2:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:5:\"value\";s:17:\"Delius Swash Caps\";}s:14:\"Delius Unicase\";a:2:{s:5:\"label\";s:14:\"Delius Unicase\";s:5:\"value\";s:14:\"Delius Unicase\";}s:13:\"Della Respira\";a:2:{s:5:\"label\";s:13:\"Della Respira\";s:5:\"value\";s:13:\"Della Respira\";}s:10:\"Devonshire\";a:2:{s:5:\"label\";s:10:\"Devonshire\";s:5:\"value\";s:10:\"Devonshire\";}s:13:\"Didact Gothic\";a:2:{s:5:\"label\";s:13:\"Didact Gothic\";s:5:\"value\";s:13:\"Didact Gothic\";}s:9:\"Diplomata\";a:2:{s:5:\"label\";s:9:\"Diplomata\";s:5:\"value\";s:9:\"Diplomata\";}s:12:\"Diplomata SC\";a:2:{s:5:\"label\";s:12:\"Diplomata SC\";s:5:\"value\";s:12:\"Diplomata SC\";}s:10:\"Doppio One\";a:2:{s:5:\"label\";s:10:\"Doppio One\";s:5:\"value\";s:10:\"Doppio One\";}s:5:\"Dorsa\";a:2:{s:5:\"label\";s:5:\"Dorsa\";s:5:\"value\";s:5:\"Dorsa\";}s:5:\"Dosis\";a:2:{s:5:\"label\";s:5:\"Dosis\";s:5:\"value\";s:5:\"Dosis\";}s:11:\"Dr Sugiyama\";a:2:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:5:\"value\";s:11:\"Dr Sugiyama\";}s:10:\"Droid Sans\";a:2:{s:5:\"label\";s:10:\"Droid Sans\";s:5:\"value\";s:10:\"Droid Sans\";}s:15:\"Droid Sans Mono\";a:2:{s:5:\"label\";s:15:\"Droid Sans Mono\";s:5:\"value\";s:15:\"Droid Sans Mono\";}s:11:\"Droid Serif\";a:2:{s:5:\"label\";s:11:\"Droid Serif\";s:5:\"value\";s:11:\"Droid Serif\";}s:9:\"Duru Sans\";a:2:{s:5:\"label\";s:9:\"Duru Sans\";s:5:\"value\";s:9:\"Duru Sans\";}s:9:\"Dynalight\";a:2:{s:5:\"label\";s:9:\"Dynalight\";s:5:\"value\";s:9:\"Dynalight\";}s:11:\"EB Garamond\";a:2:{s:5:\"label\";s:11:\"EB Garamond\";s:5:\"value\";s:11:\"EB Garamond\";}s:10:\"Eagle Lake\";a:2:{s:5:\"label\";s:10:\"Eagle Lake\";s:5:\"value\";s:10:\"Eagle Lake\";}s:5:\"Eater\";a:2:{s:5:\"label\";s:5:\"Eater\";s:5:\"value\";s:5:\"Eater\";}s:9:\"Economica\";a:2:{s:5:\"label\";s:9:\"Economica\";s:5:\"value\";s:9:\"Economica\";}s:11:\"Electrolize\";a:2:{s:5:\"label\";s:11:\"Electrolize\";s:5:\"value\";s:11:\"Electrolize\";}s:11:\"Emblema One\";a:2:{s:5:\"label\";s:11:\"Emblema One\";s:5:\"value\";s:11:\"Emblema One\";}s:12:\"Emilys Candy\";a:2:{s:5:\"label\";s:12:\"Emilys Candy\";s:5:\"value\";s:12:\"Emilys Candy\";}s:10:\"Engagement\";a:2:{s:5:\"label\";s:10:\"Engagement\";s:5:\"value\";s:10:\"Engagement\";}s:9:\"Enriqueta\";a:2:{s:5:\"label\";s:9:\"Enriqueta\";s:5:\"value\";s:9:\"Enriqueta\";}s:9:\"Erica One\";a:2:{s:5:\"label\";s:9:\"Erica One\";s:5:\"value\";s:9:\"Erica One\";}s:7:\"Esteban\";a:2:{s:5:\"label\";s:7:\"Esteban\";s:5:\"value\";s:7:\"Esteban\";}s:15:\"Euphoria Script\";a:2:{s:5:\"label\";s:15:\"Euphoria Script\";s:5:\"value\";s:15:\"Euphoria Script\";}s:5:\"Ewert\";a:2:{s:5:\"label\";s:5:\"Ewert\";s:5:\"value\";s:5:\"Ewert\";}s:3:\"Exo\";a:2:{s:5:\"label\";s:3:\"Exo\";s:5:\"value\";s:3:\"Exo\";}s:13:\"Expletus Sans\";a:2:{s:5:\"label\";s:13:\"Expletus Sans\";s:5:\"value\";s:13:\"Expletus Sans\";}s:12:\"Fanwood Text\";a:2:{s:5:\"label\";s:12:\"Fanwood Text\";s:5:\"value\";s:12:\"Fanwood Text\";}s:9:\"Fascinate\";a:2:{s:5:\"label\";s:9:\"Fascinate\";s:5:\"value\";s:9:\"Fascinate\";}s:16:\"Fascinate Inline\";a:2:{s:5:\"label\";s:16:\"Fascinate Inline\";s:5:\"value\";s:16:\"Fascinate Inline\";}s:8:\"Federant\";a:2:{s:5:\"label\";s:8:\"Federant\";s:5:\"value\";s:8:\"Federant\";}s:6:\"Federo\";a:2:{s:5:\"label\";s:6:\"Federo\";s:5:\"value\";s:6:\"Federo\";}s:6:\"Felipa\";a:2:{s:5:\"label\";s:6:\"Felipa\";s:5:\"value\";s:6:\"Felipa\";}s:9:\"Fjord One\";a:2:{s:5:\"label\";s:9:\"Fjord One\";s:5:\"value\";s:9:\"Fjord One\";}s:8:\"Flamenco\";a:2:{s:5:\"label\";s:8:\"Flamenco\";s:5:\"value\";s:8:\"Flamenco\";}s:7:\"Flavors\";a:2:{s:5:\"label\";s:7:\"Flavors\";s:5:\"value\";s:7:\"Flavors\";}s:10:\"Fondamento\";a:2:{s:5:\"label\";s:10:\"Fondamento\";s:5:\"value\";s:10:\"Fondamento\";}s:16:\"Fontdiner Swanky\";a:2:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:5:\"value\";s:16:\"Fontdiner Swanky\";}s:5:\"Forum\";a:2:{s:5:\"label\";s:5:\"Forum\";s:5:\"value\";s:5:\"Forum\";}s:12:\"Francois One\";a:2:{s:5:\"label\";s:12:\"Francois One\";s:5:\"value\";s:12:\"Francois One\";}s:20:\"Fredericka the Great\";a:2:{s:5:\"label\";s:20:\"Fredericka the Great\";s:5:\"value\";s:20:\"Fredericka the Great\";}s:11:\"Fredoka One\";a:2:{s:5:\"label\";s:11:\"Fredoka One\";s:5:\"value\";s:11:\"Fredoka One\";}s:8:\"Freehand\";a:2:{s:5:\"label\";s:8:\"Freehand\";s:5:\"value\";s:8:\"Freehand\";}s:6:\"Fresca\";a:2:{s:5:\"label\";s:6:\"Fresca\";s:5:\"value\";s:6:\"Fresca\";}s:7:\"Frijole\";a:2:{s:5:\"label\";s:7:\"Frijole\";s:5:\"value\";s:7:\"Frijole\";}s:9:\"Fugaz One\";a:2:{s:5:\"label\";s:9:\"Fugaz One\";s:5:\"value\";s:9:\"Fugaz One\";}s:9:\"GFS Didot\";a:2:{s:5:\"label\";s:9:\"GFS Didot\";s:5:\"value\";s:9:\"GFS Didot\";}s:15:\"GFS Neohellenic\";a:2:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:5:\"value\";s:15:\"GFS Neohellenic\";}s:8:\"Galdeano\";a:2:{s:5:\"label\";s:8:\"Galdeano\";s:5:\"value\";s:8:\"Galdeano\";}s:13:\"Gentium Basic\";a:2:{s:5:\"label\";s:13:\"Gentium Basic\";s:5:\"value\";s:13:\"Gentium Basic\";}s:18:\"Gentium Book Basic\";a:2:{s:5:\"label\";s:18:\"Gentium Book Basic\";s:5:\"value\";s:18:\"Gentium Book Basic\";}s:3:\"Geo\";a:2:{s:5:\"label\";s:3:\"Geo\";s:5:\"value\";s:3:\"Geo\";}s:7:\"Geostar\";a:2:{s:5:\"label\";s:7:\"Geostar\";s:5:\"value\";s:7:\"Geostar\";}s:12:\"Geostar Fill\";a:2:{s:5:\"label\";s:12:\"Geostar Fill\";s:5:\"value\";s:12:\"Geostar Fill\";}s:12:\"Germania One\";a:2:{s:5:\"label\";s:12:\"Germania One\";s:5:\"value\";s:12:\"Germania One\";}s:14:\"Give You Glory\";a:2:{s:5:\"label\";s:14:\"Give You Glory\";s:5:\"value\";s:14:\"Give You Glory\";}s:13:\"Glass Antiqua\";a:2:{s:5:\"label\";s:13:\"Glass Antiqua\";s:5:\"value\";s:13:\"Glass Antiqua\";}s:6:\"Glegoo\";a:2:{s:5:\"label\";s:6:\"Glegoo\";s:5:\"value\";s:6:\"Glegoo\";}s:17:\"Gloria Hallelujah\";a:2:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:5:\"value\";s:17:\"Gloria Hallelujah\";}s:10:\"Goblin One\";a:2:{s:5:\"label\";s:10:\"Goblin One\";s:5:\"value\";s:10:\"Goblin One\";}s:10:\"Gochi Hand\";a:2:{s:5:\"label\";s:10:\"Gochi Hand\";s:5:\"value\";s:10:\"Gochi Hand\";}s:8:\"Gorditas\";a:2:{s:5:\"label\";s:8:\"Gorditas\";s:5:\"value\";s:8:\"Gorditas\";}s:21:\"Goudy Bookletter 1911\";a:2:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:5:\"value\";s:21:\"Goudy Bookletter 1911\";}s:8:\"Graduate\";a:2:{s:5:\"label\";s:8:\"Graduate\";s:5:\"value\";s:8:\"Graduate\";}s:12:\"Gravitas One\";a:2:{s:5:\"label\";s:12:\"Gravitas One\";s:5:\"value\";s:12:\"Gravitas One\";}s:11:\"Great Vibes\";a:2:{s:5:\"label\";s:11:\"Great Vibes\";s:5:\"value\";s:11:\"Great Vibes\";}s:6:\"Gruppo\";a:2:{s:5:\"label\";s:6:\"Gruppo\";s:5:\"value\";s:6:\"Gruppo\";}s:5:\"Gudea\";a:2:{s:5:\"label\";s:5:\"Gudea\";s:5:\"value\";s:5:\"Gudea\";}s:6:\"Habibi\";a:2:{s:5:\"label\";s:6:\"Habibi\";s:5:\"value\";s:6:\"Habibi\";}s:15:\"Hammersmith One\";a:2:{s:5:\"label\";s:15:\"Hammersmith One\";s:5:\"value\";s:15:\"Hammersmith One\";}s:7:\"Handlee\";a:2:{s:5:\"label\";s:7:\"Handlee\";s:5:\"value\";s:7:\"Handlee\";}s:7:\"Hanuman\";a:2:{s:5:\"label\";s:7:\"Hanuman\";s:5:\"value\";s:7:\"Hanuman\";}s:12:\"Happy Monkey\";a:2:{s:5:\"label\";s:12:\"Happy Monkey\";s:5:\"value\";s:12:\"Happy Monkey\";}s:11:\"Henny Penny\";a:2:{s:5:\"label\";s:11:\"Henny Penny\";s:5:\"value\";s:11:\"Henny Penny\";}s:20:\"Herr Von Muellerhoff\";a:2:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:5:\"value\";s:20:\"Herr Von Muellerhoff\";}s:15:\"Holtwood One SC\";a:2:{s:5:\"label\";s:15:\"Holtwood One SC\";s:5:\"value\";s:15:\"Holtwood One SC\";}s:14:\"Homemade Apple\";a:2:{s:5:\"label\";s:14:\"Homemade Apple\";s:5:\"value\";s:14:\"Homemade Apple\";}s:8:\"Homenaje\";a:2:{s:5:\"label\";s:8:\"Homenaje\";s:5:\"value\";s:8:\"Homenaje\";}s:15:\"IM Fell DW Pica\";a:2:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:5:\"value\";s:15:\"IM Fell DW Pica\";}s:18:\"IM Fell DW Pica SC\";a:2:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:5:\"value\";s:18:\"IM Fell DW Pica SC\";}s:19:\"IM Fell Double Pica\";a:2:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:5:\"value\";s:19:\"IM Fell Double Pica\";}s:22:\"IM Fell Double Pica SC\";a:2:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:5:\"value\";s:22:\"IM Fell Double Pica SC\";}s:15:\"IM Fell English\";a:2:{s:5:\"label\";s:15:\"IM Fell English\";s:5:\"value\";s:15:\"IM Fell English\";}s:18:\"IM Fell English SC\";a:2:{s:5:\"label\";s:18:\"IM Fell English SC\";s:5:\"value\";s:18:\"IM Fell English SC\";}s:20:\"IM Fell French Canon\";a:2:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:5:\"value\";s:20:\"IM Fell French Canon\";}s:23:\"IM Fell French Canon SC\";a:2:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:5:\"value\";s:23:\"IM Fell French Canon SC\";}s:20:\"IM Fell Great Primer\";a:2:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:5:\"value\";s:20:\"IM Fell Great Primer\";}s:23:\"IM Fell Great Primer SC\";a:2:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:5:\"value\";s:23:\"IM Fell Great Primer SC\";}s:7:\"Iceberg\";a:2:{s:5:\"label\";s:7:\"Iceberg\";s:5:\"value\";s:7:\"Iceberg\";}s:7:\"Iceland\";a:2:{s:5:\"label\";s:7:\"Iceland\";s:5:\"value\";s:7:\"Iceland\";}s:7:\"Imprima\";a:2:{s:5:\"label\";s:7:\"Imprima\";s:5:\"value\";s:7:\"Imprima\";}s:11:\"Inconsolata\";a:2:{s:5:\"label\";s:11:\"Inconsolata\";s:5:\"value\";s:11:\"Inconsolata\";}s:5:\"Inder\";a:2:{s:5:\"label\";s:5:\"Inder\";s:5:\"value\";s:5:\"Inder\";}s:12:\"Indie Flower\";a:2:{s:5:\"label\";s:12:\"Indie Flower\";s:5:\"value\";s:12:\"Indie Flower\";}s:5:\"Inika\";a:2:{s:5:\"label\";s:5:\"Inika\";s:5:\"value\";s:5:\"Inika\";}s:12:\"Irish Grover\";a:2:{s:5:\"label\";s:12:\"Irish Grover\";s:5:\"value\";s:12:\"Irish Grover\";}s:9:\"Istok Web\";a:2:{s:5:\"label\";s:9:\"Istok Web\";s:5:\"value\";s:9:\"Istok Web\";}s:8:\"Italiana\";a:2:{s:5:\"label\";s:8:\"Italiana\";s:5:\"value\";s:8:\"Italiana\";}s:9:\"Italianno\";a:2:{s:5:\"label\";s:9:\"Italianno\";s:5:\"value\";s:9:\"Italianno\";}s:14:\"Jim Nightshade\";a:2:{s:5:\"label\";s:14:\"Jim Nightshade\";s:5:\"value\";s:14:\"Jim Nightshade\";}s:10:\"Jockey One\";a:2:{s:5:\"label\";s:10:\"Jockey One\";s:5:\"value\";s:10:\"Jockey One\";}s:12:\"Jolly Lodger\";a:2:{s:5:\"label\";s:12:\"Jolly Lodger\";s:5:\"value\";s:12:\"Jolly Lodger\";}s:12:\"Josefin Sans\";a:2:{s:5:\"label\";s:12:\"Josefin Sans\";s:5:\"value\";s:12:\"Josefin Sans\";}s:12:\"Josefin Slab\";a:2:{s:5:\"label\";s:12:\"Josefin Slab\";s:5:\"value\";s:12:\"Josefin Slab\";}s:6:\"Judson\";a:2:{s:5:\"label\";s:6:\"Judson\";s:5:\"value\";s:6:\"Judson\";}s:5:\"Julee\";a:2:{s:5:\"label\";s:5:\"Julee\";s:5:\"value\";s:5:\"Julee\";}s:5:\"Junge\";a:2:{s:5:\"label\";s:5:\"Junge\";s:5:\"value\";s:5:\"Junge\";}s:4:\"Jura\";a:2:{s:5:\"label\";s:4:\"Jura\";s:5:\"value\";s:4:\"Jura\";}s:17:\"Just Another Hand\";a:2:{s:5:\"label\";s:17:\"Just Another Hand\";s:5:\"value\";s:17:\"Just Another Hand\";}s:23:\"Just Me Again Down Here\";a:2:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:5:\"value\";s:23:\"Just Me Again Down Here\";}s:7:\"Kameron\";a:2:{s:5:\"label\";s:7:\"Kameron\";s:5:\"value\";s:7:\"Kameron\";}s:5:\"Karla\";a:2:{s:5:\"label\";s:5:\"Karla\";s:5:\"value\";s:5:\"Karla\";}s:14:\"Kaushan Script\";a:2:{s:5:\"label\";s:14:\"Kaushan Script\";s:5:\"value\";s:14:\"Kaushan Script\";}s:10:\"Kelly Slab\";a:2:{s:5:\"label\";s:10:\"Kelly Slab\";s:5:\"value\";s:10:\"Kelly Slab\";}s:5:\"Kenia\";a:2:{s:5:\"label\";s:5:\"Kenia\";s:5:\"value\";s:5:\"Kenia\";}s:5:\"Khmer\";a:2:{s:5:\"label\";s:5:\"Khmer\";s:5:\"value\";s:5:\"Khmer\";}s:7:\"Knewave\";a:2:{s:5:\"label\";s:7:\"Knewave\";s:5:\"value\";s:7:\"Knewave\";}s:9:\"Kotta One\";a:2:{s:5:\"label\";s:9:\"Kotta One\";s:5:\"value\";s:9:\"Kotta One\";}s:6:\"Koulen\";a:2:{s:5:\"label\";s:6:\"Koulen\";s:5:\"value\";s:6:\"Koulen\";}s:6:\"Kranky\";a:2:{s:5:\"label\";s:6:\"Kranky\";s:5:\"value\";s:6:\"Kranky\";}s:5:\"Kreon\";a:2:{s:5:\"label\";s:5:\"Kreon\";s:5:\"value\";s:5:\"Kreon\";}s:6:\"Kristi\";a:2:{s:5:\"label\";s:6:\"Kristi\";s:5:\"value\";s:6:\"Kristi\";}s:9:\"Krona One\";a:2:{s:5:\"label\";s:9:\"Krona One\";s:5:\"value\";s:9:\"Krona One\";}s:15:\"La Belle Aurore\";a:2:{s:5:\"label\";s:15:\"La Belle Aurore\";s:5:\"value\";s:15:\"La Belle Aurore\";}s:8:\"Lancelot\";a:2:{s:5:\"label\";s:8:\"Lancelot\";s:5:\"value\";s:8:\"Lancelot\";}s:4:\"Lato\";a:2:{s:5:\"label\";s:4:\"Lato\";s:5:\"value\";s:4:\"Lato\";}s:13:\"League Script\";a:2:{s:5:\"label\";s:13:\"League Script\";s:5:\"value\";s:13:\"League Script\";}s:12:\"Leckerli One\";a:2:{s:5:\"label\";s:12:\"Leckerli One\";s:5:\"value\";s:12:\"Leckerli One\";}s:6:\"Ledger\";a:2:{s:5:\"label\";s:6:\"Ledger\";s:5:\"value\";s:6:\"Ledger\";}s:6:\"Lekton\";a:2:{s:5:\"label\";s:6:\"Lekton\";s:5:\"value\";s:6:\"Lekton\";}s:5:\"Lemon\";a:2:{s:5:\"label\";s:5:\"Lemon\";s:5:\"value\";s:5:\"Lemon\";}s:10:\"Lilita One\";a:2:{s:5:\"label\";s:10:\"Lilita One\";s:5:\"value\";s:10:\"Lilita One\";}s:9:\"Limelight\";a:2:{s:5:\"label\";s:9:\"Limelight\";s:5:\"value\";s:9:\"Limelight\";}s:11:\"Linden Hill\";a:2:{s:5:\"label\";s:11:\"Linden Hill\";s:5:\"value\";s:11:\"Linden Hill\";}s:7:\"Lobster\";a:2:{s:5:\"label\";s:7:\"Lobster\";s:5:\"value\";s:7:\"Lobster\";}s:11:\"Lobster Two\";a:2:{s:5:\"label\";s:11:\"Lobster Two\";s:5:\"value\";s:11:\"Lobster Two\";}s:16:\"Londrina Outline\";a:2:{s:5:\"label\";s:16:\"Londrina Outline\";s:5:\"value\";s:16:\"Londrina Outline\";}s:15:\"Londrina Shadow\";a:2:{s:5:\"label\";s:15:\"Londrina Shadow\";s:5:\"value\";s:15:\"Londrina Shadow\";}s:15:\"Londrina Sketch\";a:2:{s:5:\"label\";s:15:\"Londrina Sketch\";s:5:\"value\";s:15:\"Londrina Sketch\";}s:14:\"Londrina Solid\";a:2:{s:5:\"label\";s:14:\"Londrina Solid\";s:5:\"value\";s:14:\"Londrina Solid\";}s:4:\"Lora\";a:2:{s:5:\"label\";s:4:\"Lora\";s:5:\"value\";s:4:\"Lora\";}s:21:\"Love Ya Like A Sister\";a:2:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:5:\"value\";s:21:\"Love Ya Like A Sister\";}s:17:\"Loved by the King\";a:2:{s:5:\"label\";s:17:\"Loved by the King\";s:5:\"value\";s:17:\"Loved by the King\";}s:14:\"Lovers Quarrel\";a:2:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:5:\"value\";s:14:\"Lovers Quarrel\";}s:12:\"Luckiest Guy\";a:2:{s:5:\"label\";s:12:\"Luckiest Guy\";s:5:\"value\";s:12:\"Luckiest Guy\";}s:8:\"Lusitana\";a:2:{s:5:\"label\";s:8:\"Lusitana\";s:5:\"value\";s:8:\"Lusitana\";}s:7:\"Lustria\";a:2:{s:5:\"label\";s:7:\"Lustria\";s:5:\"value\";s:7:\"Lustria\";}s:7:\"Macondo\";a:2:{s:5:\"label\";s:7:\"Macondo\";s:5:\"value\";s:7:\"Macondo\";}s:18:\"Macondo Swash Caps\";a:2:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:5:\"value\";s:18:\"Macondo Swash Caps\";}s:5:\"Magra\";a:2:{s:5:\"label\";s:5:\"Magra\";s:5:\"value\";s:5:\"Magra\";}s:13:\"Maiden Orange\";a:2:{s:5:\"label\";s:13:\"Maiden Orange\";s:5:\"value\";s:13:\"Maiden Orange\";}s:4:\"Mako\";a:2:{s:5:\"label\";s:4:\"Mako\";s:5:\"value\";s:4:\"Mako\";}s:12:\"Marck Script\";a:2:{s:5:\"label\";s:12:\"Marck Script\";s:5:\"value\";s:12:\"Marck Script\";}s:9:\"Marko One\";a:2:{s:5:\"label\";s:9:\"Marko One\";s:5:\"value\";s:9:\"Marko One\";}s:8:\"Marmelad\";a:2:{s:5:\"label\";s:8:\"Marmelad\";s:5:\"value\";s:8:\"Marmelad\";}s:6:\"Marvel\";a:2:{s:5:\"label\";s:6:\"Marvel\";s:5:\"value\";s:6:\"Marvel\";}s:4:\"Mate\";a:2:{s:5:\"label\";s:4:\"Mate\";s:5:\"value\";s:4:\"Mate\";}s:7:\"Mate SC\";a:2:{s:5:\"label\";s:7:\"Mate SC\";s:5:\"value\";s:7:\"Mate SC\";}s:9:\"Maven Pro\";a:2:{s:5:\"label\";s:9:\"Maven Pro\";s:5:\"value\";s:9:\"Maven Pro\";}s:6:\"Meddon\";a:2:{s:5:\"label\";s:6:\"Meddon\";s:5:\"value\";s:6:\"Meddon\";}s:13:\"MedievalSharp\";a:2:{s:5:\"label\";s:13:\"MedievalSharp\";s:5:\"value\";s:13:\"MedievalSharp\";}s:10:\"Medula One\";a:2:{s:5:\"label\";s:10:\"Medula One\";s:5:\"value\";s:10:\"Medula One\";}s:6:\"Megrim\";a:2:{s:5:\"label\";s:6:\"Megrim\";s:5:\"value\";s:6:\"Megrim\";}s:12:\"Merienda One\";a:2:{s:5:\"label\";s:12:\"Merienda One\";s:5:\"value\";s:12:\"Merienda One\";}s:12:\"Merriweather\";a:2:{s:5:\"label\";s:12:\"Merriweather\";s:5:\"value\";s:12:\"Merriweather\";}s:5:\"Metal\";a:2:{s:5:\"label\";s:5:\"Metal\";s:5:\"value\";s:5:\"Metal\";}s:11:\"Metal Mania\";a:2:{s:5:\"label\";s:11:\"Metal Mania\";s:5:\"value\";s:11:\"Metal Mania\";}s:12:\"Metamorphous\";a:2:{s:5:\"label\";s:12:\"Metamorphous\";s:5:\"value\";s:12:\"Metamorphous\";}s:11:\"Metrophobic\";a:2:{s:5:\"label\";s:11:\"Metrophobic\";s:5:\"value\";s:11:\"Metrophobic\";}s:8:\"Michroma\";a:2:{s:5:\"label\";s:8:\"Michroma\";s:5:\"value\";s:8:\"Michroma\";}s:9:\"Miltonian\";a:2:{s:5:\"label\";s:9:\"Miltonian\";s:5:\"value\";s:9:\"Miltonian\";}s:16:\"Miltonian Tattoo\";a:2:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:5:\"value\";s:16:\"Miltonian Tattoo\";}s:7:\"Miniver\";a:2:{s:5:\"label\";s:7:\"Miniver\";s:5:\"value\";s:7:\"Miniver\";}s:14:\"Miss Fajardose\";a:2:{s:5:\"label\";s:14:\"Miss Fajardose\";s:5:\"value\";s:14:\"Miss Fajardose\";}s:14:\"Modern Antiqua\";a:2:{s:5:\"label\";s:14:\"Modern Antiqua\";s:5:\"value\";s:14:\"Modern Antiqua\";}s:7:\"Molengo\";a:2:{s:5:\"label\";s:7:\"Molengo\";s:5:\"value\";s:7:\"Molengo\";}s:8:\"Monofett\";a:2:{s:5:\"label\";s:8:\"Monofett\";s:5:\"value\";s:8:\"Monofett\";}s:7:\"Monoton\";a:2:{s:5:\"label\";s:7:\"Monoton\";s:5:\"value\";s:7:\"Monoton\";}s:20:\"Monsieur La Doulaise\";a:2:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:5:\"value\";s:20:\"Monsieur La Doulaise\";}s:7:\"Montaga\";a:2:{s:5:\"label\";s:7:\"Montaga\";s:5:\"value\";s:7:\"Montaga\";}s:6:\"Montez\";a:2:{s:5:\"label\";s:6:\"Montez\";s:5:\"value\";s:6:\"Montez\";}s:10:\"Montserrat\";a:2:{s:5:\"label\";s:10:\"Montserrat\";s:5:\"value\";s:10:\"Montserrat\";}s:4:\"Moul\";a:2:{s:5:\"label\";s:4:\"Moul\";s:5:\"value\";s:4:\"Moul\";}s:8:\"Moulpali\";a:2:{s:5:\"label\";s:8:\"Moulpali\";s:5:\"value\";s:8:\"Moulpali\";}s:22:\"Mountains of Christmas\";a:2:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:5:\"value\";s:22:\"Mountains of Christmas\";}s:10:\"Mr Bedfort\";a:2:{s:5:\"label\";s:10:\"Mr Bedfort\";s:5:\"value\";s:10:\"Mr Bedfort\";}s:8:\"Mr Dafoe\";a:2:{s:5:\"label\";s:8:\"Mr Dafoe\";s:5:\"value\";s:8:\"Mr Dafoe\";}s:14:\"Mr De Haviland\";a:2:{s:5:\"label\";s:14:\"Mr De Haviland\";s:5:\"value\";s:14:\"Mr De Haviland\";}s:19:\"Mrs Saint Delafield\";a:2:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:5:\"value\";s:19:\"Mrs Saint Delafield\";}s:13:\"Mrs Sheppards\";a:2:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:5:\"value\";s:13:\"Mrs Sheppards\";}s:4:\"Muli\";a:2:{s:5:\"label\";s:4:\"Muli\";s:5:\"value\";s:4:\"Muli\";}s:13:\"Mystery Quest\";a:2:{s:5:\"label\";s:13:\"Mystery Quest\";s:5:\"value\";s:13:\"Mystery Quest\";}s:6:\"Neucha\";a:2:{s:5:\"label\";s:6:\"Neucha\";s:5:\"value\";s:6:\"Neucha\";}s:6:\"Neuton\";a:2:{s:5:\"label\";s:6:\"Neuton\";s:5:\"value\";s:6:\"Neuton\";}s:10:\"News Cycle\";a:2:{s:5:\"label\";s:10:\"News Cycle\";s:5:\"value\";s:10:\"News Cycle\";}s:7:\"Niconne\";a:2:{s:5:\"label\";s:7:\"Niconne\";s:5:\"value\";s:7:\"Niconne\";}s:9:\"Nixie One\";a:2:{s:5:\"label\";s:9:\"Nixie One\";s:5:\"value\";s:9:\"Nixie One\";}s:6:\"Nobile\";a:2:{s:5:\"label\";s:6:\"Nobile\";s:5:\"value\";s:6:\"Nobile\";}s:6:\"Nokora\";a:2:{s:5:\"label\";s:6:\"Nokora\";s:5:\"value\";s:6:\"Nokora\";}s:7:\"Norican\";a:2:{s:5:\"label\";s:7:\"Norican\";s:5:\"value\";s:7:\"Norican\";}s:7:\"Nosifer\";a:2:{s:5:\"label\";s:7:\"Nosifer\";s:5:\"value\";s:7:\"Nosifer\";}s:20:\"Nothing You Could Do\";a:2:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:5:\"value\";s:20:\"Nothing You Could Do\";}s:12:\"Noticia Text\";a:2:{s:5:\"label\";s:12:\"Noticia Text\";s:5:\"value\";s:12:\"Noticia Text\";}s:8:\"Nova Cut\";a:2:{s:5:\"label\";s:8:\"Nova Cut\";s:5:\"value\";s:8:\"Nova Cut\";}s:9:\"Nova Flat\";a:2:{s:5:\"label\";s:9:\"Nova Flat\";s:5:\"value\";s:9:\"Nova Flat\";}s:9:\"Nova Mono\";a:2:{s:5:\"label\";s:9:\"Nova Mono\";s:5:\"value\";s:9:\"Nova Mono\";}s:9:\"Nova Oval\";a:2:{s:5:\"label\";s:9:\"Nova Oval\";s:5:\"value\";s:9:\"Nova Oval\";}s:10:\"Nova Round\";a:2:{s:5:\"label\";s:10:\"Nova Round\";s:5:\"value\";s:10:\"Nova Round\";}s:11:\"Nova Script\";a:2:{s:5:\"label\";s:11:\"Nova Script\";s:5:\"value\";s:11:\"Nova Script\";}s:9:\"Nova Slim\";a:2:{s:5:\"label\";s:9:\"Nova Slim\";s:5:\"value\";s:9:\"Nova Slim\";}s:11:\"Nova Square\";a:2:{s:5:\"label\";s:11:\"Nova Square\";s:5:\"value\";s:11:\"Nova Square\";}s:6:\"Numans\";a:2:{s:5:\"label\";s:6:\"Numans\";s:5:\"value\";s:6:\"Numans\";}s:6:\"Nunito\";a:2:{s:5:\"label\";s:6:\"Nunito\";s:5:\"value\";s:6:\"Nunito\";}s:14:\"Odor Mean Chey\";a:2:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:5:\"value\";s:14:\"Odor Mean Chey\";}s:15:\"Old Standard TT\";a:2:{s:5:\"label\";s:15:\"Old Standard TT\";s:5:\"value\";s:15:\"Old Standard TT\";}s:9:\"Oldenburg\";a:2:{s:5:\"label\";s:9:\"Oldenburg\";s:5:\"value\";s:9:\"Oldenburg\";}s:11:\"Oleo Script\";a:2:{s:5:\"label\";s:11:\"Oleo Script\";s:5:\"value\";s:11:\"Oleo Script\";}s:9:\"Open Sans\";a:2:{s:5:\"label\";s:9:\"Open Sans\";s:5:\"value\";s:9:\"Open Sans\";}s:19:\"Open Sans Condensed\";a:2:{s:5:\"label\";s:19:\"Open Sans Condensed\";s:5:\"value\";s:19:\"Open Sans Condensed\";}s:8:\"Orbitron\";a:2:{s:5:\"label\";s:8:\"Orbitron\";s:5:\"value\";s:8:\"Orbitron\";}s:15:\"Original Surfer\";a:2:{s:5:\"label\";s:15:\"Original Surfer\";s:5:\"value\";s:15:\"Original Surfer\";}s:6:\"Oswald\";a:2:{s:5:\"label\";s:6:\"Oswald\";s:5:\"value\";s:6:\"Oswald\";}s:16:\"Over the Rainbow\";a:2:{s:5:\"label\";s:16:\"Over the Rainbow\";s:5:\"value\";s:16:\"Over the Rainbow\";}s:8:\"Overlock\";a:2:{s:5:\"label\";s:8:\"Overlock\";s:5:\"value\";s:8:\"Overlock\";}s:11:\"Overlock SC\";a:2:{s:5:\"label\";s:11:\"Overlock SC\";s:5:\"value\";s:11:\"Overlock SC\";}s:3:\"Ovo\";a:2:{s:5:\"label\";s:3:\"Ovo\";s:5:\"value\";s:3:\"Ovo\";}s:6:\"Oxygen\";a:2:{s:5:\"label\";s:6:\"Oxygen\";s:5:\"value\";s:6:\"Oxygen\";}s:7:\"PT Mono\";a:2:{s:5:\"label\";s:7:\"PT Mono\";s:5:\"value\";s:7:\"PT Mono\";}s:7:\"PT Sans\";a:2:{s:5:\"label\";s:7:\"PT Sans\";s:5:\"value\";s:7:\"PT Sans\";}s:15:\"PT Sans Caption\";a:2:{s:5:\"label\";s:15:\"PT Sans Caption\";s:5:\"value\";s:15:\"PT Sans Caption\";}s:14:\"PT Sans Narrow\";a:2:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:5:\"value\";s:14:\"PT Sans Narrow\";}s:8:\"PT Serif\";a:2:{s:5:\"label\";s:8:\"PT Serif\";s:5:\"value\";s:8:\"PT Serif\";}s:16:\"PT Serif Caption\";a:2:{s:5:\"label\";s:16:\"PT Serif Caption\";s:5:\"value\";s:16:\"PT Serif Caption\";}s:8:\"Pacifico\";a:2:{s:5:\"label\";s:8:\"Pacifico\";s:5:\"value\";s:8:\"Pacifico\";}s:10:\"Parisienne\";a:2:{s:5:\"label\";s:10:\"Parisienne\";s:5:\"value\";s:10:\"Parisienne\";}s:11:\"Passero One\";a:2:{s:5:\"label\";s:11:\"Passero One\";s:5:\"value\";s:11:\"Passero One\";}s:11:\"Passion One\";a:2:{s:5:\"label\";s:11:\"Passion One\";s:5:\"value\";s:11:\"Passion One\";}s:12:\"Patrick Hand\";a:2:{s:5:\"label\";s:12:\"Patrick Hand\";s:5:\"value\";s:12:\"Patrick Hand\";}s:9:\"Patua One\";a:2:{s:5:\"label\";s:9:\"Patua One\";s:5:\"value\";s:9:\"Patua One\";}s:11:\"Paytone One\";a:2:{s:5:\"label\";s:11:\"Paytone One\";s:5:\"value\";s:11:\"Paytone One\";}s:16:\"Permanent Marker\";a:2:{s:5:\"label\";s:16:\"Permanent Marker\";s:5:\"value\";s:16:\"Permanent Marker\";}s:7:\"Petrona\";a:2:{s:5:\"label\";s:7:\"Petrona\";s:5:\"value\";s:7:\"Petrona\";}s:11:\"Philosopher\";a:2:{s:5:\"label\";s:11:\"Philosopher\";s:5:\"value\";s:11:\"Philosopher\";}s:6:\"Piedra\";a:2:{s:5:\"label\";s:6:\"Piedra\";s:5:\"value\";s:6:\"Piedra\";}s:13:\"Pinyon Script\";a:2:{s:5:\"label\";s:13:\"Pinyon Script\";s:5:\"value\";s:13:\"Pinyon Script\";}s:7:\"Plaster\";a:2:{s:5:\"label\";s:7:\"Plaster\";s:5:\"value\";s:7:\"Plaster\";}s:4:\"Play\";a:2:{s:5:\"label\";s:4:\"Play\";s:5:\"value\";s:4:\"Play\";}s:8:\"Playball\";a:2:{s:5:\"label\";s:8:\"Playball\";s:5:\"value\";s:8:\"Playball\";}s:16:\"Playfair Display\";a:2:{s:5:\"label\";s:16:\"Playfair Display\";s:5:\"value\";s:16:\"Playfair Display\";}s:7:\"Podkova\";a:2:{s:5:\"label\";s:7:\"Podkova\";s:5:\"value\";s:7:\"Podkova\";}s:10:\"Poiret One\";a:2:{s:5:\"label\";s:10:\"Poiret One\";s:5:\"value\";s:10:\"Poiret One\";}s:10:\"Poller One\";a:2:{s:5:\"label\";s:10:\"Poller One\";s:5:\"value\";s:10:\"Poller One\";}s:4:\"Poly\";a:2:{s:5:\"label\";s:4:\"Poly\";s:5:\"value\";s:4:\"Poly\";}s:8:\"Pompiere\";a:2:{s:5:\"label\";s:8:\"Pompiere\";s:5:\"value\";s:8:\"Pompiere\";}s:12:\"Pontano Sans\";a:2:{s:5:\"label\";s:12:\"Pontano Sans\";s:5:\"value\";s:12:\"Pontano Sans\";}s:16:\"Port Lligat Sans\";a:2:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:5:\"value\";s:16:\"Port Lligat Sans\";}s:16:\"Port Lligat Slab\";a:2:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:5:\"value\";s:16:\"Port Lligat Slab\";}s:5:\"Prata\";a:2:{s:5:\"label\";s:5:\"Prata\";s:5:\"value\";s:5:\"Prata\";}s:11:\"Preahvihear\";a:2:{s:5:\"label\";s:11:\"Preahvihear\";s:5:\"value\";s:11:\"Preahvihear\";}s:14:\"Press Start 2P\";a:2:{s:5:\"label\";s:14:\"Press Start 2P\";s:5:\"value\";s:14:\"Press Start 2P\";}s:14:\"Princess Sofia\";a:2:{s:5:\"label\";s:14:\"Princess Sofia\";s:5:\"value\";s:14:\"Princess Sofia\";}s:8:\"Prociono\";a:2:{s:5:\"label\";s:8:\"Prociono\";s:5:\"value\";s:8:\"Prociono\";}s:10:\"Prosto One\";a:2:{s:5:\"label\";s:10:\"Prosto One\";s:5:\"value\";s:10:\"Prosto One\";}s:7:\"Puritan\";a:2:{s:5:\"label\";s:7:\"Puritan\";s:5:\"value\";s:7:\"Puritan\";}s:6:\"Quando\";a:2:{s:5:\"label\";s:6:\"Quando\";s:5:\"value\";s:6:\"Quando\";}s:8:\"Quantico\";a:2:{s:5:\"label\";s:8:\"Quantico\";s:5:\"value\";s:8:\"Quantico\";}s:12:\"Quattrocento\";a:2:{s:5:\"label\";s:12:\"Quattrocento\";s:5:\"value\";s:12:\"Quattrocento\";}s:17:\"Quattrocento Sans\";a:2:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:5:\"value\";s:17:\"Quattrocento Sans\";}s:9:\"Questrial\";a:2:{s:5:\"label\";s:9:\"Questrial\";s:5:\"value\";s:9:\"Questrial\";}s:9:\"Quicksand\";a:2:{s:5:\"label\";s:9:\"Quicksand\";s:5:\"value\";s:9:\"Quicksand\";}s:7:\"Qwigley\";a:2:{s:5:\"label\";s:7:\"Qwigley\";s:5:\"value\";s:7:\"Qwigley\";}s:6:\"Radley\";a:2:{s:5:\"label\";s:6:\"Radley\";s:5:\"value\";s:6:\"Radley\";}s:7:\"Raleway\";a:2:{s:5:\"label\";s:7:\"Raleway\";s:5:\"value\";s:7:\"Raleway\";}s:12:\"Rammetto One\";a:2:{s:5:\"label\";s:12:\"Rammetto One\";s:5:\"value\";s:12:\"Rammetto One\";}s:6:\"Rancho\";a:2:{s:5:\"label\";s:6:\"Rancho\";s:5:\"value\";s:6:\"Rancho\";}s:9:\"Rationale\";a:2:{s:5:\"label\";s:9:\"Rationale\";s:5:\"value\";s:9:\"Rationale\";}s:9:\"Redressed\";a:2:{s:5:\"label\";s:9:\"Redressed\";s:5:\"value\";s:9:\"Redressed\";}s:13:\"Reenie Beanie\";a:2:{s:5:\"label\";s:13:\"Reenie Beanie\";s:5:\"value\";s:13:\"Reenie Beanie\";}s:7:\"Revalia\";a:2:{s:5:\"label\";s:7:\"Revalia\";s:5:\"value\";s:7:\"Revalia\";}s:6:\"Ribeye\";a:2:{s:5:\"label\";s:6:\"Ribeye\";s:5:\"value\";s:6:\"Ribeye\";}s:13:\"Ribeye Marrow\";a:2:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:5:\"value\";s:13:\"Ribeye Marrow\";}s:9:\"Righteous\";a:2:{s:5:\"label\";s:9:\"Righteous\";s:5:\"value\";s:9:\"Righteous\";}s:9:\"Rochester\";a:2:{s:5:\"label\";s:9:\"Rochester\";s:5:\"value\";s:9:\"Rochester\";}s:9:\"Rock Salt\";a:2:{s:5:\"label\";s:9:\"Rock Salt\";s:5:\"value\";s:9:\"Rock Salt\";}s:7:\"Rokkitt\";a:2:{s:5:\"label\";s:7:\"Rokkitt\";s:5:\"value\";s:7:\"Rokkitt\";}s:9:\"Ropa Sans\";a:2:{s:5:\"label\";s:9:\"Ropa Sans\";s:5:\"value\";s:9:\"Ropa Sans\";}s:7:\"Rosario\";a:2:{s:5:\"label\";s:7:\"Rosario\";s:5:\"value\";s:7:\"Rosario\";}s:8:\"Rosarivo\";a:2:{s:5:\"label\";s:8:\"Rosarivo\";s:5:\"value\";s:8:\"Rosarivo\";}s:12:\"Rouge Script\";a:2:{s:5:\"label\";s:12:\"Rouge Script\";s:5:\"value\";s:12:\"Rouge Script\";}s:4:\"Ruda\";a:2:{s:5:\"label\";s:4:\"Ruda\";s:5:\"value\";s:4:\"Ruda\";}s:11:\"Ruge Boogie\";a:2:{s:5:\"label\";s:11:\"Ruge Boogie\";s:5:\"value\";s:11:\"Ruge Boogie\";}s:6:\"Ruluko\";a:2:{s:5:\"label\";s:6:\"Ruluko\";s:5:\"value\";s:6:\"Ruluko\";}s:14:\"Ruslan Display\";a:2:{s:5:\"label\";s:14:\"Ruslan Display\";s:5:\"value\";s:14:\"Ruslan Display\";}s:9:\"Russo One\";a:2:{s:5:\"label\";s:9:\"Russo One\";s:5:\"value\";s:9:\"Russo One\";}s:6:\"Ruthie\";a:2:{s:5:\"label\";s:6:\"Ruthie\";s:5:\"value\";s:6:\"Ruthie\";}s:4:\"Sail\";a:2:{s:5:\"label\";s:4:\"Sail\";s:5:\"value\";s:4:\"Sail\";}s:5:\"Salsa\";a:2:{s:5:\"label\";s:5:\"Salsa\";s:5:\"value\";s:5:\"Salsa\";}s:8:\"Sancreek\";a:2:{s:5:\"label\";s:8:\"Sancreek\";s:5:\"value\";s:8:\"Sancreek\";}s:11:\"Sansita One\";a:2:{s:5:\"label\";s:11:\"Sansita One\";s:5:\"value\";s:11:\"Sansita One\";}s:6:\"Sarina\";a:2:{s:5:\"label\";s:6:\"Sarina\";s:5:\"value\";s:6:\"Sarina\";}s:7:\"Satisfy\";a:2:{s:5:\"label\";s:7:\"Satisfy\";s:5:\"value\";s:7:\"Satisfy\";}s:10:\"Schoolbell\";a:2:{s:5:\"label\";s:10:\"Schoolbell\";s:5:\"value\";s:10:\"Schoolbell\";}s:14:\"Seaweed Script\";a:2:{s:5:\"label\";s:14:\"Seaweed Script\";s:5:\"value\";s:14:\"Seaweed Script\";}s:9:\"Sevillana\";a:2:{s:5:\"label\";s:9:\"Sevillana\";s:5:\"value\";s:9:\"Sevillana\";}s:18:\"Shadows Into Light\";a:2:{s:5:\"label\";s:18:\"Shadows Into Light\";s:5:\"value\";s:18:\"Shadows Into Light\";}s:22:\"Shadows Into Light Two\";a:2:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:5:\"value\";s:22:\"Shadows Into Light Two\";}s:6:\"Shanti\";a:2:{s:5:\"label\";s:6:\"Shanti\";s:5:\"value\";s:6:\"Shanti\";}s:5:\"Share\";a:2:{s:5:\"label\";s:5:\"Share\";s:5:\"value\";s:5:\"Share\";}s:9:\"Shojumaru\";a:2:{s:5:\"label\";s:9:\"Shojumaru\";s:5:\"value\";s:9:\"Shojumaru\";}s:11:\"Short Stack\";a:2:{s:5:\"label\";s:11:\"Short Stack\";s:5:\"value\";s:11:\"Short Stack\";}s:8:\"Siemreap\";a:2:{s:5:\"label\";s:8:\"Siemreap\";s:5:\"value\";s:8:\"Siemreap\";}s:10:\"Sigmar One\";a:2:{s:5:\"label\";s:10:\"Sigmar One\";s:5:\"value\";s:10:\"Sigmar One\";}s:7:\"Signika\";a:2:{s:5:\"label\";s:7:\"Signika\";s:5:\"value\";s:7:\"Signika\";}s:16:\"Signika Negative\";a:2:{s:5:\"label\";s:16:\"Signika Negative\";s:5:\"value\";s:16:\"Signika Negative\";}s:9:\"Simonetta\";a:2:{s:5:\"label\";s:9:\"Simonetta\";s:5:\"value\";s:9:\"Simonetta\";}s:13:\"Sirin Stencil\";a:2:{s:5:\"label\";s:13:\"Sirin Stencil\";s:5:\"value\";s:13:\"Sirin Stencil\";}s:8:\"Six Caps\";a:2:{s:5:\"label\";s:8:\"Six Caps\";s:5:\"value\";s:8:\"Six Caps\";}s:7:\"Slackey\";a:2:{s:5:\"label\";s:7:\"Slackey\";s:5:\"value\";s:7:\"Slackey\";}s:6:\"Smokum\";a:2:{s:5:\"label\";s:6:\"Smokum\";s:5:\"value\";s:6:\"Smokum\";}s:6:\"Smythe\";a:2:{s:5:\"label\";s:6:\"Smythe\";s:5:\"value\";s:6:\"Smythe\";}s:7:\"Sniglet\";a:2:{s:5:\"label\";s:7:\"Sniglet\";s:5:\"value\";s:7:\"Sniglet\";}s:7:\"Snippet\";a:2:{s:5:\"label\";s:7:\"Snippet\";s:5:\"value\";s:7:\"Snippet\";}s:5:\"Sofia\";a:2:{s:5:\"label\";s:5:\"Sofia\";s:5:\"value\";s:5:\"Sofia\";}s:10:\"Sonsie One\";a:2:{s:5:\"label\";s:10:\"Sonsie One\";s:5:\"value\";s:10:\"Sonsie One\";}s:16:\"Sorts Mill Goudy\";a:2:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:5:\"value\";s:16:\"Sorts Mill Goudy\";}s:15:\"Source Sans Pro\";a:2:{s:5:\"label\";s:15:\"Source Sans Pro\";s:5:\"value\";s:15:\"Source Sans Pro\";}s:13:\"Special Elite\";a:2:{s:5:\"label\";s:13:\"Special Elite\";s:5:\"value\";s:13:\"Special Elite\";}s:10:\"Spicy Rice\";a:2:{s:5:\"label\";s:10:\"Spicy Rice\";s:5:\"value\";s:10:\"Spicy Rice\";}s:9:\"Spinnaker\";a:2:{s:5:\"label\";s:9:\"Spinnaker\";s:5:\"value\";s:9:\"Spinnaker\";}s:6:\"Spirax\";a:2:{s:5:\"label\";s:6:\"Spirax\";s:5:\"value\";s:6:\"Spirax\";}s:10:\"Squada One\";a:2:{s:5:\"label\";s:10:\"Squada One\";s:5:\"value\";s:10:\"Squada One\";}s:15:\"Stardos Stencil\";a:2:{s:5:\"label\";s:15:\"Stardos Stencil\";s:5:\"value\";s:15:\"Stardos Stencil\";}s:21:\"Stint Ultra Condensed\";a:2:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:5:\"value\";s:21:\"Stint Ultra Condensed\";}s:20:\"Stint Ultra Expanded\";a:2:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:5:\"value\";s:20:\"Stint Ultra Expanded\";}s:5:\"Stoke\";a:2:{s:5:\"label\";s:5:\"Stoke\";s:5:\"value\";s:5:\"Stoke\";}s:19:\"Sue Ellen Francisco\";a:2:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:5:\"value\";s:19:\"Sue Ellen Francisco\";}s:9:\"Sunshiney\";a:2:{s:5:\"label\";s:9:\"Sunshiney\";s:5:\"value\";s:9:\"Sunshiney\";}s:16:\"Supermercado One\";a:2:{s:5:\"label\";s:16:\"Supermercado One\";s:5:\"value\";s:16:\"Supermercado One\";}s:11:\"Suwannaphum\";a:2:{s:5:\"label\";s:11:\"Suwannaphum\";s:5:\"value\";s:11:\"Suwannaphum\";}s:18:\"Swanky and Moo Moo\";a:2:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:5:\"value\";s:18:\"Swanky and Moo Moo\";}s:9:\"Syncopate\";a:2:{s:5:\"label\";s:9:\"Syncopate\";s:5:\"value\";s:9:\"Syncopate\";}s:9:\"Tangerine\";a:2:{s:5:\"label\";s:9:\"Tangerine\";s:5:\"value\";s:9:\"Tangerine\";}s:6:\"Taprom\";a:2:{s:5:\"label\";s:6:\"Taprom\";s:5:\"value\";s:6:\"Taprom\";}s:5:\"Telex\";a:2:{s:5:\"label\";s:5:\"Telex\";s:5:\"value\";s:5:\"Telex\";}s:10:\"Tenor Sans\";a:2:{s:5:\"label\";s:10:\"Tenor Sans\";s:5:\"value\";s:10:\"Tenor Sans\";}s:18:\"The Girl Next Door\";a:2:{s:5:\"label\";s:18:\"The Girl Next Door\";s:5:\"value\";s:18:\"The Girl Next Door\";}s:6:\"Tienne\";a:2:{s:5:\"label\";s:6:\"Tienne\";s:5:\"value\";s:6:\"Tienne\";}s:5:\"Tinos\";a:2:{s:5:\"label\";s:5:\"Tinos\";s:5:\"value\";s:5:\"Tinos\";}s:9:\"Titan One\";a:2:{s:5:\"label\";s:9:\"Titan One\";s:5:\"value\";s:9:\"Titan One\";}s:11:\"Trade Winds\";a:2:{s:5:\"label\";s:11:\"Trade Winds\";s:5:\"value\";s:11:\"Trade Winds\";}s:7:\"Trocchi\";a:2:{s:5:\"label\";s:7:\"Trocchi\";s:5:\"value\";s:7:\"Trocchi\";}s:7:\"Trochut\";a:2:{s:5:\"label\";s:7:\"Trochut\";s:5:\"value\";s:7:\"Trochut\";}s:7:\"Trykker\";a:2:{s:5:\"label\";s:7:\"Trykker\";s:5:\"value\";s:7:\"Trykker\";}s:10:\"Tulpen One\";a:2:{s:5:\"label\";s:10:\"Tulpen One\";s:5:\"value\";s:10:\"Tulpen One\";}s:6:\"Ubuntu\";a:2:{s:5:\"label\";s:6:\"Ubuntu\";s:5:\"value\";s:6:\"Ubuntu\";}s:16:\"Ubuntu Condensed\";a:2:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:5:\"value\";s:16:\"Ubuntu Condensed\";}s:11:\"Ubuntu Mono\";a:2:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:5:\"value\";s:11:\"Ubuntu Mono\";}s:5:\"Ultra\";a:2:{s:5:\"label\";s:5:\"Ultra\";s:5:\"value\";s:5:\"Ultra\";}s:14:\"Uncial Antiqua\";a:2:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:5:\"value\";s:14:\"Uncial Antiqua\";}s:14:\"UnifrakturCook\";a:2:{s:5:\"label\";s:14:\"UnifrakturCook\";s:5:\"value\";s:14:\"UnifrakturCook\";}s:18:\"UnifrakturMaguntia\";a:2:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:5:\"value\";s:18:\"UnifrakturMaguntia\";}s:7:\"Unkempt\";a:2:{s:5:\"label\";s:7:\"Unkempt\";s:5:\"value\";s:7:\"Unkempt\";}s:6:\"Unlock\";a:2:{s:5:\"label\";s:6:\"Unlock\";s:5:\"value\";s:6:\"Unlock\";}s:4:\"Unna\";a:2:{s:5:\"label\";s:4:\"Unna\";s:5:\"value\";s:4:\"Unna\";}s:5:\"VT323\";a:2:{s:5:\"label\";s:5:\"VT323\";s:5:\"value\";s:5:\"VT323\";}s:6:\"Varela\";a:2:{s:5:\"label\";s:6:\"Varela\";s:5:\"value\";s:6:\"Varela\";}s:12:\"Varela Round\";a:2:{s:5:\"label\";s:12:\"Varela Round\";s:5:\"value\";s:12:\"Varela Round\";}s:11:\"Vast Shadow\";a:2:{s:5:\"label\";s:11:\"Vast Shadow\";s:5:\"value\";s:11:\"Vast Shadow\";}s:5:\"Vibur\";a:2:{s:5:\"label\";s:5:\"Vibur\";s:5:\"value\";s:5:\"Vibur\";}s:8:\"Vidaloka\";a:2:{s:5:\"label\";s:8:\"Vidaloka\";s:5:\"value\";s:8:\"Vidaloka\";}s:4:\"Viga\";a:2:{s:5:\"label\";s:4:\"Viga\";s:5:\"value\";s:4:\"Viga\";}s:5:\"Voces\";a:2:{s:5:\"label\";s:5:\"Voces\";s:5:\"value\";s:5:\"Voces\";}s:7:\"Volkhov\";a:2:{s:5:\"label\";s:7:\"Volkhov\";s:5:\"value\";s:7:\"Volkhov\";}s:8:\"Vollkorn\";a:2:{s:5:\"label\";s:8:\"Vollkorn\";s:5:\"value\";s:8:\"Vollkorn\";}s:8:\"Voltaire\";a:2:{s:5:\"label\";s:8:\"Voltaire\";s:5:\"value\";s:8:\"Voltaire\";}s:23:\"Waiting for the Sunrise\";a:2:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:5:\"value\";s:23:\"Waiting for the Sunrise\";}s:8:\"Wallpoet\";a:2:{s:5:\"label\";s:8:\"Wallpoet\";s:5:\"value\";s:8:\"Wallpoet\";}s:15:\"Walter Turncoat\";a:2:{s:5:\"label\";s:15:\"Walter Turncoat\";s:5:\"value\";s:15:\"Walter Turncoat\";}s:9:\"Wellfleet\";a:2:{s:5:\"label\";s:9:\"Wellfleet\";s:5:\"value\";s:9:\"Wellfleet\";}s:8:\"Wire One\";a:2:{s:5:\"label\";s:8:\"Wire One\";s:5:\"value\";s:8:\"Wire One\";}s:17:\"Yanone Kaffeesatz\";a:2:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:5:\"value\";s:17:\"Yanone Kaffeesatz\";}s:10:\"Yellowtail\";a:2:{s:5:\"label\";s:10:\"Yellowtail\";s:5:\"value\";s:10:\"Yellowtail\";}s:10:\"Yeseva One\";a:2:{s:5:\"label\";s:10:\"Yeseva One\";s:5:\"value\";s:10:\"Yeseva One\";}s:10:\"Yesteryear\";a:2:{s:5:\"label\";s:10:\"Yesteryear\";s:5:\"value\";s:10:\"Yesteryear\";}s:6:\"Zeyada\";a:2:{s:5:\"label\";s:6:\"Zeyada\";s:5:\"value\";s:6:\"Zeyada\";}}}i:39;a:7:{s:2:\"id\";s:19:\"choose_heading_font\";s:5:\"label\";s:19:\"Choose heading font\";s:4:\"desc\";s:68:\"Here you can assign the main heading font for your coming soon page.\";s:3:\"std\";s:4:\"Lato\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:17:\"design_and_layout\";s:7:\"choices\";a:530:{s:4:\"Abel\";a:2:{s:5:\"label\";s:4:\"Abel\";s:5:\"value\";s:4:\"Abel\";}s:13:\"Abril Fatface\";a:2:{s:5:\"label\";s:13:\"Abril Fatface\";s:5:\"value\";s:13:\"Abril Fatface\";}s:8:\"Aclonica\";a:2:{s:5:\"label\";s:8:\"Aclonica\";s:5:\"value\";s:8:\"Aclonica\";}s:4:\"Acme\";a:2:{s:5:\"label\";s:4:\"Acme\";s:5:\"value\";s:4:\"Acme\";}s:5:\"Actor\";a:2:{s:5:\"label\";s:5:\"Actor\";s:5:\"value\";s:5:\"Actor\";}s:7:\"Adamina\";a:2:{s:5:\"label\";s:7:\"Adamina\";s:5:\"value\";s:7:\"Adamina\";}s:10:\"Advent Pro\";a:2:{s:5:\"label\";s:10:\"Advent Pro\";s:5:\"value\";s:10:\"Advent Pro\";}s:15:\"Aguafina Script\";a:2:{s:5:\"label\";s:15:\"Aguafina Script\";s:5:\"value\";s:15:\"Aguafina Script\";}s:6:\"Aladin\";a:2:{s:5:\"label\";s:6:\"Aladin\";s:5:\"value\";s:6:\"Aladin\";}s:7:\"Aldrich\";a:2:{s:5:\"label\";s:7:\"Aldrich\";s:5:\"value\";s:7:\"Aldrich\";}s:8:\"Alegreya\";a:2:{s:5:\"label\";s:8:\"Alegreya\";s:5:\"value\";s:8:\"Alegreya\";}s:11:\"Alegreya SC\";a:2:{s:5:\"label\";s:11:\"Alegreya SC\";s:5:\"value\";s:11:\"Alegreya SC\";}s:10:\"Alex Brush\";a:2:{s:5:\"label\";s:10:\"Alex Brush\";s:5:\"value\";s:10:\"Alex Brush\";}s:13:\"Alfa Slab One\";a:2:{s:5:\"label\";s:13:\"Alfa Slab One\";s:5:\"value\";s:13:\"Alfa Slab One\";}s:5:\"Alice\";a:2:{s:5:\"label\";s:5:\"Alice\";s:5:\"value\";s:5:\"Alice\";}s:5:\"Alike\";a:2:{s:5:\"label\";s:5:\"Alike\";s:5:\"value\";s:5:\"Alike\";}s:13:\"Alike Angular\";a:2:{s:5:\"label\";s:13:\"Alike Angular\";s:5:\"value\";s:13:\"Alike Angular\";}s:5:\"Allan\";a:2:{s:5:\"label\";s:5:\"Allan\";s:5:\"value\";s:5:\"Allan\";}s:7:\"Allerta\";a:2:{s:5:\"label\";s:7:\"Allerta\";s:5:\"value\";s:7:\"Allerta\";}s:15:\"Allerta Stencil\";a:2:{s:5:\"label\";s:15:\"Allerta Stencil\";s:5:\"value\";s:15:\"Allerta Stencil\";}s:6:\"Allura\";a:2:{s:5:\"label\";s:6:\"Allura\";s:5:\"value\";s:6:\"Allura\";}s:8:\"Almendra\";a:2:{s:5:\"label\";s:8:\"Almendra\";s:5:\"value\";s:8:\"Almendra\";}s:11:\"Almendra SC\";a:2:{s:5:\"label\";s:11:\"Almendra SC\";s:5:\"value\";s:11:\"Almendra SC\";}s:8:\"Amarante\";a:2:{s:5:\"label\";s:8:\"Amarante\";s:5:\"value\";s:8:\"Amarante\";}s:8:\"Amaranth\";a:2:{s:5:\"label\";s:8:\"Amaranth\";s:5:\"value\";s:8:\"Amaranth\";}s:9:\"Amatic SC\";a:2:{s:5:\"label\";s:9:\"Amatic SC\";s:5:\"value\";s:9:\"Amatic SC\";}s:9:\"Amethysta\";a:2:{s:5:\"label\";s:9:\"Amethysta\";s:5:\"value\";s:9:\"Amethysta\";}s:6:\"Andada\";a:2:{s:5:\"label\";s:6:\"Andada\";s:5:\"value\";s:6:\"Andada\";}s:6:\"Andika\";a:2:{s:5:\"label\";s:6:\"Andika\";s:5:\"value\";s:6:\"Andika\";}s:6:\"Angkor\";a:2:{s:5:\"label\";s:6:\"Angkor\";s:5:\"value\";s:6:\"Angkor\";}s:24:\"Annie Use Your Telescope\";a:2:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:5:\"value\";s:24:\"Annie Use Your Telescope\";}s:13:\"Anonymous Pro\";a:2:{s:5:\"label\";s:13:\"Anonymous Pro\";s:5:\"value\";s:13:\"Anonymous Pro\";}s:5:\"Antic\";a:2:{s:5:\"label\";s:5:\"Antic\";s:5:\"value\";s:5:\"Antic\";}s:12:\"Antic Didone\";a:2:{s:5:\"label\";s:12:\"Antic Didone\";s:5:\"value\";s:12:\"Antic Didone\";}s:10:\"Antic Slab\";a:2:{s:5:\"label\";s:10:\"Antic Slab\";s:5:\"value\";s:10:\"Antic Slab\";}s:5:\"Anton\";a:2:{s:5:\"label\";s:5:\"Anton\";s:5:\"value\";s:5:\"Anton\";}s:6:\"Arapey\";a:2:{s:5:\"label\";s:6:\"Arapey\";s:5:\"value\";s:6:\"Arapey\";}s:7:\"Arbutus\";a:2:{s:5:\"label\";s:7:\"Arbutus\";s:5:\"value\";s:7:\"Arbutus\";}s:19:\"Architects Daughter\";a:2:{s:5:\"label\";s:19:\"Architects Daughter\";s:5:\"value\";s:19:\"Architects Daughter\";}s:5:\"Arimo\";a:2:{s:5:\"label\";s:5:\"Arimo\";s:5:\"value\";s:5:\"Arimo\";}s:8:\"Arizonia\";a:2:{s:5:\"label\";s:8:\"Arizonia\";s:5:\"value\";s:8:\"Arizonia\";}s:6:\"Armata\";a:2:{s:5:\"label\";s:6:\"Armata\";s:5:\"value\";s:6:\"Armata\";}s:8:\"Artifika\";a:2:{s:5:\"label\";s:8:\"Artifika\";s:5:\"value\";s:8:\"Artifika\";}s:4:\"Arvo\";a:2:{s:5:\"label\";s:4:\"Arvo\";s:5:\"value\";s:4:\"Arvo\";}s:4:\"Asap\";a:2:{s:5:\"label\";s:4:\"Asap\";s:5:\"value\";s:4:\"Asap\";}s:5:\"Asset\";a:2:{s:5:\"label\";s:5:\"Asset\";s:5:\"value\";s:5:\"Asset\";}s:7:\"Astloch\";a:2:{s:5:\"label\";s:7:\"Astloch\";s:5:\"value\";s:7:\"Astloch\";}s:4:\"Asul\";a:2:{s:5:\"label\";s:4:\"Asul\";s:5:\"value\";s:4:\"Asul\";}s:10:\"Atomic Age\";a:2:{s:5:\"label\";s:10:\"Atomic Age\";s:5:\"value\";s:10:\"Atomic Age\";}s:6:\"Aubrey\";a:2:{s:5:\"label\";s:6:\"Aubrey\";s:5:\"value\";s:6:\"Aubrey\";}s:9:\"Audiowide\";a:2:{s:5:\"label\";s:9:\"Audiowide\";s:5:\"value\";s:9:\"Audiowide\";}s:7:\"Average\";a:2:{s:5:\"label\";s:7:\"Average\";s:5:\"value\";s:7:\"Average\";}s:19:\"Averia Gruesa Libre\";a:2:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:5:\"value\";s:19:\"Averia Gruesa Libre\";}s:12:\"Averia Libre\";a:2:{s:5:\"label\";s:12:\"Averia Libre\";s:5:\"value\";s:12:\"Averia Libre\";}s:17:\"Averia Sans Libre\";a:2:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:5:\"value\";s:17:\"Averia Sans Libre\";}s:18:\"Averia Serif Libre\";a:2:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:5:\"value\";s:18:\"Averia Serif Libre\";}s:10:\"Bad Script\";a:2:{s:5:\"label\";s:10:\"Bad Script\";s:5:\"value\";s:10:\"Bad Script\";}s:9:\"Balthazar\";a:2:{s:5:\"label\";s:9:\"Balthazar\";s:5:\"value\";s:9:\"Balthazar\";}s:7:\"Bangers\";a:2:{s:5:\"label\";s:7:\"Bangers\";s:5:\"value\";s:7:\"Bangers\";}s:5:\"Basic\";a:2:{s:5:\"label\";s:5:\"Basic\";s:5:\"value\";s:5:\"Basic\";}s:10:\"Battambang\";a:2:{s:5:\"label\";s:10:\"Battambang\";s:5:\"value\";s:10:\"Battambang\";}s:7:\"Baumans\";a:2:{s:5:\"label\";s:7:\"Baumans\";s:5:\"value\";s:7:\"Baumans\";}s:5:\"Bayon\";a:2:{s:5:\"label\";s:5:\"Bayon\";s:5:\"value\";s:5:\"Bayon\";}s:8:\"Belgrano\";a:2:{s:5:\"label\";s:8:\"Belgrano\";s:5:\"value\";s:8:\"Belgrano\";}s:7:\"Belleza\";a:2:{s:5:\"label\";s:7:\"Belleza\";s:5:\"value\";s:7:\"Belleza\";}s:7:\"Bentham\";a:2:{s:5:\"label\";s:7:\"Bentham\";s:5:\"value\";s:7:\"Bentham\";}s:15:\"Berkshire Swash\";a:2:{s:5:\"label\";s:15:\"Berkshire Swash\";s:5:\"value\";s:15:\"Berkshire Swash\";}s:5:\"Bevan\";a:2:{s:5:\"label\";s:5:\"Bevan\";s:5:\"value\";s:5:\"Bevan\";}s:11:\"Bigshot One\";a:2:{s:5:\"label\";s:11:\"Bigshot One\";s:5:\"value\";s:11:\"Bigshot One\";}s:5:\"Bilbo\";a:2:{s:5:\"label\";s:5:\"Bilbo\";s:5:\"value\";s:5:\"Bilbo\";}s:16:\"Bilbo Swash Caps\";a:2:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:5:\"value\";s:16:\"Bilbo Swash Caps\";}s:6:\"Bitter\";a:2:{s:5:\"label\";s:6:\"Bitter\";s:5:\"value\";s:6:\"Bitter\";}s:13:\"Black Ops One\";a:2:{s:5:\"label\";s:13:\"Black Ops One\";s:5:\"value\";s:13:\"Black Ops One\";}s:5:\"Bokor\";a:2:{s:5:\"label\";s:5:\"Bokor\";s:5:\"value\";s:5:\"Bokor\";}s:6:\"Bonbon\";a:2:{s:5:\"label\";s:6:\"Bonbon\";s:5:\"value\";s:6:\"Bonbon\";}s:8:\"Boogaloo\";a:2:{s:5:\"label\";s:8:\"Boogaloo\";s:5:\"value\";s:8:\"Boogaloo\";}s:10:\"Bowlby One\";a:2:{s:5:\"label\";s:10:\"Bowlby One\";s:5:\"value\";s:10:\"Bowlby One\";}s:13:\"Bowlby One SC\";a:2:{s:5:\"label\";s:13:\"Bowlby One SC\";s:5:\"value\";s:13:\"Bowlby One SC\";}s:7:\"Brawler\";a:2:{s:5:\"label\";s:7:\"Brawler\";s:5:\"value\";s:7:\"Brawler\";}s:10:\"Bree Serif\";a:2:{s:5:\"label\";s:10:\"Bree Serif\";s:5:\"value\";s:10:\"Bree Serif\";}s:14:\"Bubblegum Sans\";a:2:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:5:\"value\";s:14:\"Bubblegum Sans\";}s:4:\"Buda\";a:2:{s:5:\"label\";s:4:\"Buda\";s:5:\"value\";s:4:\"Buda\";}s:7:\"Buenard\";a:2:{s:5:\"label\";s:7:\"Buenard\";s:5:\"value\";s:7:\"Buenard\";}s:10:\"Butcherman\";a:2:{s:5:\"label\";s:10:\"Butcherman\";s:5:\"value\";s:10:\"Butcherman\";}s:14:\"Butterfly Kids\";a:2:{s:5:\"label\";s:14:\"Butterfly Kids\";s:5:\"value\";s:14:\"Butterfly Kids\";}s:5:\"Cabin\";a:2:{s:5:\"label\";s:5:\"Cabin\";s:5:\"value\";s:5:\"Cabin\";}s:15:\"Cabin Condensed\";a:2:{s:5:\"label\";s:15:\"Cabin Condensed\";s:5:\"value\";s:15:\"Cabin Condensed\";}s:12:\"Cabin Sketch\";a:2:{s:5:\"label\";s:12:\"Cabin Sketch\";s:5:\"value\";s:12:\"Cabin Sketch\";}s:15:\"Caesar Dressing\";a:2:{s:5:\"label\";s:15:\"Caesar Dressing\";s:5:\"value\";s:15:\"Caesar Dressing\";}s:10:\"Cagliostro\";a:2:{s:5:\"label\";s:10:\"Cagliostro\";s:5:\"value\";s:10:\"Cagliostro\";}s:14:\"Calligraffitti\";a:2:{s:5:\"label\";s:14:\"Calligraffitti\";s:5:\"value\";s:14:\"Calligraffitti\";}s:5:\"Cambo\";a:2:{s:5:\"label\";s:5:\"Cambo\";s:5:\"value\";s:5:\"Cambo\";}s:6:\"Candal\";a:2:{s:5:\"label\";s:6:\"Candal\";s:5:\"value\";s:6:\"Candal\";}s:9:\"Cantarell\";a:2:{s:5:\"label\";s:9:\"Cantarell\";s:5:\"value\";s:9:\"Cantarell\";}s:11:\"Cantata One\";a:2:{s:5:\"label\";s:11:\"Cantata One\";s:5:\"value\";s:11:\"Cantata One\";}s:8:\"Capriola\";a:2:{s:5:\"label\";s:8:\"Capriola\";s:5:\"value\";s:8:\"Capriola\";}s:5:\"Cardo\";a:2:{s:5:\"label\";s:5:\"Cardo\";s:5:\"value\";s:5:\"Cardo\";}s:5:\"Carme\";a:2:{s:5:\"label\";s:5:\"Carme\";s:5:\"value\";s:5:\"Carme\";}s:10:\"Carter One\";a:2:{s:5:\"label\";s:10:\"Carter One\";s:5:\"value\";s:10:\"Carter One\";}s:6:\"Caudex\";a:2:{s:5:\"label\";s:6:\"Caudex\";s:5:\"value\";s:6:\"Caudex\";}s:18:\"Cedarville Cursive\";a:2:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:5:\"value\";s:18:\"Cedarville Cursive\";}s:11:\"Ceviche One\";a:2:{s:5:\"label\";s:11:\"Ceviche One\";s:5:\"value\";s:11:\"Ceviche One\";}s:10:\"Changa One\";a:2:{s:5:\"label\";s:10:\"Changa One\";s:5:\"value\";s:10:\"Changa One\";}s:6:\"Chango\";a:2:{s:5:\"label\";s:6:\"Chango\";s:5:\"value\";s:6:\"Chango\";}s:18:\"Chau Philomene One\";a:2:{s:5:\"label\";s:18:\"Chau Philomene One\";s:5:\"value\";s:18:\"Chau Philomene One\";}s:14:\"Chelsea Market\";a:2:{s:5:\"label\";s:14:\"Chelsea Market\";s:5:\"value\";s:14:\"Chelsea Market\";}s:6:\"Chenla\";a:2:{s:5:\"label\";s:6:\"Chenla\";s:5:\"value\";s:6:\"Chenla\";}s:17:\"Cherry Cream Soda\";a:2:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:5:\"value\";s:17:\"Cherry Cream Soda\";}s:5:\"Chewy\";a:2:{s:5:\"label\";s:5:\"Chewy\";s:5:\"value\";s:5:\"Chewy\";}s:6:\"Chicle\";a:2:{s:5:\"label\";s:6:\"Chicle\";s:5:\"value\";s:6:\"Chicle\";}s:5:\"Chivo\";a:2:{s:5:\"label\";s:5:\"Chivo\";s:5:\"value\";s:5:\"Chivo\";}s:4:\"Coda\";a:2:{s:5:\"label\";s:4:\"Coda\";s:5:\"value\";s:4:\"Coda\";}s:12:\"Coda Caption\";a:2:{s:5:\"label\";s:12:\"Coda Caption\";s:5:\"value\";s:12:\"Coda Caption\";}s:8:\"Codystar\";a:2:{s:5:\"label\";s:8:\"Codystar\";s:5:\"value\";s:8:\"Codystar\";}s:9:\"Comfortaa\";a:2:{s:5:\"label\";s:9:\"Comfortaa\";s:5:\"value\";s:9:\"Comfortaa\";}s:11:\"Coming Soon\";a:2:{s:5:\"label\";s:11:\"Coming Soon\";s:5:\"value\";s:11:\"Coming Soon\";}s:11:\"Concert One\";a:2:{s:5:\"label\";s:11:\"Concert One\";s:5:\"value\";s:11:\"Concert One\";}s:9:\"Condiment\";a:2:{s:5:\"label\";s:9:\"Condiment\";s:5:\"value\";s:9:\"Condiment\";}s:7:\"Content\";a:2:{s:5:\"label\";s:7:\"Content\";s:5:\"value\";s:7:\"Content\";}s:12:\"Contrail One\";a:2:{s:5:\"label\";s:12:\"Contrail One\";s:5:\"value\";s:12:\"Contrail One\";}s:11:\"Convergence\";a:2:{s:5:\"label\";s:11:\"Convergence\";s:5:\"value\";s:11:\"Convergence\";}s:6:\"Cookie\";a:2:{s:5:\"label\";s:6:\"Cookie\";s:5:\"value\";s:6:\"Cookie\";}s:5:\"Copse\";a:2:{s:5:\"label\";s:5:\"Copse\";s:5:\"value\";s:5:\"Copse\";}s:6:\"Corben\";a:2:{s:5:\"label\";s:6:\"Corben\";s:5:\"value\";s:6:\"Corben\";}s:9:\"Courgette\";a:2:{s:5:\"label\";s:9:\"Courgette\";s:5:\"value\";s:9:\"Courgette\";}s:7:\"Cousine\";a:2:{s:5:\"label\";s:7:\"Cousine\";s:5:\"value\";s:7:\"Cousine\";}s:8:\"Coustard\";a:2:{s:5:\"label\";s:8:\"Coustard\";s:5:\"value\";s:8:\"Coustard\";}s:21:\"Covered By Your Grace\";a:2:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:5:\"value\";s:21:\"Covered By Your Grace\";}s:12:\"Crafty Girls\";a:2:{s:5:\"label\";s:12:\"Crafty Girls\";s:5:\"value\";s:12:\"Crafty Girls\";}s:9:\"Creepster\";a:2:{s:5:\"label\";s:9:\"Creepster\";s:5:\"value\";s:9:\"Creepster\";}s:11:\"Crete Round\";a:2:{s:5:\"label\";s:11:\"Crete Round\";s:5:\"value\";s:11:\"Crete Round\";}s:12:\"Crimson Text\";a:2:{s:5:\"label\";s:12:\"Crimson Text\";s:5:\"value\";s:12:\"Crimson Text\";}s:7:\"Crushed\";a:2:{s:5:\"label\";s:7:\"Crushed\";s:5:\"value\";s:7:\"Crushed\";}s:6:\"Cuprum\";a:2:{s:5:\"label\";s:6:\"Cuprum\";s:5:\"value\";s:6:\"Cuprum\";}s:6:\"Cutive\";a:2:{s:5:\"label\";s:6:\"Cutive\";s:5:\"value\";s:6:\"Cutive\";}s:6:\"Damion\";a:2:{s:5:\"label\";s:6:\"Damion\";s:5:\"value\";s:6:\"Damion\";}s:14:\"Dancing Script\";a:2:{s:5:\"label\";s:14:\"Dancing Script\";s:5:\"value\";s:14:\"Dancing Script\";}s:7:\"Dangrek\";a:2:{s:5:\"label\";s:7:\"Dangrek\";s:5:\"value\";s:7:\"Dangrek\";}s:20:\"Dawning of a New Day\";a:2:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:5:\"value\";s:20:\"Dawning of a New Day\";}s:8:\"Days One\";a:2:{s:5:\"label\";s:8:\"Days One\";s:5:\"value\";s:8:\"Days One\";}s:6:\"Delius\";a:2:{s:5:\"label\";s:6:\"Delius\";s:5:\"value\";s:6:\"Delius\";}s:17:\"Delius Swash Caps\";a:2:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:5:\"value\";s:17:\"Delius Swash Caps\";}s:14:\"Delius Unicase\";a:2:{s:5:\"label\";s:14:\"Delius Unicase\";s:5:\"value\";s:14:\"Delius Unicase\";}s:13:\"Della Respira\";a:2:{s:5:\"label\";s:13:\"Della Respira\";s:5:\"value\";s:13:\"Della Respira\";}s:10:\"Devonshire\";a:2:{s:5:\"label\";s:10:\"Devonshire\";s:5:\"value\";s:10:\"Devonshire\";}s:13:\"Didact Gothic\";a:2:{s:5:\"label\";s:13:\"Didact Gothic\";s:5:\"value\";s:13:\"Didact Gothic\";}s:9:\"Diplomata\";a:2:{s:5:\"label\";s:9:\"Diplomata\";s:5:\"value\";s:9:\"Diplomata\";}s:12:\"Diplomata SC\";a:2:{s:5:\"label\";s:12:\"Diplomata SC\";s:5:\"value\";s:12:\"Diplomata SC\";}s:10:\"Doppio One\";a:2:{s:5:\"label\";s:10:\"Doppio One\";s:5:\"value\";s:10:\"Doppio One\";}s:5:\"Dorsa\";a:2:{s:5:\"label\";s:5:\"Dorsa\";s:5:\"value\";s:5:\"Dorsa\";}s:5:\"Dosis\";a:2:{s:5:\"label\";s:5:\"Dosis\";s:5:\"value\";s:5:\"Dosis\";}s:11:\"Dr Sugiyama\";a:2:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:5:\"value\";s:11:\"Dr Sugiyama\";}s:10:\"Droid Sans\";a:2:{s:5:\"label\";s:10:\"Droid Sans\";s:5:\"value\";s:10:\"Droid Sans\";}s:15:\"Droid Sans Mono\";a:2:{s:5:\"label\";s:15:\"Droid Sans Mono\";s:5:\"value\";s:15:\"Droid Sans Mono\";}s:11:\"Droid Serif\";a:2:{s:5:\"label\";s:11:\"Droid Serif\";s:5:\"value\";s:11:\"Droid Serif\";}s:9:\"Duru Sans\";a:2:{s:5:\"label\";s:9:\"Duru Sans\";s:5:\"value\";s:9:\"Duru Sans\";}s:9:\"Dynalight\";a:2:{s:5:\"label\";s:9:\"Dynalight\";s:5:\"value\";s:9:\"Dynalight\";}s:11:\"EB Garamond\";a:2:{s:5:\"label\";s:11:\"EB Garamond\";s:5:\"value\";s:11:\"EB Garamond\";}s:10:\"Eagle Lake\";a:2:{s:5:\"label\";s:10:\"Eagle Lake\";s:5:\"value\";s:10:\"Eagle Lake\";}s:5:\"Eater\";a:2:{s:5:\"label\";s:5:\"Eater\";s:5:\"value\";s:5:\"Eater\";}s:9:\"Economica\";a:2:{s:5:\"label\";s:9:\"Economica\";s:5:\"value\";s:9:\"Economica\";}s:11:\"Electrolize\";a:2:{s:5:\"label\";s:11:\"Electrolize\";s:5:\"value\";s:11:\"Electrolize\";}s:11:\"Emblema One\";a:2:{s:5:\"label\";s:11:\"Emblema One\";s:5:\"value\";s:11:\"Emblema One\";}s:12:\"Emilys Candy\";a:2:{s:5:\"label\";s:12:\"Emilys Candy\";s:5:\"value\";s:12:\"Emilys Candy\";}s:10:\"Engagement\";a:2:{s:5:\"label\";s:10:\"Engagement\";s:5:\"value\";s:10:\"Engagement\";}s:9:\"Enriqueta\";a:2:{s:5:\"label\";s:9:\"Enriqueta\";s:5:\"value\";s:9:\"Enriqueta\";}s:9:\"Erica One\";a:2:{s:5:\"label\";s:9:\"Erica One\";s:5:\"value\";s:9:\"Erica One\";}s:7:\"Esteban\";a:2:{s:5:\"label\";s:7:\"Esteban\";s:5:\"value\";s:7:\"Esteban\";}s:15:\"Euphoria Script\";a:2:{s:5:\"label\";s:15:\"Euphoria Script\";s:5:\"value\";s:15:\"Euphoria Script\";}s:5:\"Ewert\";a:2:{s:5:\"label\";s:5:\"Ewert\";s:5:\"value\";s:5:\"Ewert\";}s:3:\"Exo\";a:2:{s:5:\"label\";s:3:\"Exo\";s:5:\"value\";s:3:\"Exo\";}s:13:\"Expletus Sans\";a:2:{s:5:\"label\";s:13:\"Expletus Sans\";s:5:\"value\";s:13:\"Expletus Sans\";}s:12:\"Fanwood Text\";a:2:{s:5:\"label\";s:12:\"Fanwood Text\";s:5:\"value\";s:12:\"Fanwood Text\";}s:9:\"Fascinate\";a:2:{s:5:\"label\";s:9:\"Fascinate\";s:5:\"value\";s:9:\"Fascinate\";}s:16:\"Fascinate Inline\";a:2:{s:5:\"label\";s:16:\"Fascinate Inline\";s:5:\"value\";s:16:\"Fascinate Inline\";}s:8:\"Federant\";a:2:{s:5:\"label\";s:8:\"Federant\";s:5:\"value\";s:8:\"Federant\";}s:6:\"Federo\";a:2:{s:5:\"label\";s:6:\"Federo\";s:5:\"value\";s:6:\"Federo\";}s:6:\"Felipa\";a:2:{s:5:\"label\";s:6:\"Felipa\";s:5:\"value\";s:6:\"Felipa\";}s:9:\"Fjord One\";a:2:{s:5:\"label\";s:9:\"Fjord One\";s:5:\"value\";s:9:\"Fjord One\";}s:8:\"Flamenco\";a:2:{s:5:\"label\";s:8:\"Flamenco\";s:5:\"value\";s:8:\"Flamenco\";}s:7:\"Flavors\";a:2:{s:5:\"label\";s:7:\"Flavors\";s:5:\"value\";s:7:\"Flavors\";}s:10:\"Fondamento\";a:2:{s:5:\"label\";s:10:\"Fondamento\";s:5:\"value\";s:10:\"Fondamento\";}s:16:\"Fontdiner Swanky\";a:2:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:5:\"value\";s:16:\"Fontdiner Swanky\";}s:5:\"Forum\";a:2:{s:5:\"label\";s:5:\"Forum\";s:5:\"value\";s:5:\"Forum\";}s:12:\"Francois One\";a:2:{s:5:\"label\";s:12:\"Francois One\";s:5:\"value\";s:12:\"Francois One\";}s:20:\"Fredericka the Great\";a:2:{s:5:\"label\";s:20:\"Fredericka the Great\";s:5:\"value\";s:20:\"Fredericka the Great\";}s:11:\"Fredoka One\";a:2:{s:5:\"label\";s:11:\"Fredoka One\";s:5:\"value\";s:11:\"Fredoka One\";}s:8:\"Freehand\";a:2:{s:5:\"label\";s:8:\"Freehand\";s:5:\"value\";s:8:\"Freehand\";}s:6:\"Fresca\";a:2:{s:5:\"label\";s:6:\"Fresca\";s:5:\"value\";s:6:\"Fresca\";}s:7:\"Frijole\";a:2:{s:5:\"label\";s:7:\"Frijole\";s:5:\"value\";s:7:\"Frijole\";}s:9:\"Fugaz One\";a:2:{s:5:\"label\";s:9:\"Fugaz One\";s:5:\"value\";s:9:\"Fugaz One\";}s:9:\"GFS Didot\";a:2:{s:5:\"label\";s:9:\"GFS Didot\";s:5:\"value\";s:9:\"GFS Didot\";}s:15:\"GFS Neohellenic\";a:2:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:5:\"value\";s:15:\"GFS Neohellenic\";}s:8:\"Galdeano\";a:2:{s:5:\"label\";s:8:\"Galdeano\";s:5:\"value\";s:8:\"Galdeano\";}s:13:\"Gentium Basic\";a:2:{s:5:\"label\";s:13:\"Gentium Basic\";s:5:\"value\";s:13:\"Gentium Basic\";}s:18:\"Gentium Book Basic\";a:2:{s:5:\"label\";s:18:\"Gentium Book Basic\";s:5:\"value\";s:18:\"Gentium Book Basic\";}s:3:\"Geo\";a:2:{s:5:\"label\";s:3:\"Geo\";s:5:\"value\";s:3:\"Geo\";}s:7:\"Geostar\";a:2:{s:5:\"label\";s:7:\"Geostar\";s:5:\"value\";s:7:\"Geostar\";}s:12:\"Geostar Fill\";a:2:{s:5:\"label\";s:12:\"Geostar Fill\";s:5:\"value\";s:12:\"Geostar Fill\";}s:12:\"Germania One\";a:2:{s:5:\"label\";s:12:\"Germania One\";s:5:\"value\";s:12:\"Germania One\";}s:14:\"Give You Glory\";a:2:{s:5:\"label\";s:14:\"Give You Glory\";s:5:\"value\";s:14:\"Give You Glory\";}s:13:\"Glass Antiqua\";a:2:{s:5:\"label\";s:13:\"Glass Antiqua\";s:5:\"value\";s:13:\"Glass Antiqua\";}s:6:\"Glegoo\";a:2:{s:5:\"label\";s:6:\"Glegoo\";s:5:\"value\";s:6:\"Glegoo\";}s:17:\"Gloria Hallelujah\";a:2:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:5:\"value\";s:17:\"Gloria Hallelujah\";}s:10:\"Goblin One\";a:2:{s:5:\"label\";s:10:\"Goblin One\";s:5:\"value\";s:10:\"Goblin One\";}s:10:\"Gochi Hand\";a:2:{s:5:\"label\";s:10:\"Gochi Hand\";s:5:\"value\";s:10:\"Gochi Hand\";}s:8:\"Gorditas\";a:2:{s:5:\"label\";s:8:\"Gorditas\";s:5:\"value\";s:8:\"Gorditas\";}s:21:\"Goudy Bookletter 1911\";a:2:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:5:\"value\";s:21:\"Goudy Bookletter 1911\";}s:8:\"Graduate\";a:2:{s:5:\"label\";s:8:\"Graduate\";s:5:\"value\";s:8:\"Graduate\";}s:12:\"Gravitas One\";a:2:{s:5:\"label\";s:12:\"Gravitas One\";s:5:\"value\";s:12:\"Gravitas One\";}s:11:\"Great Vibes\";a:2:{s:5:\"label\";s:11:\"Great Vibes\";s:5:\"value\";s:11:\"Great Vibes\";}s:6:\"Gruppo\";a:2:{s:5:\"label\";s:6:\"Gruppo\";s:5:\"value\";s:6:\"Gruppo\";}s:5:\"Gudea\";a:2:{s:5:\"label\";s:5:\"Gudea\";s:5:\"value\";s:5:\"Gudea\";}s:6:\"Habibi\";a:2:{s:5:\"label\";s:6:\"Habibi\";s:5:\"value\";s:6:\"Habibi\";}s:15:\"Hammersmith One\";a:2:{s:5:\"label\";s:15:\"Hammersmith One\";s:5:\"value\";s:15:\"Hammersmith One\";}s:7:\"Handlee\";a:2:{s:5:\"label\";s:7:\"Handlee\";s:5:\"value\";s:7:\"Handlee\";}s:7:\"Hanuman\";a:2:{s:5:\"label\";s:7:\"Hanuman\";s:5:\"value\";s:7:\"Hanuman\";}s:12:\"Happy Monkey\";a:2:{s:5:\"label\";s:12:\"Happy Monkey\";s:5:\"value\";s:12:\"Happy Monkey\";}s:11:\"Henny Penny\";a:2:{s:5:\"label\";s:11:\"Henny Penny\";s:5:\"value\";s:11:\"Henny Penny\";}s:20:\"Herr Von Muellerhoff\";a:2:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:5:\"value\";s:20:\"Herr Von Muellerhoff\";}s:15:\"Holtwood One SC\";a:2:{s:5:\"label\";s:15:\"Holtwood One SC\";s:5:\"value\";s:15:\"Holtwood One SC\";}s:14:\"Homemade Apple\";a:2:{s:5:\"label\";s:14:\"Homemade Apple\";s:5:\"value\";s:14:\"Homemade Apple\";}s:8:\"Homenaje\";a:2:{s:5:\"label\";s:8:\"Homenaje\";s:5:\"value\";s:8:\"Homenaje\";}s:15:\"IM Fell DW Pica\";a:2:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:5:\"value\";s:15:\"IM Fell DW Pica\";}s:18:\"IM Fell DW Pica SC\";a:2:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:5:\"value\";s:18:\"IM Fell DW Pica SC\";}s:19:\"IM Fell Double Pica\";a:2:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:5:\"value\";s:19:\"IM Fell Double Pica\";}s:22:\"IM Fell Double Pica SC\";a:2:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:5:\"value\";s:22:\"IM Fell Double Pica SC\";}s:15:\"IM Fell English\";a:2:{s:5:\"label\";s:15:\"IM Fell English\";s:5:\"value\";s:15:\"IM Fell English\";}s:18:\"IM Fell English SC\";a:2:{s:5:\"label\";s:18:\"IM Fell English SC\";s:5:\"value\";s:18:\"IM Fell English SC\";}s:20:\"IM Fell French Canon\";a:2:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:5:\"value\";s:20:\"IM Fell French Canon\";}s:23:\"IM Fell French Canon SC\";a:2:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:5:\"value\";s:23:\"IM Fell French Canon SC\";}s:20:\"IM Fell Great Primer\";a:2:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:5:\"value\";s:20:\"IM Fell Great Primer\";}s:23:\"IM Fell Great Primer SC\";a:2:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:5:\"value\";s:23:\"IM Fell Great Primer SC\";}s:7:\"Iceberg\";a:2:{s:5:\"label\";s:7:\"Iceberg\";s:5:\"value\";s:7:\"Iceberg\";}s:7:\"Iceland\";a:2:{s:5:\"label\";s:7:\"Iceland\";s:5:\"value\";s:7:\"Iceland\";}s:7:\"Imprima\";a:2:{s:5:\"label\";s:7:\"Imprima\";s:5:\"value\";s:7:\"Imprima\";}s:11:\"Inconsolata\";a:2:{s:5:\"label\";s:11:\"Inconsolata\";s:5:\"value\";s:11:\"Inconsolata\";}s:5:\"Inder\";a:2:{s:5:\"label\";s:5:\"Inder\";s:5:\"value\";s:5:\"Inder\";}s:12:\"Indie Flower\";a:2:{s:5:\"label\";s:12:\"Indie Flower\";s:5:\"value\";s:12:\"Indie Flower\";}s:5:\"Inika\";a:2:{s:5:\"label\";s:5:\"Inika\";s:5:\"value\";s:5:\"Inika\";}s:12:\"Irish Grover\";a:2:{s:5:\"label\";s:12:\"Irish Grover\";s:5:\"value\";s:12:\"Irish Grover\";}s:9:\"Istok Web\";a:2:{s:5:\"label\";s:9:\"Istok Web\";s:5:\"value\";s:9:\"Istok Web\";}s:8:\"Italiana\";a:2:{s:5:\"label\";s:8:\"Italiana\";s:5:\"value\";s:8:\"Italiana\";}s:9:\"Italianno\";a:2:{s:5:\"label\";s:9:\"Italianno\";s:5:\"value\";s:9:\"Italianno\";}s:14:\"Jim Nightshade\";a:2:{s:5:\"label\";s:14:\"Jim Nightshade\";s:5:\"value\";s:14:\"Jim Nightshade\";}s:10:\"Jockey One\";a:2:{s:5:\"label\";s:10:\"Jockey One\";s:5:\"value\";s:10:\"Jockey One\";}s:12:\"Jolly Lodger\";a:2:{s:5:\"label\";s:12:\"Jolly Lodger\";s:5:\"value\";s:12:\"Jolly Lodger\";}s:12:\"Josefin Sans\";a:2:{s:5:\"label\";s:12:\"Josefin Sans\";s:5:\"value\";s:12:\"Josefin Sans\";}s:12:\"Josefin Slab\";a:2:{s:5:\"label\";s:12:\"Josefin Slab\";s:5:\"value\";s:12:\"Josefin Slab\";}s:6:\"Judson\";a:2:{s:5:\"label\";s:6:\"Judson\";s:5:\"value\";s:6:\"Judson\";}s:5:\"Julee\";a:2:{s:5:\"label\";s:5:\"Julee\";s:5:\"value\";s:5:\"Julee\";}s:5:\"Junge\";a:2:{s:5:\"label\";s:5:\"Junge\";s:5:\"value\";s:5:\"Junge\";}s:4:\"Jura\";a:2:{s:5:\"label\";s:4:\"Jura\";s:5:\"value\";s:4:\"Jura\";}s:17:\"Just Another Hand\";a:2:{s:5:\"label\";s:17:\"Just Another Hand\";s:5:\"value\";s:17:\"Just Another Hand\";}s:23:\"Just Me Again Down Here\";a:2:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:5:\"value\";s:23:\"Just Me Again Down Here\";}s:7:\"Kameron\";a:2:{s:5:\"label\";s:7:\"Kameron\";s:5:\"value\";s:7:\"Kameron\";}s:5:\"Karla\";a:2:{s:5:\"label\";s:5:\"Karla\";s:5:\"value\";s:5:\"Karla\";}s:14:\"Kaushan Script\";a:2:{s:5:\"label\";s:14:\"Kaushan Script\";s:5:\"value\";s:14:\"Kaushan Script\";}s:10:\"Kelly Slab\";a:2:{s:5:\"label\";s:10:\"Kelly Slab\";s:5:\"value\";s:10:\"Kelly Slab\";}s:5:\"Kenia\";a:2:{s:5:\"label\";s:5:\"Kenia\";s:5:\"value\";s:5:\"Kenia\";}s:5:\"Khmer\";a:2:{s:5:\"label\";s:5:\"Khmer\";s:5:\"value\";s:5:\"Khmer\";}s:7:\"Knewave\";a:2:{s:5:\"label\";s:7:\"Knewave\";s:5:\"value\";s:7:\"Knewave\";}s:9:\"Kotta One\";a:2:{s:5:\"label\";s:9:\"Kotta One\";s:5:\"value\";s:9:\"Kotta One\";}s:6:\"Koulen\";a:2:{s:5:\"label\";s:6:\"Koulen\";s:5:\"value\";s:6:\"Koulen\";}s:6:\"Kranky\";a:2:{s:5:\"label\";s:6:\"Kranky\";s:5:\"value\";s:6:\"Kranky\";}s:5:\"Kreon\";a:2:{s:5:\"label\";s:5:\"Kreon\";s:5:\"value\";s:5:\"Kreon\";}s:6:\"Kristi\";a:2:{s:5:\"label\";s:6:\"Kristi\";s:5:\"value\";s:6:\"Kristi\";}s:9:\"Krona One\";a:2:{s:5:\"label\";s:9:\"Krona One\";s:5:\"value\";s:9:\"Krona One\";}s:15:\"La Belle Aurore\";a:2:{s:5:\"label\";s:15:\"La Belle Aurore\";s:5:\"value\";s:15:\"La Belle Aurore\";}s:8:\"Lancelot\";a:2:{s:5:\"label\";s:8:\"Lancelot\";s:5:\"value\";s:8:\"Lancelot\";}s:4:\"Lato\";a:2:{s:5:\"label\";s:4:\"Lato\";s:5:\"value\";s:4:\"Lato\";}s:13:\"League Script\";a:2:{s:5:\"label\";s:13:\"League Script\";s:5:\"value\";s:13:\"League Script\";}s:12:\"Leckerli One\";a:2:{s:5:\"label\";s:12:\"Leckerli One\";s:5:\"value\";s:12:\"Leckerli One\";}s:6:\"Ledger\";a:2:{s:5:\"label\";s:6:\"Ledger\";s:5:\"value\";s:6:\"Ledger\";}s:6:\"Lekton\";a:2:{s:5:\"label\";s:6:\"Lekton\";s:5:\"value\";s:6:\"Lekton\";}s:5:\"Lemon\";a:2:{s:5:\"label\";s:5:\"Lemon\";s:5:\"value\";s:5:\"Lemon\";}s:10:\"Lilita One\";a:2:{s:5:\"label\";s:10:\"Lilita One\";s:5:\"value\";s:10:\"Lilita One\";}s:9:\"Limelight\";a:2:{s:5:\"label\";s:9:\"Limelight\";s:5:\"value\";s:9:\"Limelight\";}s:11:\"Linden Hill\";a:2:{s:5:\"label\";s:11:\"Linden Hill\";s:5:\"value\";s:11:\"Linden Hill\";}s:7:\"Lobster\";a:2:{s:5:\"label\";s:7:\"Lobster\";s:5:\"value\";s:7:\"Lobster\";}s:11:\"Lobster Two\";a:2:{s:5:\"label\";s:11:\"Lobster Two\";s:5:\"value\";s:11:\"Lobster Two\";}s:16:\"Londrina Outline\";a:2:{s:5:\"label\";s:16:\"Londrina Outline\";s:5:\"value\";s:16:\"Londrina Outline\";}s:15:\"Londrina Shadow\";a:2:{s:5:\"label\";s:15:\"Londrina Shadow\";s:5:\"value\";s:15:\"Londrina Shadow\";}s:15:\"Londrina Sketch\";a:2:{s:5:\"label\";s:15:\"Londrina Sketch\";s:5:\"value\";s:15:\"Londrina Sketch\";}s:14:\"Londrina Solid\";a:2:{s:5:\"label\";s:14:\"Londrina Solid\";s:5:\"value\";s:14:\"Londrina Solid\";}s:4:\"Lora\";a:2:{s:5:\"label\";s:4:\"Lora\";s:5:\"value\";s:4:\"Lora\";}s:21:\"Love Ya Like A Sister\";a:2:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:5:\"value\";s:21:\"Love Ya Like A Sister\";}s:17:\"Loved by the King\";a:2:{s:5:\"label\";s:17:\"Loved by the King\";s:5:\"value\";s:17:\"Loved by the King\";}s:14:\"Lovers Quarrel\";a:2:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:5:\"value\";s:14:\"Lovers Quarrel\";}s:12:\"Luckiest Guy\";a:2:{s:5:\"label\";s:12:\"Luckiest Guy\";s:5:\"value\";s:12:\"Luckiest Guy\";}s:8:\"Lusitana\";a:2:{s:5:\"label\";s:8:\"Lusitana\";s:5:\"value\";s:8:\"Lusitana\";}s:7:\"Lustria\";a:2:{s:5:\"label\";s:7:\"Lustria\";s:5:\"value\";s:7:\"Lustria\";}s:7:\"Macondo\";a:2:{s:5:\"label\";s:7:\"Macondo\";s:5:\"value\";s:7:\"Macondo\";}s:18:\"Macondo Swash Caps\";a:2:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:5:\"value\";s:18:\"Macondo Swash Caps\";}s:5:\"Magra\";a:2:{s:5:\"label\";s:5:\"Magra\";s:5:\"value\";s:5:\"Magra\";}s:13:\"Maiden Orange\";a:2:{s:5:\"label\";s:13:\"Maiden Orange\";s:5:\"value\";s:13:\"Maiden Orange\";}s:4:\"Mako\";a:2:{s:5:\"label\";s:4:\"Mako\";s:5:\"value\";s:4:\"Mako\";}s:12:\"Marck Script\";a:2:{s:5:\"label\";s:12:\"Marck Script\";s:5:\"value\";s:12:\"Marck Script\";}s:9:\"Marko One\";a:2:{s:5:\"label\";s:9:\"Marko One\";s:5:\"value\";s:9:\"Marko One\";}s:8:\"Marmelad\";a:2:{s:5:\"label\";s:8:\"Marmelad\";s:5:\"value\";s:8:\"Marmelad\";}s:6:\"Marvel\";a:2:{s:5:\"label\";s:6:\"Marvel\";s:5:\"value\";s:6:\"Marvel\";}s:4:\"Mate\";a:2:{s:5:\"label\";s:4:\"Mate\";s:5:\"value\";s:4:\"Mate\";}s:7:\"Mate SC\";a:2:{s:5:\"label\";s:7:\"Mate SC\";s:5:\"value\";s:7:\"Mate SC\";}s:9:\"Maven Pro\";a:2:{s:5:\"label\";s:9:\"Maven Pro\";s:5:\"value\";s:9:\"Maven Pro\";}s:6:\"Meddon\";a:2:{s:5:\"label\";s:6:\"Meddon\";s:5:\"value\";s:6:\"Meddon\";}s:13:\"MedievalSharp\";a:2:{s:5:\"label\";s:13:\"MedievalSharp\";s:5:\"value\";s:13:\"MedievalSharp\";}s:10:\"Medula One\";a:2:{s:5:\"label\";s:10:\"Medula One\";s:5:\"value\";s:10:\"Medula One\";}s:6:\"Megrim\";a:2:{s:5:\"label\";s:6:\"Megrim\";s:5:\"value\";s:6:\"Megrim\";}s:12:\"Merienda One\";a:2:{s:5:\"label\";s:12:\"Merienda One\";s:5:\"value\";s:12:\"Merienda One\";}s:12:\"Merriweather\";a:2:{s:5:\"label\";s:12:\"Merriweather\";s:5:\"value\";s:12:\"Merriweather\";}s:5:\"Metal\";a:2:{s:5:\"label\";s:5:\"Metal\";s:5:\"value\";s:5:\"Metal\";}s:11:\"Metal Mania\";a:2:{s:5:\"label\";s:11:\"Metal Mania\";s:5:\"value\";s:11:\"Metal Mania\";}s:12:\"Metamorphous\";a:2:{s:5:\"label\";s:12:\"Metamorphous\";s:5:\"value\";s:12:\"Metamorphous\";}s:11:\"Metrophobic\";a:2:{s:5:\"label\";s:11:\"Metrophobic\";s:5:\"value\";s:11:\"Metrophobic\";}s:8:\"Michroma\";a:2:{s:5:\"label\";s:8:\"Michroma\";s:5:\"value\";s:8:\"Michroma\";}s:9:\"Miltonian\";a:2:{s:5:\"label\";s:9:\"Miltonian\";s:5:\"value\";s:9:\"Miltonian\";}s:16:\"Miltonian Tattoo\";a:2:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:5:\"value\";s:16:\"Miltonian Tattoo\";}s:7:\"Miniver\";a:2:{s:5:\"label\";s:7:\"Miniver\";s:5:\"value\";s:7:\"Miniver\";}s:14:\"Miss Fajardose\";a:2:{s:5:\"label\";s:14:\"Miss Fajardose\";s:5:\"value\";s:14:\"Miss Fajardose\";}s:14:\"Modern Antiqua\";a:2:{s:5:\"label\";s:14:\"Modern Antiqua\";s:5:\"value\";s:14:\"Modern Antiqua\";}s:7:\"Molengo\";a:2:{s:5:\"label\";s:7:\"Molengo\";s:5:\"value\";s:7:\"Molengo\";}s:8:\"Monofett\";a:2:{s:5:\"label\";s:8:\"Monofett\";s:5:\"value\";s:8:\"Monofett\";}s:7:\"Monoton\";a:2:{s:5:\"label\";s:7:\"Monoton\";s:5:\"value\";s:7:\"Monoton\";}s:20:\"Monsieur La Doulaise\";a:2:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:5:\"value\";s:20:\"Monsieur La Doulaise\";}s:7:\"Montaga\";a:2:{s:5:\"label\";s:7:\"Montaga\";s:5:\"value\";s:7:\"Montaga\";}s:6:\"Montez\";a:2:{s:5:\"label\";s:6:\"Montez\";s:5:\"value\";s:6:\"Montez\";}s:10:\"Montserrat\";a:2:{s:5:\"label\";s:10:\"Montserrat\";s:5:\"value\";s:10:\"Montserrat\";}s:4:\"Moul\";a:2:{s:5:\"label\";s:4:\"Moul\";s:5:\"value\";s:4:\"Moul\";}s:8:\"Moulpali\";a:2:{s:5:\"label\";s:8:\"Moulpali\";s:5:\"value\";s:8:\"Moulpali\";}s:22:\"Mountains of Christmas\";a:2:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:5:\"value\";s:22:\"Mountains of Christmas\";}s:10:\"Mr Bedfort\";a:2:{s:5:\"label\";s:10:\"Mr Bedfort\";s:5:\"value\";s:10:\"Mr Bedfort\";}s:8:\"Mr Dafoe\";a:2:{s:5:\"label\";s:8:\"Mr Dafoe\";s:5:\"value\";s:8:\"Mr Dafoe\";}s:14:\"Mr De Haviland\";a:2:{s:5:\"label\";s:14:\"Mr De Haviland\";s:5:\"value\";s:14:\"Mr De Haviland\";}s:19:\"Mrs Saint Delafield\";a:2:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:5:\"value\";s:19:\"Mrs Saint Delafield\";}s:13:\"Mrs Sheppards\";a:2:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:5:\"value\";s:13:\"Mrs Sheppards\";}s:4:\"Muli\";a:2:{s:5:\"label\";s:4:\"Muli\";s:5:\"value\";s:4:\"Muli\";}s:13:\"Mystery Quest\";a:2:{s:5:\"label\";s:13:\"Mystery Quest\";s:5:\"value\";s:13:\"Mystery Quest\";}s:6:\"Neucha\";a:2:{s:5:\"label\";s:6:\"Neucha\";s:5:\"value\";s:6:\"Neucha\";}s:6:\"Neuton\";a:2:{s:5:\"label\";s:6:\"Neuton\";s:5:\"value\";s:6:\"Neuton\";}s:10:\"News Cycle\";a:2:{s:5:\"label\";s:10:\"News Cycle\";s:5:\"value\";s:10:\"News Cycle\";}s:7:\"Niconne\";a:2:{s:5:\"label\";s:7:\"Niconne\";s:5:\"value\";s:7:\"Niconne\";}s:9:\"Nixie One\";a:2:{s:5:\"label\";s:9:\"Nixie One\";s:5:\"value\";s:9:\"Nixie One\";}s:6:\"Nobile\";a:2:{s:5:\"label\";s:6:\"Nobile\";s:5:\"value\";s:6:\"Nobile\";}s:6:\"Nokora\";a:2:{s:5:\"label\";s:6:\"Nokora\";s:5:\"value\";s:6:\"Nokora\";}s:7:\"Norican\";a:2:{s:5:\"label\";s:7:\"Norican\";s:5:\"value\";s:7:\"Norican\";}s:7:\"Nosifer\";a:2:{s:5:\"label\";s:7:\"Nosifer\";s:5:\"value\";s:7:\"Nosifer\";}s:20:\"Nothing You Could Do\";a:2:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:5:\"value\";s:20:\"Nothing You Could Do\";}s:12:\"Noticia Text\";a:2:{s:5:\"label\";s:12:\"Noticia Text\";s:5:\"value\";s:12:\"Noticia Text\";}s:8:\"Nova Cut\";a:2:{s:5:\"label\";s:8:\"Nova Cut\";s:5:\"value\";s:8:\"Nova Cut\";}s:9:\"Nova Flat\";a:2:{s:5:\"label\";s:9:\"Nova Flat\";s:5:\"value\";s:9:\"Nova Flat\";}s:9:\"Nova Mono\";a:2:{s:5:\"label\";s:9:\"Nova Mono\";s:5:\"value\";s:9:\"Nova Mono\";}s:9:\"Nova Oval\";a:2:{s:5:\"label\";s:9:\"Nova Oval\";s:5:\"value\";s:9:\"Nova Oval\";}s:10:\"Nova Round\";a:2:{s:5:\"label\";s:10:\"Nova Round\";s:5:\"value\";s:10:\"Nova Round\";}s:11:\"Nova Script\";a:2:{s:5:\"label\";s:11:\"Nova Script\";s:5:\"value\";s:11:\"Nova Script\";}s:9:\"Nova Slim\";a:2:{s:5:\"label\";s:9:\"Nova Slim\";s:5:\"value\";s:9:\"Nova Slim\";}s:11:\"Nova Square\";a:2:{s:5:\"label\";s:11:\"Nova Square\";s:5:\"value\";s:11:\"Nova Square\";}s:6:\"Numans\";a:2:{s:5:\"label\";s:6:\"Numans\";s:5:\"value\";s:6:\"Numans\";}s:6:\"Nunito\";a:2:{s:5:\"label\";s:6:\"Nunito\";s:5:\"value\";s:6:\"Nunito\";}s:14:\"Odor Mean Chey\";a:2:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:5:\"value\";s:14:\"Odor Mean Chey\";}s:15:\"Old Standard TT\";a:2:{s:5:\"label\";s:15:\"Old Standard TT\";s:5:\"value\";s:15:\"Old Standard TT\";}s:9:\"Oldenburg\";a:2:{s:5:\"label\";s:9:\"Oldenburg\";s:5:\"value\";s:9:\"Oldenburg\";}s:11:\"Oleo Script\";a:2:{s:5:\"label\";s:11:\"Oleo Script\";s:5:\"value\";s:11:\"Oleo Script\";}s:9:\"Open Sans\";a:2:{s:5:\"label\";s:9:\"Open Sans\";s:5:\"value\";s:9:\"Open Sans\";}s:19:\"Open Sans Condensed\";a:2:{s:5:\"label\";s:19:\"Open Sans Condensed\";s:5:\"value\";s:19:\"Open Sans Condensed\";}s:8:\"Orbitron\";a:2:{s:5:\"label\";s:8:\"Orbitron\";s:5:\"value\";s:8:\"Orbitron\";}s:15:\"Original Surfer\";a:2:{s:5:\"label\";s:15:\"Original Surfer\";s:5:\"value\";s:15:\"Original Surfer\";}s:6:\"Oswald\";a:2:{s:5:\"label\";s:6:\"Oswald\";s:5:\"value\";s:6:\"Oswald\";}s:16:\"Over the Rainbow\";a:2:{s:5:\"label\";s:16:\"Over the Rainbow\";s:5:\"value\";s:16:\"Over the Rainbow\";}s:8:\"Overlock\";a:2:{s:5:\"label\";s:8:\"Overlock\";s:5:\"value\";s:8:\"Overlock\";}s:11:\"Overlock SC\";a:2:{s:5:\"label\";s:11:\"Overlock SC\";s:5:\"value\";s:11:\"Overlock SC\";}s:3:\"Ovo\";a:2:{s:5:\"label\";s:3:\"Ovo\";s:5:\"value\";s:3:\"Ovo\";}s:6:\"Oxygen\";a:2:{s:5:\"label\";s:6:\"Oxygen\";s:5:\"value\";s:6:\"Oxygen\";}s:7:\"PT Mono\";a:2:{s:5:\"label\";s:7:\"PT Mono\";s:5:\"value\";s:7:\"PT Mono\";}s:7:\"PT Sans\";a:2:{s:5:\"label\";s:7:\"PT Sans\";s:5:\"value\";s:7:\"PT Sans\";}s:15:\"PT Sans Caption\";a:2:{s:5:\"label\";s:15:\"PT Sans Caption\";s:5:\"value\";s:15:\"PT Sans Caption\";}s:14:\"PT Sans Narrow\";a:2:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:5:\"value\";s:14:\"PT Sans Narrow\";}s:8:\"PT Serif\";a:2:{s:5:\"label\";s:8:\"PT Serif\";s:5:\"value\";s:8:\"PT Serif\";}s:16:\"PT Serif Caption\";a:2:{s:5:\"label\";s:16:\"PT Serif Caption\";s:5:\"value\";s:16:\"PT Serif Caption\";}s:8:\"Pacifico\";a:2:{s:5:\"label\";s:8:\"Pacifico\";s:5:\"value\";s:8:\"Pacifico\";}s:10:\"Parisienne\";a:2:{s:5:\"label\";s:10:\"Parisienne\";s:5:\"value\";s:10:\"Parisienne\";}s:11:\"Passero One\";a:2:{s:5:\"label\";s:11:\"Passero One\";s:5:\"value\";s:11:\"Passero One\";}s:11:\"Passion One\";a:2:{s:5:\"label\";s:11:\"Passion One\";s:5:\"value\";s:11:\"Passion One\";}s:12:\"Patrick Hand\";a:2:{s:5:\"label\";s:12:\"Patrick Hand\";s:5:\"value\";s:12:\"Patrick Hand\";}s:9:\"Patua One\";a:2:{s:5:\"label\";s:9:\"Patua One\";s:5:\"value\";s:9:\"Patua One\";}s:11:\"Paytone One\";a:2:{s:5:\"label\";s:11:\"Paytone One\";s:5:\"value\";s:11:\"Paytone One\";}s:16:\"Permanent Marker\";a:2:{s:5:\"label\";s:16:\"Permanent Marker\";s:5:\"value\";s:16:\"Permanent Marker\";}s:7:\"Petrona\";a:2:{s:5:\"label\";s:7:\"Petrona\";s:5:\"value\";s:7:\"Petrona\";}s:11:\"Philosopher\";a:2:{s:5:\"label\";s:11:\"Philosopher\";s:5:\"value\";s:11:\"Philosopher\";}s:6:\"Piedra\";a:2:{s:5:\"label\";s:6:\"Piedra\";s:5:\"value\";s:6:\"Piedra\";}s:13:\"Pinyon Script\";a:2:{s:5:\"label\";s:13:\"Pinyon Script\";s:5:\"value\";s:13:\"Pinyon Script\";}s:7:\"Plaster\";a:2:{s:5:\"label\";s:7:\"Plaster\";s:5:\"value\";s:7:\"Plaster\";}s:4:\"Play\";a:2:{s:5:\"label\";s:4:\"Play\";s:5:\"value\";s:4:\"Play\";}s:8:\"Playball\";a:2:{s:5:\"label\";s:8:\"Playball\";s:5:\"value\";s:8:\"Playball\";}s:16:\"Playfair Display\";a:2:{s:5:\"label\";s:16:\"Playfair Display\";s:5:\"value\";s:16:\"Playfair Display\";}s:7:\"Podkova\";a:2:{s:5:\"label\";s:7:\"Podkova\";s:5:\"value\";s:7:\"Podkova\";}s:10:\"Poiret One\";a:2:{s:5:\"label\";s:10:\"Poiret One\";s:5:\"value\";s:10:\"Poiret One\";}s:10:\"Poller One\";a:2:{s:5:\"label\";s:10:\"Poller One\";s:5:\"value\";s:10:\"Poller One\";}s:4:\"Poly\";a:2:{s:5:\"label\";s:4:\"Poly\";s:5:\"value\";s:4:\"Poly\";}s:8:\"Pompiere\";a:2:{s:5:\"label\";s:8:\"Pompiere\";s:5:\"value\";s:8:\"Pompiere\";}s:12:\"Pontano Sans\";a:2:{s:5:\"label\";s:12:\"Pontano Sans\";s:5:\"value\";s:12:\"Pontano Sans\";}s:16:\"Port Lligat Sans\";a:2:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:5:\"value\";s:16:\"Port Lligat Sans\";}s:16:\"Port Lligat Slab\";a:2:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:5:\"value\";s:16:\"Port Lligat Slab\";}s:5:\"Prata\";a:2:{s:5:\"label\";s:5:\"Prata\";s:5:\"value\";s:5:\"Prata\";}s:11:\"Preahvihear\";a:2:{s:5:\"label\";s:11:\"Preahvihear\";s:5:\"value\";s:11:\"Preahvihear\";}s:14:\"Press Start 2P\";a:2:{s:5:\"label\";s:14:\"Press Start 2P\";s:5:\"value\";s:14:\"Press Start 2P\";}s:14:\"Princess Sofia\";a:2:{s:5:\"label\";s:14:\"Princess Sofia\";s:5:\"value\";s:14:\"Princess Sofia\";}s:8:\"Prociono\";a:2:{s:5:\"label\";s:8:\"Prociono\";s:5:\"value\";s:8:\"Prociono\";}s:10:\"Prosto One\";a:2:{s:5:\"label\";s:10:\"Prosto One\";s:5:\"value\";s:10:\"Prosto One\";}s:7:\"Puritan\";a:2:{s:5:\"label\";s:7:\"Puritan\";s:5:\"value\";s:7:\"Puritan\";}s:6:\"Quando\";a:2:{s:5:\"label\";s:6:\"Quando\";s:5:\"value\";s:6:\"Quando\";}s:8:\"Quantico\";a:2:{s:5:\"label\";s:8:\"Quantico\";s:5:\"value\";s:8:\"Quantico\";}s:12:\"Quattrocento\";a:2:{s:5:\"label\";s:12:\"Quattrocento\";s:5:\"value\";s:12:\"Quattrocento\";}s:17:\"Quattrocento Sans\";a:2:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:5:\"value\";s:17:\"Quattrocento Sans\";}s:9:\"Questrial\";a:2:{s:5:\"label\";s:9:\"Questrial\";s:5:\"value\";s:9:\"Questrial\";}s:9:\"Quicksand\";a:2:{s:5:\"label\";s:9:\"Quicksand\";s:5:\"value\";s:9:\"Quicksand\";}s:7:\"Qwigley\";a:2:{s:5:\"label\";s:7:\"Qwigley\";s:5:\"value\";s:7:\"Qwigley\";}s:6:\"Radley\";a:2:{s:5:\"label\";s:6:\"Radley\";s:5:\"value\";s:6:\"Radley\";}s:7:\"Raleway\";a:2:{s:5:\"label\";s:7:\"Raleway\";s:5:\"value\";s:7:\"Raleway\";}s:12:\"Rammetto One\";a:2:{s:5:\"label\";s:12:\"Rammetto One\";s:5:\"value\";s:12:\"Rammetto One\";}s:6:\"Rancho\";a:2:{s:5:\"label\";s:6:\"Rancho\";s:5:\"value\";s:6:\"Rancho\";}s:9:\"Rationale\";a:2:{s:5:\"label\";s:9:\"Rationale\";s:5:\"value\";s:9:\"Rationale\";}s:9:\"Redressed\";a:2:{s:5:\"label\";s:9:\"Redressed\";s:5:\"value\";s:9:\"Redressed\";}s:13:\"Reenie Beanie\";a:2:{s:5:\"label\";s:13:\"Reenie Beanie\";s:5:\"value\";s:13:\"Reenie Beanie\";}s:7:\"Revalia\";a:2:{s:5:\"label\";s:7:\"Revalia\";s:5:\"value\";s:7:\"Revalia\";}s:6:\"Ribeye\";a:2:{s:5:\"label\";s:6:\"Ribeye\";s:5:\"value\";s:6:\"Ribeye\";}s:13:\"Ribeye Marrow\";a:2:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:5:\"value\";s:13:\"Ribeye Marrow\";}s:9:\"Righteous\";a:2:{s:5:\"label\";s:9:\"Righteous\";s:5:\"value\";s:9:\"Righteous\";}s:9:\"Rochester\";a:2:{s:5:\"label\";s:9:\"Rochester\";s:5:\"value\";s:9:\"Rochester\";}s:9:\"Rock Salt\";a:2:{s:5:\"label\";s:9:\"Rock Salt\";s:5:\"value\";s:9:\"Rock Salt\";}s:7:\"Rokkitt\";a:2:{s:5:\"label\";s:7:\"Rokkitt\";s:5:\"value\";s:7:\"Rokkitt\";}s:9:\"Ropa Sans\";a:2:{s:5:\"label\";s:9:\"Ropa Sans\";s:5:\"value\";s:9:\"Ropa Sans\";}s:7:\"Rosario\";a:2:{s:5:\"label\";s:7:\"Rosario\";s:5:\"value\";s:7:\"Rosario\";}s:8:\"Rosarivo\";a:2:{s:5:\"label\";s:8:\"Rosarivo\";s:5:\"value\";s:8:\"Rosarivo\";}s:12:\"Rouge Script\";a:2:{s:5:\"label\";s:12:\"Rouge Script\";s:5:\"value\";s:12:\"Rouge Script\";}s:4:\"Ruda\";a:2:{s:5:\"label\";s:4:\"Ruda\";s:5:\"value\";s:4:\"Ruda\";}s:11:\"Ruge Boogie\";a:2:{s:5:\"label\";s:11:\"Ruge Boogie\";s:5:\"value\";s:11:\"Ruge Boogie\";}s:6:\"Ruluko\";a:2:{s:5:\"label\";s:6:\"Ruluko\";s:5:\"value\";s:6:\"Ruluko\";}s:14:\"Ruslan Display\";a:2:{s:5:\"label\";s:14:\"Ruslan Display\";s:5:\"value\";s:14:\"Ruslan Display\";}s:9:\"Russo One\";a:2:{s:5:\"label\";s:9:\"Russo One\";s:5:\"value\";s:9:\"Russo One\";}s:6:\"Ruthie\";a:2:{s:5:\"label\";s:6:\"Ruthie\";s:5:\"value\";s:6:\"Ruthie\";}s:4:\"Sail\";a:2:{s:5:\"label\";s:4:\"Sail\";s:5:\"value\";s:4:\"Sail\";}s:5:\"Salsa\";a:2:{s:5:\"label\";s:5:\"Salsa\";s:5:\"value\";s:5:\"Salsa\";}s:8:\"Sancreek\";a:2:{s:5:\"label\";s:8:\"Sancreek\";s:5:\"value\";s:8:\"Sancreek\";}s:11:\"Sansita One\";a:2:{s:5:\"label\";s:11:\"Sansita One\";s:5:\"value\";s:11:\"Sansita One\";}s:6:\"Sarina\";a:2:{s:5:\"label\";s:6:\"Sarina\";s:5:\"value\";s:6:\"Sarina\";}s:7:\"Satisfy\";a:2:{s:5:\"label\";s:7:\"Satisfy\";s:5:\"value\";s:7:\"Satisfy\";}s:10:\"Schoolbell\";a:2:{s:5:\"label\";s:10:\"Schoolbell\";s:5:\"value\";s:10:\"Schoolbell\";}s:14:\"Seaweed Script\";a:2:{s:5:\"label\";s:14:\"Seaweed Script\";s:5:\"value\";s:14:\"Seaweed Script\";}s:9:\"Sevillana\";a:2:{s:5:\"label\";s:9:\"Sevillana\";s:5:\"value\";s:9:\"Sevillana\";}s:18:\"Shadows Into Light\";a:2:{s:5:\"label\";s:18:\"Shadows Into Light\";s:5:\"value\";s:18:\"Shadows Into Light\";}s:22:\"Shadows Into Light Two\";a:2:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:5:\"value\";s:22:\"Shadows Into Light Two\";}s:6:\"Shanti\";a:2:{s:5:\"label\";s:6:\"Shanti\";s:5:\"value\";s:6:\"Shanti\";}s:5:\"Share\";a:2:{s:5:\"label\";s:5:\"Share\";s:5:\"value\";s:5:\"Share\";}s:9:\"Shojumaru\";a:2:{s:5:\"label\";s:9:\"Shojumaru\";s:5:\"value\";s:9:\"Shojumaru\";}s:11:\"Short Stack\";a:2:{s:5:\"label\";s:11:\"Short Stack\";s:5:\"value\";s:11:\"Short Stack\";}s:8:\"Siemreap\";a:2:{s:5:\"label\";s:8:\"Siemreap\";s:5:\"value\";s:8:\"Siemreap\";}s:10:\"Sigmar One\";a:2:{s:5:\"label\";s:10:\"Sigmar One\";s:5:\"value\";s:10:\"Sigmar One\";}s:7:\"Signika\";a:2:{s:5:\"label\";s:7:\"Signika\";s:5:\"value\";s:7:\"Signika\";}s:16:\"Signika Negative\";a:2:{s:5:\"label\";s:16:\"Signika Negative\";s:5:\"value\";s:16:\"Signika Negative\";}s:9:\"Simonetta\";a:2:{s:5:\"label\";s:9:\"Simonetta\";s:5:\"value\";s:9:\"Simonetta\";}s:13:\"Sirin Stencil\";a:2:{s:5:\"label\";s:13:\"Sirin Stencil\";s:5:\"value\";s:13:\"Sirin Stencil\";}s:8:\"Six Caps\";a:2:{s:5:\"label\";s:8:\"Six Caps\";s:5:\"value\";s:8:\"Six Caps\";}s:7:\"Slackey\";a:2:{s:5:\"label\";s:7:\"Slackey\";s:5:\"value\";s:7:\"Slackey\";}s:6:\"Smokum\";a:2:{s:5:\"label\";s:6:\"Smokum\";s:5:\"value\";s:6:\"Smokum\";}s:6:\"Smythe\";a:2:{s:5:\"label\";s:6:\"Smythe\";s:5:\"value\";s:6:\"Smythe\";}s:7:\"Sniglet\";a:2:{s:5:\"label\";s:7:\"Sniglet\";s:5:\"value\";s:7:\"Sniglet\";}s:7:\"Snippet\";a:2:{s:5:\"label\";s:7:\"Snippet\";s:5:\"value\";s:7:\"Snippet\";}s:5:\"Sofia\";a:2:{s:5:\"label\";s:5:\"Sofia\";s:5:\"value\";s:5:\"Sofia\";}s:10:\"Sonsie One\";a:2:{s:5:\"label\";s:10:\"Sonsie One\";s:5:\"value\";s:10:\"Sonsie One\";}s:16:\"Sorts Mill Goudy\";a:2:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:5:\"value\";s:16:\"Sorts Mill Goudy\";}s:15:\"Source Sans Pro\";a:2:{s:5:\"label\";s:15:\"Source Sans Pro\";s:5:\"value\";s:15:\"Source Sans Pro\";}s:13:\"Special Elite\";a:2:{s:5:\"label\";s:13:\"Special Elite\";s:5:\"value\";s:13:\"Special Elite\";}s:10:\"Spicy Rice\";a:2:{s:5:\"label\";s:10:\"Spicy Rice\";s:5:\"value\";s:10:\"Spicy Rice\";}s:9:\"Spinnaker\";a:2:{s:5:\"label\";s:9:\"Spinnaker\";s:5:\"value\";s:9:\"Spinnaker\";}s:6:\"Spirax\";a:2:{s:5:\"label\";s:6:\"Spirax\";s:5:\"value\";s:6:\"Spirax\";}s:10:\"Squada One\";a:2:{s:5:\"label\";s:10:\"Squada One\";s:5:\"value\";s:10:\"Squada One\";}s:15:\"Stardos Stencil\";a:2:{s:5:\"label\";s:15:\"Stardos Stencil\";s:5:\"value\";s:15:\"Stardos Stencil\";}s:21:\"Stint Ultra Condensed\";a:2:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:5:\"value\";s:21:\"Stint Ultra Condensed\";}s:20:\"Stint Ultra Expanded\";a:2:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:5:\"value\";s:20:\"Stint Ultra Expanded\";}s:5:\"Stoke\";a:2:{s:5:\"label\";s:5:\"Stoke\";s:5:\"value\";s:5:\"Stoke\";}s:19:\"Sue Ellen Francisco\";a:2:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:5:\"value\";s:19:\"Sue Ellen Francisco\";}s:9:\"Sunshiney\";a:2:{s:5:\"label\";s:9:\"Sunshiney\";s:5:\"value\";s:9:\"Sunshiney\";}s:16:\"Supermercado One\";a:2:{s:5:\"label\";s:16:\"Supermercado One\";s:5:\"value\";s:16:\"Supermercado One\";}s:11:\"Suwannaphum\";a:2:{s:5:\"label\";s:11:\"Suwannaphum\";s:5:\"value\";s:11:\"Suwannaphum\";}s:18:\"Swanky and Moo Moo\";a:2:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:5:\"value\";s:18:\"Swanky and Moo Moo\";}s:9:\"Syncopate\";a:2:{s:5:\"label\";s:9:\"Syncopate\";s:5:\"value\";s:9:\"Syncopate\";}s:9:\"Tangerine\";a:2:{s:5:\"label\";s:9:\"Tangerine\";s:5:\"value\";s:9:\"Tangerine\";}s:6:\"Taprom\";a:2:{s:5:\"label\";s:6:\"Taprom\";s:5:\"value\";s:6:\"Taprom\";}s:5:\"Telex\";a:2:{s:5:\"label\";s:5:\"Telex\";s:5:\"value\";s:5:\"Telex\";}s:10:\"Tenor Sans\";a:2:{s:5:\"label\";s:10:\"Tenor Sans\";s:5:\"value\";s:10:\"Tenor Sans\";}s:18:\"The Girl Next Door\";a:2:{s:5:\"label\";s:18:\"The Girl Next Door\";s:5:\"value\";s:18:\"The Girl Next Door\";}s:6:\"Tienne\";a:2:{s:5:\"label\";s:6:\"Tienne\";s:5:\"value\";s:6:\"Tienne\";}s:5:\"Tinos\";a:2:{s:5:\"label\";s:5:\"Tinos\";s:5:\"value\";s:5:\"Tinos\";}s:9:\"Titan One\";a:2:{s:5:\"label\";s:9:\"Titan One\";s:5:\"value\";s:9:\"Titan One\";}s:11:\"Trade Winds\";a:2:{s:5:\"label\";s:11:\"Trade Winds\";s:5:\"value\";s:11:\"Trade Winds\";}s:7:\"Trocchi\";a:2:{s:5:\"label\";s:7:\"Trocchi\";s:5:\"value\";s:7:\"Trocchi\";}s:7:\"Trochut\";a:2:{s:5:\"label\";s:7:\"Trochut\";s:5:\"value\";s:7:\"Trochut\";}s:7:\"Trykker\";a:2:{s:5:\"label\";s:7:\"Trykker\";s:5:\"value\";s:7:\"Trykker\";}s:10:\"Tulpen One\";a:2:{s:5:\"label\";s:10:\"Tulpen One\";s:5:\"value\";s:10:\"Tulpen One\";}s:6:\"Ubuntu\";a:2:{s:5:\"label\";s:6:\"Ubuntu\";s:5:\"value\";s:6:\"Ubuntu\";}s:16:\"Ubuntu Condensed\";a:2:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:5:\"value\";s:16:\"Ubuntu Condensed\";}s:11:\"Ubuntu Mono\";a:2:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:5:\"value\";s:11:\"Ubuntu Mono\";}s:5:\"Ultra\";a:2:{s:5:\"label\";s:5:\"Ultra\";s:5:\"value\";s:5:\"Ultra\";}s:14:\"Uncial Antiqua\";a:2:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:5:\"value\";s:14:\"Uncial Antiqua\";}s:14:\"UnifrakturCook\";a:2:{s:5:\"label\";s:14:\"UnifrakturCook\";s:5:\"value\";s:14:\"UnifrakturCook\";}s:18:\"UnifrakturMaguntia\";a:2:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:5:\"value\";s:18:\"UnifrakturMaguntia\";}s:7:\"Unkempt\";a:2:{s:5:\"label\";s:7:\"Unkempt\";s:5:\"value\";s:7:\"Unkempt\";}s:6:\"Unlock\";a:2:{s:5:\"label\";s:6:\"Unlock\";s:5:\"value\";s:6:\"Unlock\";}s:4:\"Unna\";a:2:{s:5:\"label\";s:4:\"Unna\";s:5:\"value\";s:4:\"Unna\";}s:5:\"VT323\";a:2:{s:5:\"label\";s:5:\"VT323\";s:5:\"value\";s:5:\"VT323\";}s:6:\"Varela\";a:2:{s:5:\"label\";s:6:\"Varela\";s:5:\"value\";s:6:\"Varela\";}s:12:\"Varela Round\";a:2:{s:5:\"label\";s:12:\"Varela Round\";s:5:\"value\";s:12:\"Varela Round\";}s:11:\"Vast Shadow\";a:2:{s:5:\"label\";s:11:\"Vast Shadow\";s:5:\"value\";s:11:\"Vast Shadow\";}s:5:\"Vibur\";a:2:{s:5:\"label\";s:5:\"Vibur\";s:5:\"value\";s:5:\"Vibur\";}s:8:\"Vidaloka\";a:2:{s:5:\"label\";s:8:\"Vidaloka\";s:5:\"value\";s:8:\"Vidaloka\";}s:4:\"Viga\";a:2:{s:5:\"label\";s:4:\"Viga\";s:5:\"value\";s:4:\"Viga\";}s:5:\"Voces\";a:2:{s:5:\"label\";s:5:\"Voces\";s:5:\"value\";s:5:\"Voces\";}s:7:\"Volkhov\";a:2:{s:5:\"label\";s:7:\"Volkhov\";s:5:\"value\";s:7:\"Volkhov\";}s:8:\"Vollkorn\";a:2:{s:5:\"label\";s:8:\"Vollkorn\";s:5:\"value\";s:8:\"Vollkorn\";}s:8:\"Voltaire\";a:2:{s:5:\"label\";s:8:\"Voltaire\";s:5:\"value\";s:8:\"Voltaire\";}s:23:\"Waiting for the Sunrise\";a:2:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:5:\"value\";s:23:\"Waiting for the Sunrise\";}s:8:\"Wallpoet\";a:2:{s:5:\"label\";s:8:\"Wallpoet\";s:5:\"value\";s:8:\"Wallpoet\";}s:15:\"Walter Turncoat\";a:2:{s:5:\"label\";s:15:\"Walter Turncoat\";s:5:\"value\";s:15:\"Walter Turncoat\";}s:9:\"Wellfleet\";a:2:{s:5:\"label\";s:9:\"Wellfleet\";s:5:\"value\";s:9:\"Wellfleet\";}s:8:\"Wire One\";a:2:{s:5:\"label\";s:8:\"Wire One\";s:5:\"value\";s:8:\"Wire One\";}s:17:\"Yanone Kaffeesatz\";a:2:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:5:\"value\";s:17:\"Yanone Kaffeesatz\";}s:10:\"Yellowtail\";a:2:{s:5:\"label\";s:10:\"Yellowtail\";s:5:\"value\";s:10:\"Yellowtail\";}s:10:\"Yeseva One\";a:2:{s:5:\"label\";s:10:\"Yeseva One\";s:5:\"value\";s:10:\"Yeseva One\";}s:10:\"Yesteryear\";a:2:{s:5:\"label\";s:10:\"Yesteryear\";s:5:\"value\";s:10:\"Yesteryear\";}s:6:\"Zeyada\";a:2:{s:5:\"label\";s:6:\"Zeyada\";s:5:\"value\";s:6:\"Zeyada\";}}}i:40;a:7:{s:2:\"id\";s:19:\"choose_counter_font\";s:5:\"label\";s:19:\"Choose counter font\";s:4:\"desc\";s:49:\"Here you can assign the font for countdown timer.\";s:3:\"std\";s:7:\"Raleway\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:17:\"design_and_layout\";s:7:\"choices\";a:530:{s:4:\"Abel\";a:2:{s:5:\"label\";s:4:\"Abel\";s:5:\"value\";s:4:\"Abel\";}s:13:\"Abril Fatface\";a:2:{s:5:\"label\";s:13:\"Abril Fatface\";s:5:\"value\";s:13:\"Abril Fatface\";}s:8:\"Aclonica\";a:2:{s:5:\"label\";s:8:\"Aclonica\";s:5:\"value\";s:8:\"Aclonica\";}s:4:\"Acme\";a:2:{s:5:\"label\";s:4:\"Acme\";s:5:\"value\";s:4:\"Acme\";}s:5:\"Actor\";a:2:{s:5:\"label\";s:5:\"Actor\";s:5:\"value\";s:5:\"Actor\";}s:7:\"Adamina\";a:2:{s:5:\"label\";s:7:\"Adamina\";s:5:\"value\";s:7:\"Adamina\";}s:10:\"Advent Pro\";a:2:{s:5:\"label\";s:10:\"Advent Pro\";s:5:\"value\";s:10:\"Advent Pro\";}s:15:\"Aguafina Script\";a:2:{s:5:\"label\";s:15:\"Aguafina Script\";s:5:\"value\";s:15:\"Aguafina Script\";}s:6:\"Aladin\";a:2:{s:5:\"label\";s:6:\"Aladin\";s:5:\"value\";s:6:\"Aladin\";}s:7:\"Aldrich\";a:2:{s:5:\"label\";s:7:\"Aldrich\";s:5:\"value\";s:7:\"Aldrich\";}s:8:\"Alegreya\";a:2:{s:5:\"label\";s:8:\"Alegreya\";s:5:\"value\";s:8:\"Alegreya\";}s:11:\"Alegreya SC\";a:2:{s:5:\"label\";s:11:\"Alegreya SC\";s:5:\"value\";s:11:\"Alegreya SC\";}s:10:\"Alex Brush\";a:2:{s:5:\"label\";s:10:\"Alex Brush\";s:5:\"value\";s:10:\"Alex Brush\";}s:13:\"Alfa Slab One\";a:2:{s:5:\"label\";s:13:\"Alfa Slab One\";s:5:\"value\";s:13:\"Alfa Slab One\";}s:5:\"Alice\";a:2:{s:5:\"label\";s:5:\"Alice\";s:5:\"value\";s:5:\"Alice\";}s:5:\"Alike\";a:2:{s:5:\"label\";s:5:\"Alike\";s:5:\"value\";s:5:\"Alike\";}s:13:\"Alike Angular\";a:2:{s:5:\"label\";s:13:\"Alike Angular\";s:5:\"value\";s:13:\"Alike Angular\";}s:5:\"Allan\";a:2:{s:5:\"label\";s:5:\"Allan\";s:5:\"value\";s:5:\"Allan\";}s:7:\"Allerta\";a:2:{s:5:\"label\";s:7:\"Allerta\";s:5:\"value\";s:7:\"Allerta\";}s:15:\"Allerta Stencil\";a:2:{s:5:\"label\";s:15:\"Allerta Stencil\";s:5:\"value\";s:15:\"Allerta Stencil\";}s:6:\"Allura\";a:2:{s:5:\"label\";s:6:\"Allura\";s:5:\"value\";s:6:\"Allura\";}s:8:\"Almendra\";a:2:{s:5:\"label\";s:8:\"Almendra\";s:5:\"value\";s:8:\"Almendra\";}s:11:\"Almendra SC\";a:2:{s:5:\"label\";s:11:\"Almendra SC\";s:5:\"value\";s:11:\"Almendra SC\";}s:8:\"Amarante\";a:2:{s:5:\"label\";s:8:\"Amarante\";s:5:\"value\";s:8:\"Amarante\";}s:8:\"Amaranth\";a:2:{s:5:\"label\";s:8:\"Amaranth\";s:5:\"value\";s:8:\"Amaranth\";}s:9:\"Amatic SC\";a:2:{s:5:\"label\";s:9:\"Amatic SC\";s:5:\"value\";s:9:\"Amatic SC\";}s:9:\"Amethysta\";a:2:{s:5:\"label\";s:9:\"Amethysta\";s:5:\"value\";s:9:\"Amethysta\";}s:6:\"Andada\";a:2:{s:5:\"label\";s:6:\"Andada\";s:5:\"value\";s:6:\"Andada\";}s:6:\"Andika\";a:2:{s:5:\"label\";s:6:\"Andika\";s:5:\"value\";s:6:\"Andika\";}s:6:\"Angkor\";a:2:{s:5:\"label\";s:6:\"Angkor\";s:5:\"value\";s:6:\"Angkor\";}s:24:\"Annie Use Your Telescope\";a:2:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:5:\"value\";s:24:\"Annie Use Your Telescope\";}s:13:\"Anonymous Pro\";a:2:{s:5:\"label\";s:13:\"Anonymous Pro\";s:5:\"value\";s:13:\"Anonymous Pro\";}s:5:\"Antic\";a:2:{s:5:\"label\";s:5:\"Antic\";s:5:\"value\";s:5:\"Antic\";}s:12:\"Antic Didone\";a:2:{s:5:\"label\";s:12:\"Antic Didone\";s:5:\"value\";s:12:\"Antic Didone\";}s:10:\"Antic Slab\";a:2:{s:5:\"label\";s:10:\"Antic Slab\";s:5:\"value\";s:10:\"Antic Slab\";}s:5:\"Anton\";a:2:{s:5:\"label\";s:5:\"Anton\";s:5:\"value\";s:5:\"Anton\";}s:6:\"Arapey\";a:2:{s:5:\"label\";s:6:\"Arapey\";s:5:\"value\";s:6:\"Arapey\";}s:7:\"Arbutus\";a:2:{s:5:\"label\";s:7:\"Arbutus\";s:5:\"value\";s:7:\"Arbutus\";}s:19:\"Architects Daughter\";a:2:{s:5:\"label\";s:19:\"Architects Daughter\";s:5:\"value\";s:19:\"Architects Daughter\";}s:5:\"Arimo\";a:2:{s:5:\"label\";s:5:\"Arimo\";s:5:\"value\";s:5:\"Arimo\";}s:8:\"Arizonia\";a:2:{s:5:\"label\";s:8:\"Arizonia\";s:5:\"value\";s:8:\"Arizonia\";}s:6:\"Armata\";a:2:{s:5:\"label\";s:6:\"Armata\";s:5:\"value\";s:6:\"Armata\";}s:8:\"Artifika\";a:2:{s:5:\"label\";s:8:\"Artifika\";s:5:\"value\";s:8:\"Artifika\";}s:4:\"Arvo\";a:2:{s:5:\"label\";s:4:\"Arvo\";s:5:\"value\";s:4:\"Arvo\";}s:4:\"Asap\";a:2:{s:5:\"label\";s:4:\"Asap\";s:5:\"value\";s:4:\"Asap\";}s:5:\"Asset\";a:2:{s:5:\"label\";s:5:\"Asset\";s:5:\"value\";s:5:\"Asset\";}s:7:\"Astloch\";a:2:{s:5:\"label\";s:7:\"Astloch\";s:5:\"value\";s:7:\"Astloch\";}s:4:\"Asul\";a:2:{s:5:\"label\";s:4:\"Asul\";s:5:\"value\";s:4:\"Asul\";}s:10:\"Atomic Age\";a:2:{s:5:\"label\";s:10:\"Atomic Age\";s:5:\"value\";s:10:\"Atomic Age\";}s:6:\"Aubrey\";a:2:{s:5:\"label\";s:6:\"Aubrey\";s:5:\"value\";s:6:\"Aubrey\";}s:9:\"Audiowide\";a:2:{s:5:\"label\";s:9:\"Audiowide\";s:5:\"value\";s:9:\"Audiowide\";}s:7:\"Average\";a:2:{s:5:\"label\";s:7:\"Average\";s:5:\"value\";s:7:\"Average\";}s:19:\"Averia Gruesa Libre\";a:2:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:5:\"value\";s:19:\"Averia Gruesa Libre\";}s:12:\"Averia Libre\";a:2:{s:5:\"label\";s:12:\"Averia Libre\";s:5:\"value\";s:12:\"Averia Libre\";}s:17:\"Averia Sans Libre\";a:2:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:5:\"value\";s:17:\"Averia Sans Libre\";}s:18:\"Averia Serif Libre\";a:2:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:5:\"value\";s:18:\"Averia Serif Libre\";}s:10:\"Bad Script\";a:2:{s:5:\"label\";s:10:\"Bad Script\";s:5:\"value\";s:10:\"Bad Script\";}s:9:\"Balthazar\";a:2:{s:5:\"label\";s:9:\"Balthazar\";s:5:\"value\";s:9:\"Balthazar\";}s:7:\"Bangers\";a:2:{s:5:\"label\";s:7:\"Bangers\";s:5:\"value\";s:7:\"Bangers\";}s:5:\"Basic\";a:2:{s:5:\"label\";s:5:\"Basic\";s:5:\"value\";s:5:\"Basic\";}s:10:\"Battambang\";a:2:{s:5:\"label\";s:10:\"Battambang\";s:5:\"value\";s:10:\"Battambang\";}s:7:\"Baumans\";a:2:{s:5:\"label\";s:7:\"Baumans\";s:5:\"value\";s:7:\"Baumans\";}s:5:\"Bayon\";a:2:{s:5:\"label\";s:5:\"Bayon\";s:5:\"value\";s:5:\"Bayon\";}s:8:\"Belgrano\";a:2:{s:5:\"label\";s:8:\"Belgrano\";s:5:\"value\";s:8:\"Belgrano\";}s:7:\"Belleza\";a:2:{s:5:\"label\";s:7:\"Belleza\";s:5:\"value\";s:7:\"Belleza\";}s:7:\"Bentham\";a:2:{s:5:\"label\";s:7:\"Bentham\";s:5:\"value\";s:7:\"Bentham\";}s:15:\"Berkshire Swash\";a:2:{s:5:\"label\";s:15:\"Berkshire Swash\";s:5:\"value\";s:15:\"Berkshire Swash\";}s:5:\"Bevan\";a:2:{s:5:\"label\";s:5:\"Bevan\";s:5:\"value\";s:5:\"Bevan\";}s:11:\"Bigshot One\";a:2:{s:5:\"label\";s:11:\"Bigshot One\";s:5:\"value\";s:11:\"Bigshot One\";}s:5:\"Bilbo\";a:2:{s:5:\"label\";s:5:\"Bilbo\";s:5:\"value\";s:5:\"Bilbo\";}s:16:\"Bilbo Swash Caps\";a:2:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:5:\"value\";s:16:\"Bilbo Swash Caps\";}s:6:\"Bitter\";a:2:{s:5:\"label\";s:6:\"Bitter\";s:5:\"value\";s:6:\"Bitter\";}s:13:\"Black Ops One\";a:2:{s:5:\"label\";s:13:\"Black Ops One\";s:5:\"value\";s:13:\"Black Ops One\";}s:5:\"Bokor\";a:2:{s:5:\"label\";s:5:\"Bokor\";s:5:\"value\";s:5:\"Bokor\";}s:6:\"Bonbon\";a:2:{s:5:\"label\";s:6:\"Bonbon\";s:5:\"value\";s:6:\"Bonbon\";}s:8:\"Boogaloo\";a:2:{s:5:\"label\";s:8:\"Boogaloo\";s:5:\"value\";s:8:\"Boogaloo\";}s:10:\"Bowlby One\";a:2:{s:5:\"label\";s:10:\"Bowlby One\";s:5:\"value\";s:10:\"Bowlby One\";}s:13:\"Bowlby One SC\";a:2:{s:5:\"label\";s:13:\"Bowlby One SC\";s:5:\"value\";s:13:\"Bowlby One SC\";}s:7:\"Brawler\";a:2:{s:5:\"label\";s:7:\"Brawler\";s:5:\"value\";s:7:\"Brawler\";}s:10:\"Bree Serif\";a:2:{s:5:\"label\";s:10:\"Bree Serif\";s:5:\"value\";s:10:\"Bree Serif\";}s:14:\"Bubblegum Sans\";a:2:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:5:\"value\";s:14:\"Bubblegum Sans\";}s:4:\"Buda\";a:2:{s:5:\"label\";s:4:\"Buda\";s:5:\"value\";s:4:\"Buda\";}s:7:\"Buenard\";a:2:{s:5:\"label\";s:7:\"Buenard\";s:5:\"value\";s:7:\"Buenard\";}s:10:\"Butcherman\";a:2:{s:5:\"label\";s:10:\"Butcherman\";s:5:\"value\";s:10:\"Butcherman\";}s:14:\"Butterfly Kids\";a:2:{s:5:\"label\";s:14:\"Butterfly Kids\";s:5:\"value\";s:14:\"Butterfly Kids\";}s:5:\"Cabin\";a:2:{s:5:\"label\";s:5:\"Cabin\";s:5:\"value\";s:5:\"Cabin\";}s:15:\"Cabin Condensed\";a:2:{s:5:\"label\";s:15:\"Cabin Condensed\";s:5:\"value\";s:15:\"Cabin Condensed\";}s:12:\"Cabin Sketch\";a:2:{s:5:\"label\";s:12:\"Cabin Sketch\";s:5:\"value\";s:12:\"Cabin Sketch\";}s:15:\"Caesar Dressing\";a:2:{s:5:\"label\";s:15:\"Caesar Dressing\";s:5:\"value\";s:15:\"Caesar Dressing\";}s:10:\"Cagliostro\";a:2:{s:5:\"label\";s:10:\"Cagliostro\";s:5:\"value\";s:10:\"Cagliostro\";}s:14:\"Calligraffitti\";a:2:{s:5:\"label\";s:14:\"Calligraffitti\";s:5:\"value\";s:14:\"Calligraffitti\";}s:5:\"Cambo\";a:2:{s:5:\"label\";s:5:\"Cambo\";s:5:\"value\";s:5:\"Cambo\";}s:6:\"Candal\";a:2:{s:5:\"label\";s:6:\"Candal\";s:5:\"value\";s:6:\"Candal\";}s:9:\"Cantarell\";a:2:{s:5:\"label\";s:9:\"Cantarell\";s:5:\"value\";s:9:\"Cantarell\";}s:11:\"Cantata One\";a:2:{s:5:\"label\";s:11:\"Cantata One\";s:5:\"value\";s:11:\"Cantata One\";}s:8:\"Capriola\";a:2:{s:5:\"label\";s:8:\"Capriola\";s:5:\"value\";s:8:\"Capriola\";}s:5:\"Cardo\";a:2:{s:5:\"label\";s:5:\"Cardo\";s:5:\"value\";s:5:\"Cardo\";}s:5:\"Carme\";a:2:{s:5:\"label\";s:5:\"Carme\";s:5:\"value\";s:5:\"Carme\";}s:10:\"Carter One\";a:2:{s:5:\"label\";s:10:\"Carter One\";s:5:\"value\";s:10:\"Carter One\";}s:6:\"Caudex\";a:2:{s:5:\"label\";s:6:\"Caudex\";s:5:\"value\";s:6:\"Caudex\";}s:18:\"Cedarville Cursive\";a:2:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:5:\"value\";s:18:\"Cedarville Cursive\";}s:11:\"Ceviche One\";a:2:{s:5:\"label\";s:11:\"Ceviche One\";s:5:\"value\";s:11:\"Ceviche One\";}s:10:\"Changa One\";a:2:{s:5:\"label\";s:10:\"Changa One\";s:5:\"value\";s:10:\"Changa One\";}s:6:\"Chango\";a:2:{s:5:\"label\";s:6:\"Chango\";s:5:\"value\";s:6:\"Chango\";}s:18:\"Chau Philomene One\";a:2:{s:5:\"label\";s:18:\"Chau Philomene One\";s:5:\"value\";s:18:\"Chau Philomene One\";}s:14:\"Chelsea Market\";a:2:{s:5:\"label\";s:14:\"Chelsea Market\";s:5:\"value\";s:14:\"Chelsea Market\";}s:6:\"Chenla\";a:2:{s:5:\"label\";s:6:\"Chenla\";s:5:\"value\";s:6:\"Chenla\";}s:17:\"Cherry Cream Soda\";a:2:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:5:\"value\";s:17:\"Cherry Cream Soda\";}s:5:\"Chewy\";a:2:{s:5:\"label\";s:5:\"Chewy\";s:5:\"value\";s:5:\"Chewy\";}s:6:\"Chicle\";a:2:{s:5:\"label\";s:6:\"Chicle\";s:5:\"value\";s:6:\"Chicle\";}s:5:\"Chivo\";a:2:{s:5:\"label\";s:5:\"Chivo\";s:5:\"value\";s:5:\"Chivo\";}s:4:\"Coda\";a:2:{s:5:\"label\";s:4:\"Coda\";s:5:\"value\";s:4:\"Coda\";}s:12:\"Coda Caption\";a:2:{s:5:\"label\";s:12:\"Coda Caption\";s:5:\"value\";s:12:\"Coda Caption\";}s:8:\"Codystar\";a:2:{s:5:\"label\";s:8:\"Codystar\";s:5:\"value\";s:8:\"Codystar\";}s:9:\"Comfortaa\";a:2:{s:5:\"label\";s:9:\"Comfortaa\";s:5:\"value\";s:9:\"Comfortaa\";}s:11:\"Coming Soon\";a:2:{s:5:\"label\";s:11:\"Coming Soon\";s:5:\"value\";s:11:\"Coming Soon\";}s:11:\"Concert One\";a:2:{s:5:\"label\";s:11:\"Concert One\";s:5:\"value\";s:11:\"Concert One\";}s:9:\"Condiment\";a:2:{s:5:\"label\";s:9:\"Condiment\";s:5:\"value\";s:9:\"Condiment\";}s:7:\"Content\";a:2:{s:5:\"label\";s:7:\"Content\";s:5:\"value\";s:7:\"Content\";}s:12:\"Contrail One\";a:2:{s:5:\"label\";s:12:\"Contrail One\";s:5:\"value\";s:12:\"Contrail One\";}s:11:\"Convergence\";a:2:{s:5:\"label\";s:11:\"Convergence\";s:5:\"value\";s:11:\"Convergence\";}s:6:\"Cookie\";a:2:{s:5:\"label\";s:6:\"Cookie\";s:5:\"value\";s:6:\"Cookie\";}s:5:\"Copse\";a:2:{s:5:\"label\";s:5:\"Copse\";s:5:\"value\";s:5:\"Copse\";}s:6:\"Corben\";a:2:{s:5:\"label\";s:6:\"Corben\";s:5:\"value\";s:6:\"Corben\";}s:9:\"Courgette\";a:2:{s:5:\"label\";s:9:\"Courgette\";s:5:\"value\";s:9:\"Courgette\";}s:7:\"Cousine\";a:2:{s:5:\"label\";s:7:\"Cousine\";s:5:\"value\";s:7:\"Cousine\";}s:8:\"Coustard\";a:2:{s:5:\"label\";s:8:\"Coustard\";s:5:\"value\";s:8:\"Coustard\";}s:21:\"Covered By Your Grace\";a:2:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:5:\"value\";s:21:\"Covered By Your Grace\";}s:12:\"Crafty Girls\";a:2:{s:5:\"label\";s:12:\"Crafty Girls\";s:5:\"value\";s:12:\"Crafty Girls\";}s:9:\"Creepster\";a:2:{s:5:\"label\";s:9:\"Creepster\";s:5:\"value\";s:9:\"Creepster\";}s:11:\"Crete Round\";a:2:{s:5:\"label\";s:11:\"Crete Round\";s:5:\"value\";s:11:\"Crete Round\";}s:12:\"Crimson Text\";a:2:{s:5:\"label\";s:12:\"Crimson Text\";s:5:\"value\";s:12:\"Crimson Text\";}s:7:\"Crushed\";a:2:{s:5:\"label\";s:7:\"Crushed\";s:5:\"value\";s:7:\"Crushed\";}s:6:\"Cuprum\";a:2:{s:5:\"label\";s:6:\"Cuprum\";s:5:\"value\";s:6:\"Cuprum\";}s:6:\"Cutive\";a:2:{s:5:\"label\";s:6:\"Cutive\";s:5:\"value\";s:6:\"Cutive\";}s:6:\"Damion\";a:2:{s:5:\"label\";s:6:\"Damion\";s:5:\"value\";s:6:\"Damion\";}s:14:\"Dancing Script\";a:2:{s:5:\"label\";s:14:\"Dancing Script\";s:5:\"value\";s:14:\"Dancing Script\";}s:7:\"Dangrek\";a:2:{s:5:\"label\";s:7:\"Dangrek\";s:5:\"value\";s:7:\"Dangrek\";}s:20:\"Dawning of a New Day\";a:2:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:5:\"value\";s:20:\"Dawning of a New Day\";}s:8:\"Days One\";a:2:{s:5:\"label\";s:8:\"Days One\";s:5:\"value\";s:8:\"Days One\";}s:6:\"Delius\";a:2:{s:5:\"label\";s:6:\"Delius\";s:5:\"value\";s:6:\"Delius\";}s:17:\"Delius Swash Caps\";a:2:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:5:\"value\";s:17:\"Delius Swash Caps\";}s:14:\"Delius Unicase\";a:2:{s:5:\"label\";s:14:\"Delius Unicase\";s:5:\"value\";s:14:\"Delius Unicase\";}s:13:\"Della Respira\";a:2:{s:5:\"label\";s:13:\"Della Respira\";s:5:\"value\";s:13:\"Della Respira\";}s:10:\"Devonshire\";a:2:{s:5:\"label\";s:10:\"Devonshire\";s:5:\"value\";s:10:\"Devonshire\";}s:13:\"Didact Gothic\";a:2:{s:5:\"label\";s:13:\"Didact Gothic\";s:5:\"value\";s:13:\"Didact Gothic\";}s:9:\"Diplomata\";a:2:{s:5:\"label\";s:9:\"Diplomata\";s:5:\"value\";s:9:\"Diplomata\";}s:12:\"Diplomata SC\";a:2:{s:5:\"label\";s:12:\"Diplomata SC\";s:5:\"value\";s:12:\"Diplomata SC\";}s:10:\"Doppio One\";a:2:{s:5:\"label\";s:10:\"Doppio One\";s:5:\"value\";s:10:\"Doppio One\";}s:5:\"Dorsa\";a:2:{s:5:\"label\";s:5:\"Dorsa\";s:5:\"value\";s:5:\"Dorsa\";}s:5:\"Dosis\";a:2:{s:5:\"label\";s:5:\"Dosis\";s:5:\"value\";s:5:\"Dosis\";}s:11:\"Dr Sugiyama\";a:2:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:5:\"value\";s:11:\"Dr Sugiyama\";}s:10:\"Droid Sans\";a:2:{s:5:\"label\";s:10:\"Droid Sans\";s:5:\"value\";s:10:\"Droid Sans\";}s:15:\"Droid Sans Mono\";a:2:{s:5:\"label\";s:15:\"Droid Sans Mono\";s:5:\"value\";s:15:\"Droid Sans Mono\";}s:11:\"Droid Serif\";a:2:{s:5:\"label\";s:11:\"Droid Serif\";s:5:\"value\";s:11:\"Droid Serif\";}s:9:\"Duru Sans\";a:2:{s:5:\"label\";s:9:\"Duru Sans\";s:5:\"value\";s:9:\"Duru Sans\";}s:9:\"Dynalight\";a:2:{s:5:\"label\";s:9:\"Dynalight\";s:5:\"value\";s:9:\"Dynalight\";}s:11:\"EB Garamond\";a:2:{s:5:\"label\";s:11:\"EB Garamond\";s:5:\"value\";s:11:\"EB Garamond\";}s:10:\"Eagle Lake\";a:2:{s:5:\"label\";s:10:\"Eagle Lake\";s:5:\"value\";s:10:\"Eagle Lake\";}s:5:\"Eater\";a:2:{s:5:\"label\";s:5:\"Eater\";s:5:\"value\";s:5:\"Eater\";}s:9:\"Economica\";a:2:{s:5:\"label\";s:9:\"Economica\";s:5:\"value\";s:9:\"Economica\";}s:11:\"Electrolize\";a:2:{s:5:\"label\";s:11:\"Electrolize\";s:5:\"value\";s:11:\"Electrolize\";}s:11:\"Emblema One\";a:2:{s:5:\"label\";s:11:\"Emblema One\";s:5:\"value\";s:11:\"Emblema One\";}s:12:\"Emilys Candy\";a:2:{s:5:\"label\";s:12:\"Emilys Candy\";s:5:\"value\";s:12:\"Emilys Candy\";}s:10:\"Engagement\";a:2:{s:5:\"label\";s:10:\"Engagement\";s:5:\"value\";s:10:\"Engagement\";}s:9:\"Enriqueta\";a:2:{s:5:\"label\";s:9:\"Enriqueta\";s:5:\"value\";s:9:\"Enriqueta\";}s:9:\"Erica One\";a:2:{s:5:\"label\";s:9:\"Erica One\";s:5:\"value\";s:9:\"Erica One\";}s:7:\"Esteban\";a:2:{s:5:\"label\";s:7:\"Esteban\";s:5:\"value\";s:7:\"Esteban\";}s:15:\"Euphoria Script\";a:2:{s:5:\"label\";s:15:\"Euphoria Script\";s:5:\"value\";s:15:\"Euphoria Script\";}s:5:\"Ewert\";a:2:{s:5:\"label\";s:5:\"Ewert\";s:5:\"value\";s:5:\"Ewert\";}s:3:\"Exo\";a:2:{s:5:\"label\";s:3:\"Exo\";s:5:\"value\";s:3:\"Exo\";}s:13:\"Expletus Sans\";a:2:{s:5:\"label\";s:13:\"Expletus Sans\";s:5:\"value\";s:13:\"Expletus Sans\";}s:12:\"Fanwood Text\";a:2:{s:5:\"label\";s:12:\"Fanwood Text\";s:5:\"value\";s:12:\"Fanwood Text\";}s:9:\"Fascinate\";a:2:{s:5:\"label\";s:9:\"Fascinate\";s:5:\"value\";s:9:\"Fascinate\";}s:16:\"Fascinate Inline\";a:2:{s:5:\"label\";s:16:\"Fascinate Inline\";s:5:\"value\";s:16:\"Fascinate Inline\";}s:8:\"Federant\";a:2:{s:5:\"label\";s:8:\"Federant\";s:5:\"value\";s:8:\"Federant\";}s:6:\"Federo\";a:2:{s:5:\"label\";s:6:\"Federo\";s:5:\"value\";s:6:\"Federo\";}s:6:\"Felipa\";a:2:{s:5:\"label\";s:6:\"Felipa\";s:5:\"value\";s:6:\"Felipa\";}s:9:\"Fjord One\";a:2:{s:5:\"label\";s:9:\"Fjord One\";s:5:\"value\";s:9:\"Fjord One\";}s:8:\"Flamenco\";a:2:{s:5:\"label\";s:8:\"Flamenco\";s:5:\"value\";s:8:\"Flamenco\";}s:7:\"Flavors\";a:2:{s:5:\"label\";s:7:\"Flavors\";s:5:\"value\";s:7:\"Flavors\";}s:10:\"Fondamento\";a:2:{s:5:\"label\";s:10:\"Fondamento\";s:5:\"value\";s:10:\"Fondamento\";}s:16:\"Fontdiner Swanky\";a:2:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:5:\"value\";s:16:\"Fontdiner Swanky\";}s:5:\"Forum\";a:2:{s:5:\"label\";s:5:\"Forum\";s:5:\"value\";s:5:\"Forum\";}s:12:\"Francois One\";a:2:{s:5:\"label\";s:12:\"Francois One\";s:5:\"value\";s:12:\"Francois One\";}s:20:\"Fredericka the Great\";a:2:{s:5:\"label\";s:20:\"Fredericka the Great\";s:5:\"value\";s:20:\"Fredericka the Great\";}s:11:\"Fredoka One\";a:2:{s:5:\"label\";s:11:\"Fredoka One\";s:5:\"value\";s:11:\"Fredoka One\";}s:8:\"Freehand\";a:2:{s:5:\"label\";s:8:\"Freehand\";s:5:\"value\";s:8:\"Freehand\";}s:6:\"Fresca\";a:2:{s:5:\"label\";s:6:\"Fresca\";s:5:\"value\";s:6:\"Fresca\";}s:7:\"Frijole\";a:2:{s:5:\"label\";s:7:\"Frijole\";s:5:\"value\";s:7:\"Frijole\";}s:9:\"Fugaz One\";a:2:{s:5:\"label\";s:9:\"Fugaz One\";s:5:\"value\";s:9:\"Fugaz One\";}s:9:\"GFS Didot\";a:2:{s:5:\"label\";s:9:\"GFS Didot\";s:5:\"value\";s:9:\"GFS Didot\";}s:15:\"GFS Neohellenic\";a:2:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:5:\"value\";s:15:\"GFS Neohellenic\";}s:8:\"Galdeano\";a:2:{s:5:\"label\";s:8:\"Galdeano\";s:5:\"value\";s:8:\"Galdeano\";}s:13:\"Gentium Basic\";a:2:{s:5:\"label\";s:13:\"Gentium Basic\";s:5:\"value\";s:13:\"Gentium Basic\";}s:18:\"Gentium Book Basic\";a:2:{s:5:\"label\";s:18:\"Gentium Book Basic\";s:5:\"value\";s:18:\"Gentium Book Basic\";}s:3:\"Geo\";a:2:{s:5:\"label\";s:3:\"Geo\";s:5:\"value\";s:3:\"Geo\";}s:7:\"Geostar\";a:2:{s:5:\"label\";s:7:\"Geostar\";s:5:\"value\";s:7:\"Geostar\";}s:12:\"Geostar Fill\";a:2:{s:5:\"label\";s:12:\"Geostar Fill\";s:5:\"value\";s:12:\"Geostar Fill\";}s:12:\"Germania One\";a:2:{s:5:\"label\";s:12:\"Germania One\";s:5:\"value\";s:12:\"Germania One\";}s:14:\"Give You Glory\";a:2:{s:5:\"label\";s:14:\"Give You Glory\";s:5:\"value\";s:14:\"Give You Glory\";}s:13:\"Glass Antiqua\";a:2:{s:5:\"label\";s:13:\"Glass Antiqua\";s:5:\"value\";s:13:\"Glass Antiqua\";}s:6:\"Glegoo\";a:2:{s:5:\"label\";s:6:\"Glegoo\";s:5:\"value\";s:6:\"Glegoo\";}s:17:\"Gloria Hallelujah\";a:2:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:5:\"value\";s:17:\"Gloria Hallelujah\";}s:10:\"Goblin One\";a:2:{s:5:\"label\";s:10:\"Goblin One\";s:5:\"value\";s:10:\"Goblin One\";}s:10:\"Gochi Hand\";a:2:{s:5:\"label\";s:10:\"Gochi Hand\";s:5:\"value\";s:10:\"Gochi Hand\";}s:8:\"Gorditas\";a:2:{s:5:\"label\";s:8:\"Gorditas\";s:5:\"value\";s:8:\"Gorditas\";}s:21:\"Goudy Bookletter 1911\";a:2:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:5:\"value\";s:21:\"Goudy Bookletter 1911\";}s:8:\"Graduate\";a:2:{s:5:\"label\";s:8:\"Graduate\";s:5:\"value\";s:8:\"Graduate\";}s:12:\"Gravitas One\";a:2:{s:5:\"label\";s:12:\"Gravitas One\";s:5:\"value\";s:12:\"Gravitas One\";}s:11:\"Great Vibes\";a:2:{s:5:\"label\";s:11:\"Great Vibes\";s:5:\"value\";s:11:\"Great Vibes\";}s:6:\"Gruppo\";a:2:{s:5:\"label\";s:6:\"Gruppo\";s:5:\"value\";s:6:\"Gruppo\";}s:5:\"Gudea\";a:2:{s:5:\"label\";s:5:\"Gudea\";s:5:\"value\";s:5:\"Gudea\";}s:6:\"Habibi\";a:2:{s:5:\"label\";s:6:\"Habibi\";s:5:\"value\";s:6:\"Habibi\";}s:15:\"Hammersmith One\";a:2:{s:5:\"label\";s:15:\"Hammersmith One\";s:5:\"value\";s:15:\"Hammersmith One\";}s:7:\"Handlee\";a:2:{s:5:\"label\";s:7:\"Handlee\";s:5:\"value\";s:7:\"Handlee\";}s:7:\"Hanuman\";a:2:{s:5:\"label\";s:7:\"Hanuman\";s:5:\"value\";s:7:\"Hanuman\";}s:12:\"Happy Monkey\";a:2:{s:5:\"label\";s:12:\"Happy Monkey\";s:5:\"value\";s:12:\"Happy Monkey\";}s:11:\"Henny Penny\";a:2:{s:5:\"label\";s:11:\"Henny Penny\";s:5:\"value\";s:11:\"Henny Penny\";}s:20:\"Herr Von Muellerhoff\";a:2:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:5:\"value\";s:20:\"Herr Von Muellerhoff\";}s:15:\"Holtwood One SC\";a:2:{s:5:\"label\";s:15:\"Holtwood One SC\";s:5:\"value\";s:15:\"Holtwood One SC\";}s:14:\"Homemade Apple\";a:2:{s:5:\"label\";s:14:\"Homemade Apple\";s:5:\"value\";s:14:\"Homemade Apple\";}s:8:\"Homenaje\";a:2:{s:5:\"label\";s:8:\"Homenaje\";s:5:\"value\";s:8:\"Homenaje\";}s:15:\"IM Fell DW Pica\";a:2:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:5:\"value\";s:15:\"IM Fell DW Pica\";}s:18:\"IM Fell DW Pica SC\";a:2:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:5:\"value\";s:18:\"IM Fell DW Pica SC\";}s:19:\"IM Fell Double Pica\";a:2:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:5:\"value\";s:19:\"IM Fell Double Pica\";}s:22:\"IM Fell Double Pica SC\";a:2:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:5:\"value\";s:22:\"IM Fell Double Pica SC\";}s:15:\"IM Fell English\";a:2:{s:5:\"label\";s:15:\"IM Fell English\";s:5:\"value\";s:15:\"IM Fell English\";}s:18:\"IM Fell English SC\";a:2:{s:5:\"label\";s:18:\"IM Fell English SC\";s:5:\"value\";s:18:\"IM Fell English SC\";}s:20:\"IM Fell French Canon\";a:2:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:5:\"value\";s:20:\"IM Fell French Canon\";}s:23:\"IM Fell French Canon SC\";a:2:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:5:\"value\";s:23:\"IM Fell French Canon SC\";}s:20:\"IM Fell Great Primer\";a:2:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:5:\"value\";s:20:\"IM Fell Great Primer\";}s:23:\"IM Fell Great Primer SC\";a:2:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:5:\"value\";s:23:\"IM Fell Great Primer SC\";}s:7:\"Iceberg\";a:2:{s:5:\"label\";s:7:\"Iceberg\";s:5:\"value\";s:7:\"Iceberg\";}s:7:\"Iceland\";a:2:{s:5:\"label\";s:7:\"Iceland\";s:5:\"value\";s:7:\"Iceland\";}s:7:\"Imprima\";a:2:{s:5:\"label\";s:7:\"Imprima\";s:5:\"value\";s:7:\"Imprima\";}s:11:\"Inconsolata\";a:2:{s:5:\"label\";s:11:\"Inconsolata\";s:5:\"value\";s:11:\"Inconsolata\";}s:5:\"Inder\";a:2:{s:5:\"label\";s:5:\"Inder\";s:5:\"value\";s:5:\"Inder\";}s:12:\"Indie Flower\";a:2:{s:5:\"label\";s:12:\"Indie Flower\";s:5:\"value\";s:12:\"Indie Flower\";}s:5:\"Inika\";a:2:{s:5:\"label\";s:5:\"Inika\";s:5:\"value\";s:5:\"Inika\";}s:12:\"Irish Grover\";a:2:{s:5:\"label\";s:12:\"Irish Grover\";s:5:\"value\";s:12:\"Irish Grover\";}s:9:\"Istok Web\";a:2:{s:5:\"label\";s:9:\"Istok Web\";s:5:\"value\";s:9:\"Istok Web\";}s:8:\"Italiana\";a:2:{s:5:\"label\";s:8:\"Italiana\";s:5:\"value\";s:8:\"Italiana\";}s:9:\"Italianno\";a:2:{s:5:\"label\";s:9:\"Italianno\";s:5:\"value\";s:9:\"Italianno\";}s:14:\"Jim Nightshade\";a:2:{s:5:\"label\";s:14:\"Jim Nightshade\";s:5:\"value\";s:14:\"Jim Nightshade\";}s:10:\"Jockey One\";a:2:{s:5:\"label\";s:10:\"Jockey One\";s:5:\"value\";s:10:\"Jockey One\";}s:12:\"Jolly Lodger\";a:2:{s:5:\"label\";s:12:\"Jolly Lodger\";s:5:\"value\";s:12:\"Jolly Lodger\";}s:12:\"Josefin Sans\";a:2:{s:5:\"label\";s:12:\"Josefin Sans\";s:5:\"value\";s:12:\"Josefin Sans\";}s:12:\"Josefin Slab\";a:2:{s:5:\"label\";s:12:\"Josefin Slab\";s:5:\"value\";s:12:\"Josefin Slab\";}s:6:\"Judson\";a:2:{s:5:\"label\";s:6:\"Judson\";s:5:\"value\";s:6:\"Judson\";}s:5:\"Julee\";a:2:{s:5:\"label\";s:5:\"Julee\";s:5:\"value\";s:5:\"Julee\";}s:5:\"Junge\";a:2:{s:5:\"label\";s:5:\"Junge\";s:5:\"value\";s:5:\"Junge\";}s:4:\"Jura\";a:2:{s:5:\"label\";s:4:\"Jura\";s:5:\"value\";s:4:\"Jura\";}s:17:\"Just Another Hand\";a:2:{s:5:\"label\";s:17:\"Just Another Hand\";s:5:\"value\";s:17:\"Just Another Hand\";}s:23:\"Just Me Again Down Here\";a:2:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:5:\"value\";s:23:\"Just Me Again Down Here\";}s:7:\"Kameron\";a:2:{s:5:\"label\";s:7:\"Kameron\";s:5:\"value\";s:7:\"Kameron\";}s:5:\"Karla\";a:2:{s:5:\"label\";s:5:\"Karla\";s:5:\"value\";s:5:\"Karla\";}s:14:\"Kaushan Script\";a:2:{s:5:\"label\";s:14:\"Kaushan Script\";s:5:\"value\";s:14:\"Kaushan Script\";}s:10:\"Kelly Slab\";a:2:{s:5:\"label\";s:10:\"Kelly Slab\";s:5:\"value\";s:10:\"Kelly Slab\";}s:5:\"Kenia\";a:2:{s:5:\"label\";s:5:\"Kenia\";s:5:\"value\";s:5:\"Kenia\";}s:5:\"Khmer\";a:2:{s:5:\"label\";s:5:\"Khmer\";s:5:\"value\";s:5:\"Khmer\";}s:7:\"Knewave\";a:2:{s:5:\"label\";s:7:\"Knewave\";s:5:\"value\";s:7:\"Knewave\";}s:9:\"Kotta One\";a:2:{s:5:\"label\";s:9:\"Kotta One\";s:5:\"value\";s:9:\"Kotta One\";}s:6:\"Koulen\";a:2:{s:5:\"label\";s:6:\"Koulen\";s:5:\"value\";s:6:\"Koulen\";}s:6:\"Kranky\";a:2:{s:5:\"label\";s:6:\"Kranky\";s:5:\"value\";s:6:\"Kranky\";}s:5:\"Kreon\";a:2:{s:5:\"label\";s:5:\"Kreon\";s:5:\"value\";s:5:\"Kreon\";}s:6:\"Kristi\";a:2:{s:5:\"label\";s:6:\"Kristi\";s:5:\"value\";s:6:\"Kristi\";}s:9:\"Krona One\";a:2:{s:5:\"label\";s:9:\"Krona One\";s:5:\"value\";s:9:\"Krona One\";}s:15:\"La Belle Aurore\";a:2:{s:5:\"label\";s:15:\"La Belle Aurore\";s:5:\"value\";s:15:\"La Belle Aurore\";}s:8:\"Lancelot\";a:2:{s:5:\"label\";s:8:\"Lancelot\";s:5:\"value\";s:8:\"Lancelot\";}s:4:\"Lato\";a:2:{s:5:\"label\";s:4:\"Lato\";s:5:\"value\";s:4:\"Lato\";}s:13:\"League Script\";a:2:{s:5:\"label\";s:13:\"League Script\";s:5:\"value\";s:13:\"League Script\";}s:12:\"Leckerli One\";a:2:{s:5:\"label\";s:12:\"Leckerli One\";s:5:\"value\";s:12:\"Leckerli One\";}s:6:\"Ledger\";a:2:{s:5:\"label\";s:6:\"Ledger\";s:5:\"value\";s:6:\"Ledger\";}s:6:\"Lekton\";a:2:{s:5:\"label\";s:6:\"Lekton\";s:5:\"value\";s:6:\"Lekton\";}s:5:\"Lemon\";a:2:{s:5:\"label\";s:5:\"Lemon\";s:5:\"value\";s:5:\"Lemon\";}s:10:\"Lilita One\";a:2:{s:5:\"label\";s:10:\"Lilita One\";s:5:\"value\";s:10:\"Lilita One\";}s:9:\"Limelight\";a:2:{s:5:\"label\";s:9:\"Limelight\";s:5:\"value\";s:9:\"Limelight\";}s:11:\"Linden Hill\";a:2:{s:5:\"label\";s:11:\"Linden Hill\";s:5:\"value\";s:11:\"Linden Hill\";}s:7:\"Lobster\";a:2:{s:5:\"label\";s:7:\"Lobster\";s:5:\"value\";s:7:\"Lobster\";}s:11:\"Lobster Two\";a:2:{s:5:\"label\";s:11:\"Lobster Two\";s:5:\"value\";s:11:\"Lobster Two\";}s:16:\"Londrina Outline\";a:2:{s:5:\"label\";s:16:\"Londrina Outline\";s:5:\"value\";s:16:\"Londrina Outline\";}s:15:\"Londrina Shadow\";a:2:{s:5:\"label\";s:15:\"Londrina Shadow\";s:5:\"value\";s:15:\"Londrina Shadow\";}s:15:\"Londrina Sketch\";a:2:{s:5:\"label\";s:15:\"Londrina Sketch\";s:5:\"value\";s:15:\"Londrina Sketch\";}s:14:\"Londrina Solid\";a:2:{s:5:\"label\";s:14:\"Londrina Solid\";s:5:\"value\";s:14:\"Londrina Solid\";}s:4:\"Lora\";a:2:{s:5:\"label\";s:4:\"Lora\";s:5:\"value\";s:4:\"Lora\";}s:21:\"Love Ya Like A Sister\";a:2:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:5:\"value\";s:21:\"Love Ya Like A Sister\";}s:17:\"Loved by the King\";a:2:{s:5:\"label\";s:17:\"Loved by the King\";s:5:\"value\";s:17:\"Loved by the King\";}s:14:\"Lovers Quarrel\";a:2:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:5:\"value\";s:14:\"Lovers Quarrel\";}s:12:\"Luckiest Guy\";a:2:{s:5:\"label\";s:12:\"Luckiest Guy\";s:5:\"value\";s:12:\"Luckiest Guy\";}s:8:\"Lusitana\";a:2:{s:5:\"label\";s:8:\"Lusitana\";s:5:\"value\";s:8:\"Lusitana\";}s:7:\"Lustria\";a:2:{s:5:\"label\";s:7:\"Lustria\";s:5:\"value\";s:7:\"Lustria\";}s:7:\"Macondo\";a:2:{s:5:\"label\";s:7:\"Macondo\";s:5:\"value\";s:7:\"Macondo\";}s:18:\"Macondo Swash Caps\";a:2:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:5:\"value\";s:18:\"Macondo Swash Caps\";}s:5:\"Magra\";a:2:{s:5:\"label\";s:5:\"Magra\";s:5:\"value\";s:5:\"Magra\";}s:13:\"Maiden Orange\";a:2:{s:5:\"label\";s:13:\"Maiden Orange\";s:5:\"value\";s:13:\"Maiden Orange\";}s:4:\"Mako\";a:2:{s:5:\"label\";s:4:\"Mako\";s:5:\"value\";s:4:\"Mako\";}s:12:\"Marck Script\";a:2:{s:5:\"label\";s:12:\"Marck Script\";s:5:\"value\";s:12:\"Marck Script\";}s:9:\"Marko One\";a:2:{s:5:\"label\";s:9:\"Marko One\";s:5:\"value\";s:9:\"Marko One\";}s:8:\"Marmelad\";a:2:{s:5:\"label\";s:8:\"Marmelad\";s:5:\"value\";s:8:\"Marmelad\";}s:6:\"Marvel\";a:2:{s:5:\"label\";s:6:\"Marvel\";s:5:\"value\";s:6:\"Marvel\";}s:4:\"Mate\";a:2:{s:5:\"label\";s:4:\"Mate\";s:5:\"value\";s:4:\"Mate\";}s:7:\"Mate SC\";a:2:{s:5:\"label\";s:7:\"Mate SC\";s:5:\"value\";s:7:\"Mate SC\";}s:9:\"Maven Pro\";a:2:{s:5:\"label\";s:9:\"Maven Pro\";s:5:\"value\";s:9:\"Maven Pro\";}s:6:\"Meddon\";a:2:{s:5:\"label\";s:6:\"Meddon\";s:5:\"value\";s:6:\"Meddon\";}s:13:\"MedievalSharp\";a:2:{s:5:\"label\";s:13:\"MedievalSharp\";s:5:\"value\";s:13:\"MedievalSharp\";}s:10:\"Medula One\";a:2:{s:5:\"label\";s:10:\"Medula One\";s:5:\"value\";s:10:\"Medula One\";}s:6:\"Megrim\";a:2:{s:5:\"label\";s:6:\"Megrim\";s:5:\"value\";s:6:\"Megrim\";}s:12:\"Merienda One\";a:2:{s:5:\"label\";s:12:\"Merienda One\";s:5:\"value\";s:12:\"Merienda One\";}s:12:\"Merriweather\";a:2:{s:5:\"label\";s:12:\"Merriweather\";s:5:\"value\";s:12:\"Merriweather\";}s:5:\"Metal\";a:2:{s:5:\"label\";s:5:\"Metal\";s:5:\"value\";s:5:\"Metal\";}s:11:\"Metal Mania\";a:2:{s:5:\"label\";s:11:\"Metal Mania\";s:5:\"value\";s:11:\"Metal Mania\";}s:12:\"Metamorphous\";a:2:{s:5:\"label\";s:12:\"Metamorphous\";s:5:\"value\";s:12:\"Metamorphous\";}s:11:\"Metrophobic\";a:2:{s:5:\"label\";s:11:\"Metrophobic\";s:5:\"value\";s:11:\"Metrophobic\";}s:8:\"Michroma\";a:2:{s:5:\"label\";s:8:\"Michroma\";s:5:\"value\";s:8:\"Michroma\";}s:9:\"Miltonian\";a:2:{s:5:\"label\";s:9:\"Miltonian\";s:5:\"value\";s:9:\"Miltonian\";}s:16:\"Miltonian Tattoo\";a:2:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:5:\"value\";s:16:\"Miltonian Tattoo\";}s:7:\"Miniver\";a:2:{s:5:\"label\";s:7:\"Miniver\";s:5:\"value\";s:7:\"Miniver\";}s:14:\"Miss Fajardose\";a:2:{s:5:\"label\";s:14:\"Miss Fajardose\";s:5:\"value\";s:14:\"Miss Fajardose\";}s:14:\"Modern Antiqua\";a:2:{s:5:\"label\";s:14:\"Modern Antiqua\";s:5:\"value\";s:14:\"Modern Antiqua\";}s:7:\"Molengo\";a:2:{s:5:\"label\";s:7:\"Molengo\";s:5:\"value\";s:7:\"Molengo\";}s:8:\"Monofett\";a:2:{s:5:\"label\";s:8:\"Monofett\";s:5:\"value\";s:8:\"Monofett\";}s:7:\"Monoton\";a:2:{s:5:\"label\";s:7:\"Monoton\";s:5:\"value\";s:7:\"Monoton\";}s:20:\"Monsieur La Doulaise\";a:2:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:5:\"value\";s:20:\"Monsieur La Doulaise\";}s:7:\"Montaga\";a:2:{s:5:\"label\";s:7:\"Montaga\";s:5:\"value\";s:7:\"Montaga\";}s:6:\"Montez\";a:2:{s:5:\"label\";s:6:\"Montez\";s:5:\"value\";s:6:\"Montez\";}s:10:\"Montserrat\";a:2:{s:5:\"label\";s:10:\"Montserrat\";s:5:\"value\";s:10:\"Montserrat\";}s:4:\"Moul\";a:2:{s:5:\"label\";s:4:\"Moul\";s:5:\"value\";s:4:\"Moul\";}s:8:\"Moulpali\";a:2:{s:5:\"label\";s:8:\"Moulpali\";s:5:\"value\";s:8:\"Moulpali\";}s:22:\"Mountains of Christmas\";a:2:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:5:\"value\";s:22:\"Mountains of Christmas\";}s:10:\"Mr Bedfort\";a:2:{s:5:\"label\";s:10:\"Mr Bedfort\";s:5:\"value\";s:10:\"Mr Bedfort\";}s:8:\"Mr Dafoe\";a:2:{s:5:\"label\";s:8:\"Mr Dafoe\";s:5:\"value\";s:8:\"Mr Dafoe\";}s:14:\"Mr De Haviland\";a:2:{s:5:\"label\";s:14:\"Mr De Haviland\";s:5:\"value\";s:14:\"Mr De Haviland\";}s:19:\"Mrs Saint Delafield\";a:2:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:5:\"value\";s:19:\"Mrs Saint Delafield\";}s:13:\"Mrs Sheppards\";a:2:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:5:\"value\";s:13:\"Mrs Sheppards\";}s:4:\"Muli\";a:2:{s:5:\"label\";s:4:\"Muli\";s:5:\"value\";s:4:\"Muli\";}s:13:\"Mystery Quest\";a:2:{s:5:\"label\";s:13:\"Mystery Quest\";s:5:\"value\";s:13:\"Mystery Quest\";}s:6:\"Neucha\";a:2:{s:5:\"label\";s:6:\"Neucha\";s:5:\"value\";s:6:\"Neucha\";}s:6:\"Neuton\";a:2:{s:5:\"label\";s:6:\"Neuton\";s:5:\"value\";s:6:\"Neuton\";}s:10:\"News Cycle\";a:2:{s:5:\"label\";s:10:\"News Cycle\";s:5:\"value\";s:10:\"News Cycle\";}s:7:\"Niconne\";a:2:{s:5:\"label\";s:7:\"Niconne\";s:5:\"value\";s:7:\"Niconne\";}s:9:\"Nixie One\";a:2:{s:5:\"label\";s:9:\"Nixie One\";s:5:\"value\";s:9:\"Nixie One\";}s:6:\"Nobile\";a:2:{s:5:\"label\";s:6:\"Nobile\";s:5:\"value\";s:6:\"Nobile\";}s:6:\"Nokora\";a:2:{s:5:\"label\";s:6:\"Nokora\";s:5:\"value\";s:6:\"Nokora\";}s:7:\"Norican\";a:2:{s:5:\"label\";s:7:\"Norican\";s:5:\"value\";s:7:\"Norican\";}s:7:\"Nosifer\";a:2:{s:5:\"label\";s:7:\"Nosifer\";s:5:\"value\";s:7:\"Nosifer\";}s:20:\"Nothing You Could Do\";a:2:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:5:\"value\";s:20:\"Nothing You Could Do\";}s:12:\"Noticia Text\";a:2:{s:5:\"label\";s:12:\"Noticia Text\";s:5:\"value\";s:12:\"Noticia Text\";}s:8:\"Nova Cut\";a:2:{s:5:\"label\";s:8:\"Nova Cut\";s:5:\"value\";s:8:\"Nova Cut\";}s:9:\"Nova Flat\";a:2:{s:5:\"label\";s:9:\"Nova Flat\";s:5:\"value\";s:9:\"Nova Flat\";}s:9:\"Nova Mono\";a:2:{s:5:\"label\";s:9:\"Nova Mono\";s:5:\"value\";s:9:\"Nova Mono\";}s:9:\"Nova Oval\";a:2:{s:5:\"label\";s:9:\"Nova Oval\";s:5:\"value\";s:9:\"Nova Oval\";}s:10:\"Nova Round\";a:2:{s:5:\"label\";s:10:\"Nova Round\";s:5:\"value\";s:10:\"Nova Round\";}s:11:\"Nova Script\";a:2:{s:5:\"label\";s:11:\"Nova Script\";s:5:\"value\";s:11:\"Nova Script\";}s:9:\"Nova Slim\";a:2:{s:5:\"label\";s:9:\"Nova Slim\";s:5:\"value\";s:9:\"Nova Slim\";}s:11:\"Nova Square\";a:2:{s:5:\"label\";s:11:\"Nova Square\";s:5:\"value\";s:11:\"Nova Square\";}s:6:\"Numans\";a:2:{s:5:\"label\";s:6:\"Numans\";s:5:\"value\";s:6:\"Numans\";}s:6:\"Nunito\";a:2:{s:5:\"label\";s:6:\"Nunito\";s:5:\"value\";s:6:\"Nunito\";}s:14:\"Odor Mean Chey\";a:2:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:5:\"value\";s:14:\"Odor Mean Chey\";}s:15:\"Old Standard TT\";a:2:{s:5:\"label\";s:15:\"Old Standard TT\";s:5:\"value\";s:15:\"Old Standard TT\";}s:9:\"Oldenburg\";a:2:{s:5:\"label\";s:9:\"Oldenburg\";s:5:\"value\";s:9:\"Oldenburg\";}s:11:\"Oleo Script\";a:2:{s:5:\"label\";s:11:\"Oleo Script\";s:5:\"value\";s:11:\"Oleo Script\";}s:9:\"Open Sans\";a:2:{s:5:\"label\";s:9:\"Open Sans\";s:5:\"value\";s:9:\"Open Sans\";}s:19:\"Open Sans Condensed\";a:2:{s:5:\"label\";s:19:\"Open Sans Condensed\";s:5:\"value\";s:19:\"Open Sans Condensed\";}s:8:\"Orbitron\";a:2:{s:5:\"label\";s:8:\"Orbitron\";s:5:\"value\";s:8:\"Orbitron\";}s:15:\"Original Surfer\";a:2:{s:5:\"label\";s:15:\"Original Surfer\";s:5:\"value\";s:15:\"Original Surfer\";}s:6:\"Oswald\";a:2:{s:5:\"label\";s:6:\"Oswald\";s:5:\"value\";s:6:\"Oswald\";}s:16:\"Over the Rainbow\";a:2:{s:5:\"label\";s:16:\"Over the Rainbow\";s:5:\"value\";s:16:\"Over the Rainbow\";}s:8:\"Overlock\";a:2:{s:5:\"label\";s:8:\"Overlock\";s:5:\"value\";s:8:\"Overlock\";}s:11:\"Overlock SC\";a:2:{s:5:\"label\";s:11:\"Overlock SC\";s:5:\"value\";s:11:\"Overlock SC\";}s:3:\"Ovo\";a:2:{s:5:\"label\";s:3:\"Ovo\";s:5:\"value\";s:3:\"Ovo\";}s:6:\"Oxygen\";a:2:{s:5:\"label\";s:6:\"Oxygen\";s:5:\"value\";s:6:\"Oxygen\";}s:7:\"PT Mono\";a:2:{s:5:\"label\";s:7:\"PT Mono\";s:5:\"value\";s:7:\"PT Mono\";}s:7:\"PT Sans\";a:2:{s:5:\"label\";s:7:\"PT Sans\";s:5:\"value\";s:7:\"PT Sans\";}s:15:\"PT Sans Caption\";a:2:{s:5:\"label\";s:15:\"PT Sans Caption\";s:5:\"value\";s:15:\"PT Sans Caption\";}s:14:\"PT Sans Narrow\";a:2:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:5:\"value\";s:14:\"PT Sans Narrow\";}s:8:\"PT Serif\";a:2:{s:5:\"label\";s:8:\"PT Serif\";s:5:\"value\";s:8:\"PT Serif\";}s:16:\"PT Serif Caption\";a:2:{s:5:\"label\";s:16:\"PT Serif Caption\";s:5:\"value\";s:16:\"PT Serif Caption\";}s:8:\"Pacifico\";a:2:{s:5:\"label\";s:8:\"Pacifico\";s:5:\"value\";s:8:\"Pacifico\";}s:10:\"Parisienne\";a:2:{s:5:\"label\";s:10:\"Parisienne\";s:5:\"value\";s:10:\"Parisienne\";}s:11:\"Passero One\";a:2:{s:5:\"label\";s:11:\"Passero One\";s:5:\"value\";s:11:\"Passero One\";}s:11:\"Passion One\";a:2:{s:5:\"label\";s:11:\"Passion One\";s:5:\"value\";s:11:\"Passion One\";}s:12:\"Patrick Hand\";a:2:{s:5:\"label\";s:12:\"Patrick Hand\";s:5:\"value\";s:12:\"Patrick Hand\";}s:9:\"Patua One\";a:2:{s:5:\"label\";s:9:\"Patua One\";s:5:\"value\";s:9:\"Patua One\";}s:11:\"Paytone One\";a:2:{s:5:\"label\";s:11:\"Paytone One\";s:5:\"value\";s:11:\"Paytone One\";}s:16:\"Permanent Marker\";a:2:{s:5:\"label\";s:16:\"Permanent Marker\";s:5:\"value\";s:16:\"Permanent Marker\";}s:7:\"Petrona\";a:2:{s:5:\"label\";s:7:\"Petrona\";s:5:\"value\";s:7:\"Petrona\";}s:11:\"Philosopher\";a:2:{s:5:\"label\";s:11:\"Philosopher\";s:5:\"value\";s:11:\"Philosopher\";}s:6:\"Piedra\";a:2:{s:5:\"label\";s:6:\"Piedra\";s:5:\"value\";s:6:\"Piedra\";}s:13:\"Pinyon Script\";a:2:{s:5:\"label\";s:13:\"Pinyon Script\";s:5:\"value\";s:13:\"Pinyon Script\";}s:7:\"Plaster\";a:2:{s:5:\"label\";s:7:\"Plaster\";s:5:\"value\";s:7:\"Plaster\";}s:4:\"Play\";a:2:{s:5:\"label\";s:4:\"Play\";s:5:\"value\";s:4:\"Play\";}s:8:\"Playball\";a:2:{s:5:\"label\";s:8:\"Playball\";s:5:\"value\";s:8:\"Playball\";}s:16:\"Playfair Display\";a:2:{s:5:\"label\";s:16:\"Playfair Display\";s:5:\"value\";s:16:\"Playfair Display\";}s:7:\"Podkova\";a:2:{s:5:\"label\";s:7:\"Podkova\";s:5:\"value\";s:7:\"Podkova\";}s:10:\"Poiret One\";a:2:{s:5:\"label\";s:10:\"Poiret One\";s:5:\"value\";s:10:\"Poiret One\";}s:10:\"Poller One\";a:2:{s:5:\"label\";s:10:\"Poller One\";s:5:\"value\";s:10:\"Poller One\";}s:4:\"Poly\";a:2:{s:5:\"label\";s:4:\"Poly\";s:5:\"value\";s:4:\"Poly\";}s:8:\"Pompiere\";a:2:{s:5:\"label\";s:8:\"Pompiere\";s:5:\"value\";s:8:\"Pompiere\";}s:12:\"Pontano Sans\";a:2:{s:5:\"label\";s:12:\"Pontano Sans\";s:5:\"value\";s:12:\"Pontano Sans\";}s:16:\"Port Lligat Sans\";a:2:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:5:\"value\";s:16:\"Port Lligat Sans\";}s:16:\"Port Lligat Slab\";a:2:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:5:\"value\";s:16:\"Port Lligat Slab\";}s:5:\"Prata\";a:2:{s:5:\"label\";s:5:\"Prata\";s:5:\"value\";s:5:\"Prata\";}s:11:\"Preahvihear\";a:2:{s:5:\"label\";s:11:\"Preahvihear\";s:5:\"value\";s:11:\"Preahvihear\";}s:14:\"Press Start 2P\";a:2:{s:5:\"label\";s:14:\"Press Start 2P\";s:5:\"value\";s:14:\"Press Start 2P\";}s:14:\"Princess Sofia\";a:2:{s:5:\"label\";s:14:\"Princess Sofia\";s:5:\"value\";s:14:\"Princess Sofia\";}s:8:\"Prociono\";a:2:{s:5:\"label\";s:8:\"Prociono\";s:5:\"value\";s:8:\"Prociono\";}s:10:\"Prosto One\";a:2:{s:5:\"label\";s:10:\"Prosto One\";s:5:\"value\";s:10:\"Prosto One\";}s:7:\"Puritan\";a:2:{s:5:\"label\";s:7:\"Puritan\";s:5:\"value\";s:7:\"Puritan\";}s:6:\"Quando\";a:2:{s:5:\"label\";s:6:\"Quando\";s:5:\"value\";s:6:\"Quando\";}s:8:\"Quantico\";a:2:{s:5:\"label\";s:8:\"Quantico\";s:5:\"value\";s:8:\"Quantico\";}s:12:\"Quattrocento\";a:2:{s:5:\"label\";s:12:\"Quattrocento\";s:5:\"value\";s:12:\"Quattrocento\";}s:17:\"Quattrocento Sans\";a:2:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:5:\"value\";s:17:\"Quattrocento Sans\";}s:9:\"Questrial\";a:2:{s:5:\"label\";s:9:\"Questrial\";s:5:\"value\";s:9:\"Questrial\";}s:9:\"Quicksand\";a:2:{s:5:\"label\";s:9:\"Quicksand\";s:5:\"value\";s:9:\"Quicksand\";}s:7:\"Qwigley\";a:2:{s:5:\"label\";s:7:\"Qwigley\";s:5:\"value\";s:7:\"Qwigley\";}s:6:\"Radley\";a:2:{s:5:\"label\";s:6:\"Radley\";s:5:\"value\";s:6:\"Radley\";}s:7:\"Raleway\";a:2:{s:5:\"label\";s:7:\"Raleway\";s:5:\"value\";s:7:\"Raleway\";}s:12:\"Rammetto One\";a:2:{s:5:\"label\";s:12:\"Rammetto One\";s:5:\"value\";s:12:\"Rammetto One\";}s:6:\"Rancho\";a:2:{s:5:\"label\";s:6:\"Rancho\";s:5:\"value\";s:6:\"Rancho\";}s:9:\"Rationale\";a:2:{s:5:\"label\";s:9:\"Rationale\";s:5:\"value\";s:9:\"Rationale\";}s:9:\"Redressed\";a:2:{s:5:\"label\";s:9:\"Redressed\";s:5:\"value\";s:9:\"Redressed\";}s:13:\"Reenie Beanie\";a:2:{s:5:\"label\";s:13:\"Reenie Beanie\";s:5:\"value\";s:13:\"Reenie Beanie\";}s:7:\"Revalia\";a:2:{s:5:\"label\";s:7:\"Revalia\";s:5:\"value\";s:7:\"Revalia\";}s:6:\"Ribeye\";a:2:{s:5:\"label\";s:6:\"Ribeye\";s:5:\"value\";s:6:\"Ribeye\";}s:13:\"Ribeye Marrow\";a:2:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:5:\"value\";s:13:\"Ribeye Marrow\";}s:9:\"Righteous\";a:2:{s:5:\"label\";s:9:\"Righteous\";s:5:\"value\";s:9:\"Righteous\";}s:9:\"Rochester\";a:2:{s:5:\"label\";s:9:\"Rochester\";s:5:\"value\";s:9:\"Rochester\";}s:9:\"Rock Salt\";a:2:{s:5:\"label\";s:9:\"Rock Salt\";s:5:\"value\";s:9:\"Rock Salt\";}s:7:\"Rokkitt\";a:2:{s:5:\"label\";s:7:\"Rokkitt\";s:5:\"value\";s:7:\"Rokkitt\";}s:9:\"Ropa Sans\";a:2:{s:5:\"label\";s:9:\"Ropa Sans\";s:5:\"value\";s:9:\"Ropa Sans\";}s:7:\"Rosario\";a:2:{s:5:\"label\";s:7:\"Rosario\";s:5:\"value\";s:7:\"Rosario\";}s:8:\"Rosarivo\";a:2:{s:5:\"label\";s:8:\"Rosarivo\";s:5:\"value\";s:8:\"Rosarivo\";}s:12:\"Rouge Script\";a:2:{s:5:\"label\";s:12:\"Rouge Script\";s:5:\"value\";s:12:\"Rouge Script\";}s:4:\"Ruda\";a:2:{s:5:\"label\";s:4:\"Ruda\";s:5:\"value\";s:4:\"Ruda\";}s:11:\"Ruge Boogie\";a:2:{s:5:\"label\";s:11:\"Ruge Boogie\";s:5:\"value\";s:11:\"Ruge Boogie\";}s:6:\"Ruluko\";a:2:{s:5:\"label\";s:6:\"Ruluko\";s:5:\"value\";s:6:\"Ruluko\";}s:14:\"Ruslan Display\";a:2:{s:5:\"label\";s:14:\"Ruslan Display\";s:5:\"value\";s:14:\"Ruslan Display\";}s:9:\"Russo One\";a:2:{s:5:\"label\";s:9:\"Russo One\";s:5:\"value\";s:9:\"Russo One\";}s:6:\"Ruthie\";a:2:{s:5:\"label\";s:6:\"Ruthie\";s:5:\"value\";s:6:\"Ruthie\";}s:4:\"Sail\";a:2:{s:5:\"label\";s:4:\"Sail\";s:5:\"value\";s:4:\"Sail\";}s:5:\"Salsa\";a:2:{s:5:\"label\";s:5:\"Salsa\";s:5:\"value\";s:5:\"Salsa\";}s:8:\"Sancreek\";a:2:{s:5:\"label\";s:8:\"Sancreek\";s:5:\"value\";s:8:\"Sancreek\";}s:11:\"Sansita One\";a:2:{s:5:\"label\";s:11:\"Sansita One\";s:5:\"value\";s:11:\"Sansita One\";}s:6:\"Sarina\";a:2:{s:5:\"label\";s:6:\"Sarina\";s:5:\"value\";s:6:\"Sarina\";}s:7:\"Satisfy\";a:2:{s:5:\"label\";s:7:\"Satisfy\";s:5:\"value\";s:7:\"Satisfy\";}s:10:\"Schoolbell\";a:2:{s:5:\"label\";s:10:\"Schoolbell\";s:5:\"value\";s:10:\"Schoolbell\";}s:14:\"Seaweed Script\";a:2:{s:5:\"label\";s:14:\"Seaweed Script\";s:5:\"value\";s:14:\"Seaweed Script\";}s:9:\"Sevillana\";a:2:{s:5:\"label\";s:9:\"Sevillana\";s:5:\"value\";s:9:\"Sevillana\";}s:18:\"Shadows Into Light\";a:2:{s:5:\"label\";s:18:\"Shadows Into Light\";s:5:\"value\";s:18:\"Shadows Into Light\";}s:22:\"Shadows Into Light Two\";a:2:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:5:\"value\";s:22:\"Shadows Into Light Two\";}s:6:\"Shanti\";a:2:{s:5:\"label\";s:6:\"Shanti\";s:5:\"value\";s:6:\"Shanti\";}s:5:\"Share\";a:2:{s:5:\"label\";s:5:\"Share\";s:5:\"value\";s:5:\"Share\";}s:9:\"Shojumaru\";a:2:{s:5:\"label\";s:9:\"Shojumaru\";s:5:\"value\";s:9:\"Shojumaru\";}s:11:\"Short Stack\";a:2:{s:5:\"label\";s:11:\"Short Stack\";s:5:\"value\";s:11:\"Short Stack\";}s:8:\"Siemreap\";a:2:{s:5:\"label\";s:8:\"Siemreap\";s:5:\"value\";s:8:\"Siemreap\";}s:10:\"Sigmar One\";a:2:{s:5:\"label\";s:10:\"Sigmar One\";s:5:\"value\";s:10:\"Sigmar One\";}s:7:\"Signika\";a:2:{s:5:\"label\";s:7:\"Signika\";s:5:\"value\";s:7:\"Signika\";}s:16:\"Signika Negative\";a:2:{s:5:\"label\";s:16:\"Signika Negative\";s:5:\"value\";s:16:\"Signika Negative\";}s:9:\"Simonetta\";a:2:{s:5:\"label\";s:9:\"Simonetta\";s:5:\"value\";s:9:\"Simonetta\";}s:13:\"Sirin Stencil\";a:2:{s:5:\"label\";s:13:\"Sirin Stencil\";s:5:\"value\";s:13:\"Sirin Stencil\";}s:8:\"Six Caps\";a:2:{s:5:\"label\";s:8:\"Six Caps\";s:5:\"value\";s:8:\"Six Caps\";}s:7:\"Slackey\";a:2:{s:5:\"label\";s:7:\"Slackey\";s:5:\"value\";s:7:\"Slackey\";}s:6:\"Smokum\";a:2:{s:5:\"label\";s:6:\"Smokum\";s:5:\"value\";s:6:\"Smokum\";}s:6:\"Smythe\";a:2:{s:5:\"label\";s:6:\"Smythe\";s:5:\"value\";s:6:\"Smythe\";}s:7:\"Sniglet\";a:2:{s:5:\"label\";s:7:\"Sniglet\";s:5:\"value\";s:7:\"Sniglet\";}s:7:\"Snippet\";a:2:{s:5:\"label\";s:7:\"Snippet\";s:5:\"value\";s:7:\"Snippet\";}s:5:\"Sofia\";a:2:{s:5:\"label\";s:5:\"Sofia\";s:5:\"value\";s:5:\"Sofia\";}s:10:\"Sonsie One\";a:2:{s:5:\"label\";s:10:\"Sonsie One\";s:5:\"value\";s:10:\"Sonsie One\";}s:16:\"Sorts Mill Goudy\";a:2:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:5:\"value\";s:16:\"Sorts Mill Goudy\";}s:15:\"Source Sans Pro\";a:2:{s:5:\"label\";s:15:\"Source Sans Pro\";s:5:\"value\";s:15:\"Source Sans Pro\";}s:13:\"Special Elite\";a:2:{s:5:\"label\";s:13:\"Special Elite\";s:5:\"value\";s:13:\"Special Elite\";}s:10:\"Spicy Rice\";a:2:{s:5:\"label\";s:10:\"Spicy Rice\";s:5:\"value\";s:10:\"Spicy Rice\";}s:9:\"Spinnaker\";a:2:{s:5:\"label\";s:9:\"Spinnaker\";s:5:\"value\";s:9:\"Spinnaker\";}s:6:\"Spirax\";a:2:{s:5:\"label\";s:6:\"Spirax\";s:5:\"value\";s:6:\"Spirax\";}s:10:\"Squada One\";a:2:{s:5:\"label\";s:10:\"Squada One\";s:5:\"value\";s:10:\"Squada One\";}s:15:\"Stardos Stencil\";a:2:{s:5:\"label\";s:15:\"Stardos Stencil\";s:5:\"value\";s:15:\"Stardos Stencil\";}s:21:\"Stint Ultra Condensed\";a:2:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:5:\"value\";s:21:\"Stint Ultra Condensed\";}s:20:\"Stint Ultra Expanded\";a:2:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:5:\"value\";s:20:\"Stint Ultra Expanded\";}s:5:\"Stoke\";a:2:{s:5:\"label\";s:5:\"Stoke\";s:5:\"value\";s:5:\"Stoke\";}s:19:\"Sue Ellen Francisco\";a:2:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:5:\"value\";s:19:\"Sue Ellen Francisco\";}s:9:\"Sunshiney\";a:2:{s:5:\"label\";s:9:\"Sunshiney\";s:5:\"value\";s:9:\"Sunshiney\";}s:16:\"Supermercado One\";a:2:{s:5:\"label\";s:16:\"Supermercado One\";s:5:\"value\";s:16:\"Supermercado One\";}s:11:\"Suwannaphum\";a:2:{s:5:\"label\";s:11:\"Suwannaphum\";s:5:\"value\";s:11:\"Suwannaphum\";}s:18:\"Swanky and Moo Moo\";a:2:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:5:\"value\";s:18:\"Swanky and Moo Moo\";}s:9:\"Syncopate\";a:2:{s:5:\"label\";s:9:\"Syncopate\";s:5:\"value\";s:9:\"Syncopate\";}s:9:\"Tangerine\";a:2:{s:5:\"label\";s:9:\"Tangerine\";s:5:\"value\";s:9:\"Tangerine\";}s:6:\"Taprom\";a:2:{s:5:\"label\";s:6:\"Taprom\";s:5:\"value\";s:6:\"Taprom\";}s:5:\"Telex\";a:2:{s:5:\"label\";s:5:\"Telex\";s:5:\"value\";s:5:\"Telex\";}s:10:\"Tenor Sans\";a:2:{s:5:\"label\";s:10:\"Tenor Sans\";s:5:\"value\";s:10:\"Tenor Sans\";}s:18:\"The Girl Next Door\";a:2:{s:5:\"label\";s:18:\"The Girl Next Door\";s:5:\"value\";s:18:\"The Girl Next Door\";}s:6:\"Tienne\";a:2:{s:5:\"label\";s:6:\"Tienne\";s:5:\"value\";s:6:\"Tienne\";}s:5:\"Tinos\";a:2:{s:5:\"label\";s:5:\"Tinos\";s:5:\"value\";s:5:\"Tinos\";}s:9:\"Titan One\";a:2:{s:5:\"label\";s:9:\"Titan One\";s:5:\"value\";s:9:\"Titan One\";}s:11:\"Trade Winds\";a:2:{s:5:\"label\";s:11:\"Trade Winds\";s:5:\"value\";s:11:\"Trade Winds\";}s:7:\"Trocchi\";a:2:{s:5:\"label\";s:7:\"Trocchi\";s:5:\"value\";s:7:\"Trocchi\";}s:7:\"Trochut\";a:2:{s:5:\"label\";s:7:\"Trochut\";s:5:\"value\";s:7:\"Trochut\";}s:7:\"Trykker\";a:2:{s:5:\"label\";s:7:\"Trykker\";s:5:\"value\";s:7:\"Trykker\";}s:10:\"Tulpen One\";a:2:{s:5:\"label\";s:10:\"Tulpen One\";s:5:\"value\";s:10:\"Tulpen One\";}s:6:\"Ubuntu\";a:2:{s:5:\"label\";s:6:\"Ubuntu\";s:5:\"value\";s:6:\"Ubuntu\";}s:16:\"Ubuntu Condensed\";a:2:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:5:\"value\";s:16:\"Ubuntu Condensed\";}s:11:\"Ubuntu Mono\";a:2:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:5:\"value\";s:11:\"Ubuntu Mono\";}s:5:\"Ultra\";a:2:{s:5:\"label\";s:5:\"Ultra\";s:5:\"value\";s:5:\"Ultra\";}s:14:\"Uncial Antiqua\";a:2:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:5:\"value\";s:14:\"Uncial Antiqua\";}s:14:\"UnifrakturCook\";a:2:{s:5:\"label\";s:14:\"UnifrakturCook\";s:5:\"value\";s:14:\"UnifrakturCook\";}s:18:\"UnifrakturMaguntia\";a:2:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:5:\"value\";s:18:\"UnifrakturMaguntia\";}s:7:\"Unkempt\";a:2:{s:5:\"label\";s:7:\"Unkempt\";s:5:\"value\";s:7:\"Unkempt\";}s:6:\"Unlock\";a:2:{s:5:\"label\";s:6:\"Unlock\";s:5:\"value\";s:6:\"Unlock\";}s:4:\"Unna\";a:2:{s:5:\"label\";s:4:\"Unna\";s:5:\"value\";s:4:\"Unna\";}s:5:\"VT323\";a:2:{s:5:\"label\";s:5:\"VT323\";s:5:\"value\";s:5:\"VT323\";}s:6:\"Varela\";a:2:{s:5:\"label\";s:6:\"Varela\";s:5:\"value\";s:6:\"Varela\";}s:12:\"Varela Round\";a:2:{s:5:\"label\";s:12:\"Varela Round\";s:5:\"value\";s:12:\"Varela Round\";}s:11:\"Vast Shadow\";a:2:{s:5:\"label\";s:11:\"Vast Shadow\";s:5:\"value\";s:11:\"Vast Shadow\";}s:5:\"Vibur\";a:2:{s:5:\"label\";s:5:\"Vibur\";s:5:\"value\";s:5:\"Vibur\";}s:8:\"Vidaloka\";a:2:{s:5:\"label\";s:8:\"Vidaloka\";s:5:\"value\";s:8:\"Vidaloka\";}s:4:\"Viga\";a:2:{s:5:\"label\";s:4:\"Viga\";s:5:\"value\";s:4:\"Viga\";}s:5:\"Voces\";a:2:{s:5:\"label\";s:5:\"Voces\";s:5:\"value\";s:5:\"Voces\";}s:7:\"Volkhov\";a:2:{s:5:\"label\";s:7:\"Volkhov\";s:5:\"value\";s:7:\"Volkhov\";}s:8:\"Vollkorn\";a:2:{s:5:\"label\";s:8:\"Vollkorn\";s:5:\"value\";s:8:\"Vollkorn\";}s:8:\"Voltaire\";a:2:{s:5:\"label\";s:8:\"Voltaire\";s:5:\"value\";s:8:\"Voltaire\";}s:23:\"Waiting for the Sunrise\";a:2:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:5:\"value\";s:23:\"Waiting for the Sunrise\";}s:8:\"Wallpoet\";a:2:{s:5:\"label\";s:8:\"Wallpoet\";s:5:\"value\";s:8:\"Wallpoet\";}s:15:\"Walter Turncoat\";a:2:{s:5:\"label\";s:15:\"Walter Turncoat\";s:5:\"value\";s:15:\"Walter Turncoat\";}s:9:\"Wellfleet\";a:2:{s:5:\"label\";s:9:\"Wellfleet\";s:5:\"value\";s:9:\"Wellfleet\";}s:8:\"Wire One\";a:2:{s:5:\"label\";s:8:\"Wire One\";s:5:\"value\";s:8:\"Wire One\";}s:17:\"Yanone Kaffeesatz\";a:2:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:5:\"value\";s:17:\"Yanone Kaffeesatz\";}s:10:\"Yellowtail\";a:2:{s:5:\"label\";s:10:\"Yellowtail\";s:5:\"value\";s:10:\"Yellowtail\";}s:10:\"Yeseva One\";a:2:{s:5:\"label\";s:10:\"Yeseva One\";s:5:\"value\";s:10:\"Yeseva One\";}s:10:\"Yesteryear\";a:2:{s:5:\"label\";s:10:\"Yesteryear\";s:5:\"value\";s:10:\"Yesteryear\";}s:6:\"Zeyada\";a:2:{s:5:\"label\";s:6:\"Zeyada\";s:5:\"value\";s:6:\"Zeyada\";}}}i:41;a:7:{s:2:\"id\";s:21:\"choose_paragraph_font\";s:5:\"label\";s:21:\"Choose paragraph font\";s:4:\"desc\";s:61:\"Here you can assign paragraph font for your coming soon page.\";s:3:\"std\";s:9:\"Open+Sans\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:17:\"design_and_layout\";s:7:\"choices\";a:530:{s:4:\"Abel\";a:2:{s:5:\"label\";s:4:\"Abel\";s:5:\"value\";s:4:\"Abel\";}s:13:\"Abril Fatface\";a:2:{s:5:\"label\";s:13:\"Abril Fatface\";s:5:\"value\";s:13:\"Abril Fatface\";}s:8:\"Aclonica\";a:2:{s:5:\"label\";s:8:\"Aclonica\";s:5:\"value\";s:8:\"Aclonica\";}s:4:\"Acme\";a:2:{s:5:\"label\";s:4:\"Acme\";s:5:\"value\";s:4:\"Acme\";}s:5:\"Actor\";a:2:{s:5:\"label\";s:5:\"Actor\";s:5:\"value\";s:5:\"Actor\";}s:7:\"Adamina\";a:2:{s:5:\"label\";s:7:\"Adamina\";s:5:\"value\";s:7:\"Adamina\";}s:10:\"Advent Pro\";a:2:{s:5:\"label\";s:10:\"Advent Pro\";s:5:\"value\";s:10:\"Advent Pro\";}s:15:\"Aguafina Script\";a:2:{s:5:\"label\";s:15:\"Aguafina Script\";s:5:\"value\";s:15:\"Aguafina Script\";}s:6:\"Aladin\";a:2:{s:5:\"label\";s:6:\"Aladin\";s:5:\"value\";s:6:\"Aladin\";}s:7:\"Aldrich\";a:2:{s:5:\"label\";s:7:\"Aldrich\";s:5:\"value\";s:7:\"Aldrich\";}s:8:\"Alegreya\";a:2:{s:5:\"label\";s:8:\"Alegreya\";s:5:\"value\";s:8:\"Alegreya\";}s:11:\"Alegreya SC\";a:2:{s:5:\"label\";s:11:\"Alegreya SC\";s:5:\"value\";s:11:\"Alegreya SC\";}s:10:\"Alex Brush\";a:2:{s:5:\"label\";s:10:\"Alex Brush\";s:5:\"value\";s:10:\"Alex Brush\";}s:13:\"Alfa Slab One\";a:2:{s:5:\"label\";s:13:\"Alfa Slab One\";s:5:\"value\";s:13:\"Alfa Slab One\";}s:5:\"Alice\";a:2:{s:5:\"label\";s:5:\"Alice\";s:5:\"value\";s:5:\"Alice\";}s:5:\"Alike\";a:2:{s:5:\"label\";s:5:\"Alike\";s:5:\"value\";s:5:\"Alike\";}s:13:\"Alike Angular\";a:2:{s:5:\"label\";s:13:\"Alike Angular\";s:5:\"value\";s:13:\"Alike Angular\";}s:5:\"Allan\";a:2:{s:5:\"label\";s:5:\"Allan\";s:5:\"value\";s:5:\"Allan\";}s:7:\"Allerta\";a:2:{s:5:\"label\";s:7:\"Allerta\";s:5:\"value\";s:7:\"Allerta\";}s:15:\"Allerta Stencil\";a:2:{s:5:\"label\";s:15:\"Allerta Stencil\";s:5:\"value\";s:15:\"Allerta Stencil\";}s:6:\"Allura\";a:2:{s:5:\"label\";s:6:\"Allura\";s:5:\"value\";s:6:\"Allura\";}s:8:\"Almendra\";a:2:{s:5:\"label\";s:8:\"Almendra\";s:5:\"value\";s:8:\"Almendra\";}s:11:\"Almendra SC\";a:2:{s:5:\"label\";s:11:\"Almendra SC\";s:5:\"value\";s:11:\"Almendra SC\";}s:8:\"Amarante\";a:2:{s:5:\"label\";s:8:\"Amarante\";s:5:\"value\";s:8:\"Amarante\";}s:8:\"Amaranth\";a:2:{s:5:\"label\";s:8:\"Amaranth\";s:5:\"value\";s:8:\"Amaranth\";}s:9:\"Amatic SC\";a:2:{s:5:\"label\";s:9:\"Amatic SC\";s:5:\"value\";s:9:\"Amatic SC\";}s:9:\"Amethysta\";a:2:{s:5:\"label\";s:9:\"Amethysta\";s:5:\"value\";s:9:\"Amethysta\";}s:6:\"Andada\";a:2:{s:5:\"label\";s:6:\"Andada\";s:5:\"value\";s:6:\"Andada\";}s:6:\"Andika\";a:2:{s:5:\"label\";s:6:\"Andika\";s:5:\"value\";s:6:\"Andika\";}s:6:\"Angkor\";a:2:{s:5:\"label\";s:6:\"Angkor\";s:5:\"value\";s:6:\"Angkor\";}s:24:\"Annie Use Your Telescope\";a:2:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:5:\"value\";s:24:\"Annie Use Your Telescope\";}s:13:\"Anonymous Pro\";a:2:{s:5:\"label\";s:13:\"Anonymous Pro\";s:5:\"value\";s:13:\"Anonymous Pro\";}s:5:\"Antic\";a:2:{s:5:\"label\";s:5:\"Antic\";s:5:\"value\";s:5:\"Antic\";}s:12:\"Antic Didone\";a:2:{s:5:\"label\";s:12:\"Antic Didone\";s:5:\"value\";s:12:\"Antic Didone\";}s:10:\"Antic Slab\";a:2:{s:5:\"label\";s:10:\"Antic Slab\";s:5:\"value\";s:10:\"Antic Slab\";}s:5:\"Anton\";a:2:{s:5:\"label\";s:5:\"Anton\";s:5:\"value\";s:5:\"Anton\";}s:6:\"Arapey\";a:2:{s:5:\"label\";s:6:\"Arapey\";s:5:\"value\";s:6:\"Arapey\";}s:7:\"Arbutus\";a:2:{s:5:\"label\";s:7:\"Arbutus\";s:5:\"value\";s:7:\"Arbutus\";}s:19:\"Architects Daughter\";a:2:{s:5:\"label\";s:19:\"Architects Daughter\";s:5:\"value\";s:19:\"Architects Daughter\";}s:5:\"Arimo\";a:2:{s:5:\"label\";s:5:\"Arimo\";s:5:\"value\";s:5:\"Arimo\";}s:8:\"Arizonia\";a:2:{s:5:\"label\";s:8:\"Arizonia\";s:5:\"value\";s:8:\"Arizonia\";}s:6:\"Armata\";a:2:{s:5:\"label\";s:6:\"Armata\";s:5:\"value\";s:6:\"Armata\";}s:8:\"Artifika\";a:2:{s:5:\"label\";s:8:\"Artifika\";s:5:\"value\";s:8:\"Artifika\";}s:4:\"Arvo\";a:2:{s:5:\"label\";s:4:\"Arvo\";s:5:\"value\";s:4:\"Arvo\";}s:4:\"Asap\";a:2:{s:5:\"label\";s:4:\"Asap\";s:5:\"value\";s:4:\"Asap\";}s:5:\"Asset\";a:2:{s:5:\"label\";s:5:\"Asset\";s:5:\"value\";s:5:\"Asset\";}s:7:\"Astloch\";a:2:{s:5:\"label\";s:7:\"Astloch\";s:5:\"value\";s:7:\"Astloch\";}s:4:\"Asul\";a:2:{s:5:\"label\";s:4:\"Asul\";s:5:\"value\";s:4:\"Asul\";}s:10:\"Atomic Age\";a:2:{s:5:\"label\";s:10:\"Atomic Age\";s:5:\"value\";s:10:\"Atomic Age\";}s:6:\"Aubrey\";a:2:{s:5:\"label\";s:6:\"Aubrey\";s:5:\"value\";s:6:\"Aubrey\";}s:9:\"Audiowide\";a:2:{s:5:\"label\";s:9:\"Audiowide\";s:5:\"value\";s:9:\"Audiowide\";}s:7:\"Average\";a:2:{s:5:\"label\";s:7:\"Average\";s:5:\"value\";s:7:\"Average\";}s:19:\"Averia Gruesa Libre\";a:2:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:5:\"value\";s:19:\"Averia Gruesa Libre\";}s:12:\"Averia Libre\";a:2:{s:5:\"label\";s:12:\"Averia Libre\";s:5:\"value\";s:12:\"Averia Libre\";}s:17:\"Averia Sans Libre\";a:2:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:5:\"value\";s:17:\"Averia Sans Libre\";}s:18:\"Averia Serif Libre\";a:2:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:5:\"value\";s:18:\"Averia Serif Libre\";}s:10:\"Bad Script\";a:2:{s:5:\"label\";s:10:\"Bad Script\";s:5:\"value\";s:10:\"Bad Script\";}s:9:\"Balthazar\";a:2:{s:5:\"label\";s:9:\"Balthazar\";s:5:\"value\";s:9:\"Balthazar\";}s:7:\"Bangers\";a:2:{s:5:\"label\";s:7:\"Bangers\";s:5:\"value\";s:7:\"Bangers\";}s:5:\"Basic\";a:2:{s:5:\"label\";s:5:\"Basic\";s:5:\"value\";s:5:\"Basic\";}s:10:\"Battambang\";a:2:{s:5:\"label\";s:10:\"Battambang\";s:5:\"value\";s:10:\"Battambang\";}s:7:\"Baumans\";a:2:{s:5:\"label\";s:7:\"Baumans\";s:5:\"value\";s:7:\"Baumans\";}s:5:\"Bayon\";a:2:{s:5:\"label\";s:5:\"Bayon\";s:5:\"value\";s:5:\"Bayon\";}s:8:\"Belgrano\";a:2:{s:5:\"label\";s:8:\"Belgrano\";s:5:\"value\";s:8:\"Belgrano\";}s:7:\"Belleza\";a:2:{s:5:\"label\";s:7:\"Belleza\";s:5:\"value\";s:7:\"Belleza\";}s:7:\"Bentham\";a:2:{s:5:\"label\";s:7:\"Bentham\";s:5:\"value\";s:7:\"Bentham\";}s:15:\"Berkshire Swash\";a:2:{s:5:\"label\";s:15:\"Berkshire Swash\";s:5:\"value\";s:15:\"Berkshire Swash\";}s:5:\"Bevan\";a:2:{s:5:\"label\";s:5:\"Bevan\";s:5:\"value\";s:5:\"Bevan\";}s:11:\"Bigshot One\";a:2:{s:5:\"label\";s:11:\"Bigshot One\";s:5:\"value\";s:11:\"Bigshot One\";}s:5:\"Bilbo\";a:2:{s:5:\"label\";s:5:\"Bilbo\";s:5:\"value\";s:5:\"Bilbo\";}s:16:\"Bilbo Swash Caps\";a:2:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:5:\"value\";s:16:\"Bilbo Swash Caps\";}s:6:\"Bitter\";a:2:{s:5:\"label\";s:6:\"Bitter\";s:5:\"value\";s:6:\"Bitter\";}s:13:\"Black Ops One\";a:2:{s:5:\"label\";s:13:\"Black Ops One\";s:5:\"value\";s:13:\"Black Ops One\";}s:5:\"Bokor\";a:2:{s:5:\"label\";s:5:\"Bokor\";s:5:\"value\";s:5:\"Bokor\";}s:6:\"Bonbon\";a:2:{s:5:\"label\";s:6:\"Bonbon\";s:5:\"value\";s:6:\"Bonbon\";}s:8:\"Boogaloo\";a:2:{s:5:\"label\";s:8:\"Boogaloo\";s:5:\"value\";s:8:\"Boogaloo\";}s:10:\"Bowlby One\";a:2:{s:5:\"label\";s:10:\"Bowlby One\";s:5:\"value\";s:10:\"Bowlby One\";}s:13:\"Bowlby One SC\";a:2:{s:5:\"label\";s:13:\"Bowlby One SC\";s:5:\"value\";s:13:\"Bowlby One SC\";}s:7:\"Brawler\";a:2:{s:5:\"label\";s:7:\"Brawler\";s:5:\"value\";s:7:\"Brawler\";}s:10:\"Bree Serif\";a:2:{s:5:\"label\";s:10:\"Bree Serif\";s:5:\"value\";s:10:\"Bree Serif\";}s:14:\"Bubblegum Sans\";a:2:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:5:\"value\";s:14:\"Bubblegum Sans\";}s:4:\"Buda\";a:2:{s:5:\"label\";s:4:\"Buda\";s:5:\"value\";s:4:\"Buda\";}s:7:\"Buenard\";a:2:{s:5:\"label\";s:7:\"Buenard\";s:5:\"value\";s:7:\"Buenard\";}s:10:\"Butcherman\";a:2:{s:5:\"label\";s:10:\"Butcherman\";s:5:\"value\";s:10:\"Butcherman\";}s:14:\"Butterfly Kids\";a:2:{s:5:\"label\";s:14:\"Butterfly Kids\";s:5:\"value\";s:14:\"Butterfly Kids\";}s:5:\"Cabin\";a:2:{s:5:\"label\";s:5:\"Cabin\";s:5:\"value\";s:5:\"Cabin\";}s:15:\"Cabin Condensed\";a:2:{s:5:\"label\";s:15:\"Cabin Condensed\";s:5:\"value\";s:15:\"Cabin Condensed\";}s:12:\"Cabin Sketch\";a:2:{s:5:\"label\";s:12:\"Cabin Sketch\";s:5:\"value\";s:12:\"Cabin Sketch\";}s:15:\"Caesar Dressing\";a:2:{s:5:\"label\";s:15:\"Caesar Dressing\";s:5:\"value\";s:15:\"Caesar Dressing\";}s:10:\"Cagliostro\";a:2:{s:5:\"label\";s:10:\"Cagliostro\";s:5:\"value\";s:10:\"Cagliostro\";}s:14:\"Calligraffitti\";a:2:{s:5:\"label\";s:14:\"Calligraffitti\";s:5:\"value\";s:14:\"Calligraffitti\";}s:5:\"Cambo\";a:2:{s:5:\"label\";s:5:\"Cambo\";s:5:\"value\";s:5:\"Cambo\";}s:6:\"Candal\";a:2:{s:5:\"label\";s:6:\"Candal\";s:5:\"value\";s:6:\"Candal\";}s:9:\"Cantarell\";a:2:{s:5:\"label\";s:9:\"Cantarell\";s:5:\"value\";s:9:\"Cantarell\";}s:11:\"Cantata One\";a:2:{s:5:\"label\";s:11:\"Cantata One\";s:5:\"value\";s:11:\"Cantata One\";}s:8:\"Capriola\";a:2:{s:5:\"label\";s:8:\"Capriola\";s:5:\"value\";s:8:\"Capriola\";}s:5:\"Cardo\";a:2:{s:5:\"label\";s:5:\"Cardo\";s:5:\"value\";s:5:\"Cardo\";}s:5:\"Carme\";a:2:{s:5:\"label\";s:5:\"Carme\";s:5:\"value\";s:5:\"Carme\";}s:10:\"Carter One\";a:2:{s:5:\"label\";s:10:\"Carter One\";s:5:\"value\";s:10:\"Carter One\";}s:6:\"Caudex\";a:2:{s:5:\"label\";s:6:\"Caudex\";s:5:\"value\";s:6:\"Caudex\";}s:18:\"Cedarville Cursive\";a:2:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:5:\"value\";s:18:\"Cedarville Cursive\";}s:11:\"Ceviche One\";a:2:{s:5:\"label\";s:11:\"Ceviche One\";s:5:\"value\";s:11:\"Ceviche One\";}s:10:\"Changa One\";a:2:{s:5:\"label\";s:10:\"Changa One\";s:5:\"value\";s:10:\"Changa One\";}s:6:\"Chango\";a:2:{s:5:\"label\";s:6:\"Chango\";s:5:\"value\";s:6:\"Chango\";}s:18:\"Chau Philomene One\";a:2:{s:5:\"label\";s:18:\"Chau Philomene One\";s:5:\"value\";s:18:\"Chau Philomene One\";}s:14:\"Chelsea Market\";a:2:{s:5:\"label\";s:14:\"Chelsea Market\";s:5:\"value\";s:14:\"Chelsea Market\";}s:6:\"Chenla\";a:2:{s:5:\"label\";s:6:\"Chenla\";s:5:\"value\";s:6:\"Chenla\";}s:17:\"Cherry Cream Soda\";a:2:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:5:\"value\";s:17:\"Cherry Cream Soda\";}s:5:\"Chewy\";a:2:{s:5:\"label\";s:5:\"Chewy\";s:5:\"value\";s:5:\"Chewy\";}s:6:\"Chicle\";a:2:{s:5:\"label\";s:6:\"Chicle\";s:5:\"value\";s:6:\"Chicle\";}s:5:\"Chivo\";a:2:{s:5:\"label\";s:5:\"Chivo\";s:5:\"value\";s:5:\"Chivo\";}s:4:\"Coda\";a:2:{s:5:\"label\";s:4:\"Coda\";s:5:\"value\";s:4:\"Coda\";}s:12:\"Coda Caption\";a:2:{s:5:\"label\";s:12:\"Coda Caption\";s:5:\"value\";s:12:\"Coda Caption\";}s:8:\"Codystar\";a:2:{s:5:\"label\";s:8:\"Codystar\";s:5:\"value\";s:8:\"Codystar\";}s:9:\"Comfortaa\";a:2:{s:5:\"label\";s:9:\"Comfortaa\";s:5:\"value\";s:9:\"Comfortaa\";}s:11:\"Coming Soon\";a:2:{s:5:\"label\";s:11:\"Coming Soon\";s:5:\"value\";s:11:\"Coming Soon\";}s:11:\"Concert One\";a:2:{s:5:\"label\";s:11:\"Concert One\";s:5:\"value\";s:11:\"Concert One\";}s:9:\"Condiment\";a:2:{s:5:\"label\";s:9:\"Condiment\";s:5:\"value\";s:9:\"Condiment\";}s:7:\"Content\";a:2:{s:5:\"label\";s:7:\"Content\";s:5:\"value\";s:7:\"Content\";}s:12:\"Contrail One\";a:2:{s:5:\"label\";s:12:\"Contrail One\";s:5:\"value\";s:12:\"Contrail One\";}s:11:\"Convergence\";a:2:{s:5:\"label\";s:11:\"Convergence\";s:5:\"value\";s:11:\"Convergence\";}s:6:\"Cookie\";a:2:{s:5:\"label\";s:6:\"Cookie\";s:5:\"value\";s:6:\"Cookie\";}s:5:\"Copse\";a:2:{s:5:\"label\";s:5:\"Copse\";s:5:\"value\";s:5:\"Copse\";}s:6:\"Corben\";a:2:{s:5:\"label\";s:6:\"Corben\";s:5:\"value\";s:6:\"Corben\";}s:9:\"Courgette\";a:2:{s:5:\"label\";s:9:\"Courgette\";s:5:\"value\";s:9:\"Courgette\";}s:7:\"Cousine\";a:2:{s:5:\"label\";s:7:\"Cousine\";s:5:\"value\";s:7:\"Cousine\";}s:8:\"Coustard\";a:2:{s:5:\"label\";s:8:\"Coustard\";s:5:\"value\";s:8:\"Coustard\";}s:21:\"Covered By Your Grace\";a:2:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:5:\"value\";s:21:\"Covered By Your Grace\";}s:12:\"Crafty Girls\";a:2:{s:5:\"label\";s:12:\"Crafty Girls\";s:5:\"value\";s:12:\"Crafty Girls\";}s:9:\"Creepster\";a:2:{s:5:\"label\";s:9:\"Creepster\";s:5:\"value\";s:9:\"Creepster\";}s:11:\"Crete Round\";a:2:{s:5:\"label\";s:11:\"Crete Round\";s:5:\"value\";s:11:\"Crete Round\";}s:12:\"Crimson Text\";a:2:{s:5:\"label\";s:12:\"Crimson Text\";s:5:\"value\";s:12:\"Crimson Text\";}s:7:\"Crushed\";a:2:{s:5:\"label\";s:7:\"Crushed\";s:5:\"value\";s:7:\"Crushed\";}s:6:\"Cuprum\";a:2:{s:5:\"label\";s:6:\"Cuprum\";s:5:\"value\";s:6:\"Cuprum\";}s:6:\"Cutive\";a:2:{s:5:\"label\";s:6:\"Cutive\";s:5:\"value\";s:6:\"Cutive\";}s:6:\"Damion\";a:2:{s:5:\"label\";s:6:\"Damion\";s:5:\"value\";s:6:\"Damion\";}s:14:\"Dancing Script\";a:2:{s:5:\"label\";s:14:\"Dancing Script\";s:5:\"value\";s:14:\"Dancing Script\";}s:7:\"Dangrek\";a:2:{s:5:\"label\";s:7:\"Dangrek\";s:5:\"value\";s:7:\"Dangrek\";}s:20:\"Dawning of a New Day\";a:2:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:5:\"value\";s:20:\"Dawning of a New Day\";}s:8:\"Days One\";a:2:{s:5:\"label\";s:8:\"Days One\";s:5:\"value\";s:8:\"Days One\";}s:6:\"Delius\";a:2:{s:5:\"label\";s:6:\"Delius\";s:5:\"value\";s:6:\"Delius\";}s:17:\"Delius Swash Caps\";a:2:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:5:\"value\";s:17:\"Delius Swash Caps\";}s:14:\"Delius Unicase\";a:2:{s:5:\"label\";s:14:\"Delius Unicase\";s:5:\"value\";s:14:\"Delius Unicase\";}s:13:\"Della Respira\";a:2:{s:5:\"label\";s:13:\"Della Respira\";s:5:\"value\";s:13:\"Della Respira\";}s:10:\"Devonshire\";a:2:{s:5:\"label\";s:10:\"Devonshire\";s:5:\"value\";s:10:\"Devonshire\";}s:13:\"Didact Gothic\";a:2:{s:5:\"label\";s:13:\"Didact Gothic\";s:5:\"value\";s:13:\"Didact Gothic\";}s:9:\"Diplomata\";a:2:{s:5:\"label\";s:9:\"Diplomata\";s:5:\"value\";s:9:\"Diplomata\";}s:12:\"Diplomata SC\";a:2:{s:5:\"label\";s:12:\"Diplomata SC\";s:5:\"value\";s:12:\"Diplomata SC\";}s:10:\"Doppio One\";a:2:{s:5:\"label\";s:10:\"Doppio One\";s:5:\"value\";s:10:\"Doppio One\";}s:5:\"Dorsa\";a:2:{s:5:\"label\";s:5:\"Dorsa\";s:5:\"value\";s:5:\"Dorsa\";}s:5:\"Dosis\";a:2:{s:5:\"label\";s:5:\"Dosis\";s:5:\"value\";s:5:\"Dosis\";}s:11:\"Dr Sugiyama\";a:2:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:5:\"value\";s:11:\"Dr Sugiyama\";}s:10:\"Droid Sans\";a:2:{s:5:\"label\";s:10:\"Droid Sans\";s:5:\"value\";s:10:\"Droid Sans\";}s:15:\"Droid Sans Mono\";a:2:{s:5:\"label\";s:15:\"Droid Sans Mono\";s:5:\"value\";s:15:\"Droid Sans Mono\";}s:11:\"Droid Serif\";a:2:{s:5:\"label\";s:11:\"Droid Serif\";s:5:\"value\";s:11:\"Droid Serif\";}s:9:\"Duru Sans\";a:2:{s:5:\"label\";s:9:\"Duru Sans\";s:5:\"value\";s:9:\"Duru Sans\";}s:9:\"Dynalight\";a:2:{s:5:\"label\";s:9:\"Dynalight\";s:5:\"value\";s:9:\"Dynalight\";}s:11:\"EB Garamond\";a:2:{s:5:\"label\";s:11:\"EB Garamond\";s:5:\"value\";s:11:\"EB Garamond\";}s:10:\"Eagle Lake\";a:2:{s:5:\"label\";s:10:\"Eagle Lake\";s:5:\"value\";s:10:\"Eagle Lake\";}s:5:\"Eater\";a:2:{s:5:\"label\";s:5:\"Eater\";s:5:\"value\";s:5:\"Eater\";}s:9:\"Economica\";a:2:{s:5:\"label\";s:9:\"Economica\";s:5:\"value\";s:9:\"Economica\";}s:11:\"Electrolize\";a:2:{s:5:\"label\";s:11:\"Electrolize\";s:5:\"value\";s:11:\"Electrolize\";}s:11:\"Emblema One\";a:2:{s:5:\"label\";s:11:\"Emblema One\";s:5:\"value\";s:11:\"Emblema One\";}s:12:\"Emilys Candy\";a:2:{s:5:\"label\";s:12:\"Emilys Candy\";s:5:\"value\";s:12:\"Emilys Candy\";}s:10:\"Engagement\";a:2:{s:5:\"label\";s:10:\"Engagement\";s:5:\"value\";s:10:\"Engagement\";}s:9:\"Enriqueta\";a:2:{s:5:\"label\";s:9:\"Enriqueta\";s:5:\"value\";s:9:\"Enriqueta\";}s:9:\"Erica One\";a:2:{s:5:\"label\";s:9:\"Erica One\";s:5:\"value\";s:9:\"Erica One\";}s:7:\"Esteban\";a:2:{s:5:\"label\";s:7:\"Esteban\";s:5:\"value\";s:7:\"Esteban\";}s:15:\"Euphoria Script\";a:2:{s:5:\"label\";s:15:\"Euphoria Script\";s:5:\"value\";s:15:\"Euphoria Script\";}s:5:\"Ewert\";a:2:{s:5:\"label\";s:5:\"Ewert\";s:5:\"value\";s:5:\"Ewert\";}s:3:\"Exo\";a:2:{s:5:\"label\";s:3:\"Exo\";s:5:\"value\";s:3:\"Exo\";}s:13:\"Expletus Sans\";a:2:{s:5:\"label\";s:13:\"Expletus Sans\";s:5:\"value\";s:13:\"Expletus Sans\";}s:12:\"Fanwood Text\";a:2:{s:5:\"label\";s:12:\"Fanwood Text\";s:5:\"value\";s:12:\"Fanwood Text\";}s:9:\"Fascinate\";a:2:{s:5:\"label\";s:9:\"Fascinate\";s:5:\"value\";s:9:\"Fascinate\";}s:16:\"Fascinate Inline\";a:2:{s:5:\"label\";s:16:\"Fascinate Inline\";s:5:\"value\";s:16:\"Fascinate Inline\";}s:8:\"Federant\";a:2:{s:5:\"label\";s:8:\"Federant\";s:5:\"value\";s:8:\"Federant\";}s:6:\"Federo\";a:2:{s:5:\"label\";s:6:\"Federo\";s:5:\"value\";s:6:\"Federo\";}s:6:\"Felipa\";a:2:{s:5:\"label\";s:6:\"Felipa\";s:5:\"value\";s:6:\"Felipa\";}s:9:\"Fjord One\";a:2:{s:5:\"label\";s:9:\"Fjord One\";s:5:\"value\";s:9:\"Fjord One\";}s:8:\"Flamenco\";a:2:{s:5:\"label\";s:8:\"Flamenco\";s:5:\"value\";s:8:\"Flamenco\";}s:7:\"Flavors\";a:2:{s:5:\"label\";s:7:\"Flavors\";s:5:\"value\";s:7:\"Flavors\";}s:10:\"Fondamento\";a:2:{s:5:\"label\";s:10:\"Fondamento\";s:5:\"value\";s:10:\"Fondamento\";}s:16:\"Fontdiner Swanky\";a:2:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:5:\"value\";s:16:\"Fontdiner Swanky\";}s:5:\"Forum\";a:2:{s:5:\"label\";s:5:\"Forum\";s:5:\"value\";s:5:\"Forum\";}s:12:\"Francois One\";a:2:{s:5:\"label\";s:12:\"Francois One\";s:5:\"value\";s:12:\"Francois One\";}s:20:\"Fredericka the Great\";a:2:{s:5:\"label\";s:20:\"Fredericka the Great\";s:5:\"value\";s:20:\"Fredericka the Great\";}s:11:\"Fredoka One\";a:2:{s:5:\"label\";s:11:\"Fredoka One\";s:5:\"value\";s:11:\"Fredoka One\";}s:8:\"Freehand\";a:2:{s:5:\"label\";s:8:\"Freehand\";s:5:\"value\";s:8:\"Freehand\";}s:6:\"Fresca\";a:2:{s:5:\"label\";s:6:\"Fresca\";s:5:\"value\";s:6:\"Fresca\";}s:7:\"Frijole\";a:2:{s:5:\"label\";s:7:\"Frijole\";s:5:\"value\";s:7:\"Frijole\";}s:9:\"Fugaz One\";a:2:{s:5:\"label\";s:9:\"Fugaz One\";s:5:\"value\";s:9:\"Fugaz One\";}s:9:\"GFS Didot\";a:2:{s:5:\"label\";s:9:\"GFS Didot\";s:5:\"value\";s:9:\"GFS Didot\";}s:15:\"GFS Neohellenic\";a:2:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:5:\"value\";s:15:\"GFS Neohellenic\";}s:8:\"Galdeano\";a:2:{s:5:\"label\";s:8:\"Galdeano\";s:5:\"value\";s:8:\"Galdeano\";}s:13:\"Gentium Basic\";a:2:{s:5:\"label\";s:13:\"Gentium Basic\";s:5:\"value\";s:13:\"Gentium Basic\";}s:18:\"Gentium Book Basic\";a:2:{s:5:\"label\";s:18:\"Gentium Book Basic\";s:5:\"value\";s:18:\"Gentium Book Basic\";}s:3:\"Geo\";a:2:{s:5:\"label\";s:3:\"Geo\";s:5:\"value\";s:3:\"Geo\";}s:7:\"Geostar\";a:2:{s:5:\"label\";s:7:\"Geostar\";s:5:\"value\";s:7:\"Geostar\";}s:12:\"Geostar Fill\";a:2:{s:5:\"label\";s:12:\"Geostar Fill\";s:5:\"value\";s:12:\"Geostar Fill\";}s:12:\"Germania One\";a:2:{s:5:\"label\";s:12:\"Germania One\";s:5:\"value\";s:12:\"Germania One\";}s:14:\"Give You Glory\";a:2:{s:5:\"label\";s:14:\"Give You Glory\";s:5:\"value\";s:14:\"Give You Glory\";}s:13:\"Glass Antiqua\";a:2:{s:5:\"label\";s:13:\"Glass Antiqua\";s:5:\"value\";s:13:\"Glass Antiqua\";}s:6:\"Glegoo\";a:2:{s:5:\"label\";s:6:\"Glegoo\";s:5:\"value\";s:6:\"Glegoo\";}s:17:\"Gloria Hallelujah\";a:2:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:5:\"value\";s:17:\"Gloria Hallelujah\";}s:10:\"Goblin One\";a:2:{s:5:\"label\";s:10:\"Goblin One\";s:5:\"value\";s:10:\"Goblin One\";}s:10:\"Gochi Hand\";a:2:{s:5:\"label\";s:10:\"Gochi Hand\";s:5:\"value\";s:10:\"Gochi Hand\";}s:8:\"Gorditas\";a:2:{s:5:\"label\";s:8:\"Gorditas\";s:5:\"value\";s:8:\"Gorditas\";}s:21:\"Goudy Bookletter 1911\";a:2:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:5:\"value\";s:21:\"Goudy Bookletter 1911\";}s:8:\"Graduate\";a:2:{s:5:\"label\";s:8:\"Graduate\";s:5:\"value\";s:8:\"Graduate\";}s:12:\"Gravitas One\";a:2:{s:5:\"label\";s:12:\"Gravitas One\";s:5:\"value\";s:12:\"Gravitas One\";}s:11:\"Great Vibes\";a:2:{s:5:\"label\";s:11:\"Great Vibes\";s:5:\"value\";s:11:\"Great Vibes\";}s:6:\"Gruppo\";a:2:{s:5:\"label\";s:6:\"Gruppo\";s:5:\"value\";s:6:\"Gruppo\";}s:5:\"Gudea\";a:2:{s:5:\"label\";s:5:\"Gudea\";s:5:\"value\";s:5:\"Gudea\";}s:6:\"Habibi\";a:2:{s:5:\"label\";s:6:\"Habibi\";s:5:\"value\";s:6:\"Habibi\";}s:15:\"Hammersmith One\";a:2:{s:5:\"label\";s:15:\"Hammersmith One\";s:5:\"value\";s:15:\"Hammersmith One\";}s:7:\"Handlee\";a:2:{s:5:\"label\";s:7:\"Handlee\";s:5:\"value\";s:7:\"Handlee\";}s:7:\"Hanuman\";a:2:{s:5:\"label\";s:7:\"Hanuman\";s:5:\"value\";s:7:\"Hanuman\";}s:12:\"Happy Monkey\";a:2:{s:5:\"label\";s:12:\"Happy Monkey\";s:5:\"value\";s:12:\"Happy Monkey\";}s:11:\"Henny Penny\";a:2:{s:5:\"label\";s:11:\"Henny Penny\";s:5:\"value\";s:11:\"Henny Penny\";}s:20:\"Herr Von Muellerhoff\";a:2:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:5:\"value\";s:20:\"Herr Von Muellerhoff\";}s:15:\"Holtwood One SC\";a:2:{s:5:\"label\";s:15:\"Holtwood One SC\";s:5:\"value\";s:15:\"Holtwood One SC\";}s:14:\"Homemade Apple\";a:2:{s:5:\"label\";s:14:\"Homemade Apple\";s:5:\"value\";s:14:\"Homemade Apple\";}s:8:\"Homenaje\";a:2:{s:5:\"label\";s:8:\"Homenaje\";s:5:\"value\";s:8:\"Homenaje\";}s:15:\"IM Fell DW Pica\";a:2:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:5:\"value\";s:15:\"IM Fell DW Pica\";}s:18:\"IM Fell DW Pica SC\";a:2:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:5:\"value\";s:18:\"IM Fell DW Pica SC\";}s:19:\"IM Fell Double Pica\";a:2:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:5:\"value\";s:19:\"IM Fell Double Pica\";}s:22:\"IM Fell Double Pica SC\";a:2:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:5:\"value\";s:22:\"IM Fell Double Pica SC\";}s:15:\"IM Fell English\";a:2:{s:5:\"label\";s:15:\"IM Fell English\";s:5:\"value\";s:15:\"IM Fell English\";}s:18:\"IM Fell English SC\";a:2:{s:5:\"label\";s:18:\"IM Fell English SC\";s:5:\"value\";s:18:\"IM Fell English SC\";}s:20:\"IM Fell French Canon\";a:2:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:5:\"value\";s:20:\"IM Fell French Canon\";}s:23:\"IM Fell French Canon SC\";a:2:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:5:\"value\";s:23:\"IM Fell French Canon SC\";}s:20:\"IM Fell Great Primer\";a:2:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:5:\"value\";s:20:\"IM Fell Great Primer\";}s:23:\"IM Fell Great Primer SC\";a:2:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:5:\"value\";s:23:\"IM Fell Great Primer SC\";}s:7:\"Iceberg\";a:2:{s:5:\"label\";s:7:\"Iceberg\";s:5:\"value\";s:7:\"Iceberg\";}s:7:\"Iceland\";a:2:{s:5:\"label\";s:7:\"Iceland\";s:5:\"value\";s:7:\"Iceland\";}s:7:\"Imprima\";a:2:{s:5:\"label\";s:7:\"Imprima\";s:5:\"value\";s:7:\"Imprima\";}s:11:\"Inconsolata\";a:2:{s:5:\"label\";s:11:\"Inconsolata\";s:5:\"value\";s:11:\"Inconsolata\";}s:5:\"Inder\";a:2:{s:5:\"label\";s:5:\"Inder\";s:5:\"value\";s:5:\"Inder\";}s:12:\"Indie Flower\";a:2:{s:5:\"label\";s:12:\"Indie Flower\";s:5:\"value\";s:12:\"Indie Flower\";}s:5:\"Inika\";a:2:{s:5:\"label\";s:5:\"Inika\";s:5:\"value\";s:5:\"Inika\";}s:12:\"Irish Grover\";a:2:{s:5:\"label\";s:12:\"Irish Grover\";s:5:\"value\";s:12:\"Irish Grover\";}s:9:\"Istok Web\";a:2:{s:5:\"label\";s:9:\"Istok Web\";s:5:\"value\";s:9:\"Istok Web\";}s:8:\"Italiana\";a:2:{s:5:\"label\";s:8:\"Italiana\";s:5:\"value\";s:8:\"Italiana\";}s:9:\"Italianno\";a:2:{s:5:\"label\";s:9:\"Italianno\";s:5:\"value\";s:9:\"Italianno\";}s:14:\"Jim Nightshade\";a:2:{s:5:\"label\";s:14:\"Jim Nightshade\";s:5:\"value\";s:14:\"Jim Nightshade\";}s:10:\"Jockey One\";a:2:{s:5:\"label\";s:10:\"Jockey One\";s:5:\"value\";s:10:\"Jockey One\";}s:12:\"Jolly Lodger\";a:2:{s:5:\"label\";s:12:\"Jolly Lodger\";s:5:\"value\";s:12:\"Jolly Lodger\";}s:12:\"Josefin Sans\";a:2:{s:5:\"label\";s:12:\"Josefin Sans\";s:5:\"value\";s:12:\"Josefin Sans\";}s:12:\"Josefin Slab\";a:2:{s:5:\"label\";s:12:\"Josefin Slab\";s:5:\"value\";s:12:\"Josefin Slab\";}s:6:\"Judson\";a:2:{s:5:\"label\";s:6:\"Judson\";s:5:\"value\";s:6:\"Judson\";}s:5:\"Julee\";a:2:{s:5:\"label\";s:5:\"Julee\";s:5:\"value\";s:5:\"Julee\";}s:5:\"Junge\";a:2:{s:5:\"label\";s:5:\"Junge\";s:5:\"value\";s:5:\"Junge\";}s:4:\"Jura\";a:2:{s:5:\"label\";s:4:\"Jura\";s:5:\"value\";s:4:\"Jura\";}s:17:\"Just Another Hand\";a:2:{s:5:\"label\";s:17:\"Just Another Hand\";s:5:\"value\";s:17:\"Just Another Hand\";}s:23:\"Just Me Again Down Here\";a:2:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:5:\"value\";s:23:\"Just Me Again Down Here\";}s:7:\"Kameron\";a:2:{s:5:\"label\";s:7:\"Kameron\";s:5:\"value\";s:7:\"Kameron\";}s:5:\"Karla\";a:2:{s:5:\"label\";s:5:\"Karla\";s:5:\"value\";s:5:\"Karla\";}s:14:\"Kaushan Script\";a:2:{s:5:\"label\";s:14:\"Kaushan Script\";s:5:\"value\";s:14:\"Kaushan Script\";}s:10:\"Kelly Slab\";a:2:{s:5:\"label\";s:10:\"Kelly Slab\";s:5:\"value\";s:10:\"Kelly Slab\";}s:5:\"Kenia\";a:2:{s:5:\"label\";s:5:\"Kenia\";s:5:\"value\";s:5:\"Kenia\";}s:5:\"Khmer\";a:2:{s:5:\"label\";s:5:\"Khmer\";s:5:\"value\";s:5:\"Khmer\";}s:7:\"Knewave\";a:2:{s:5:\"label\";s:7:\"Knewave\";s:5:\"value\";s:7:\"Knewave\";}s:9:\"Kotta One\";a:2:{s:5:\"label\";s:9:\"Kotta One\";s:5:\"value\";s:9:\"Kotta One\";}s:6:\"Koulen\";a:2:{s:5:\"label\";s:6:\"Koulen\";s:5:\"value\";s:6:\"Koulen\";}s:6:\"Kranky\";a:2:{s:5:\"label\";s:6:\"Kranky\";s:5:\"value\";s:6:\"Kranky\";}s:5:\"Kreon\";a:2:{s:5:\"label\";s:5:\"Kreon\";s:5:\"value\";s:5:\"Kreon\";}s:6:\"Kristi\";a:2:{s:5:\"label\";s:6:\"Kristi\";s:5:\"value\";s:6:\"Kristi\";}s:9:\"Krona One\";a:2:{s:5:\"label\";s:9:\"Krona One\";s:5:\"value\";s:9:\"Krona One\";}s:15:\"La Belle Aurore\";a:2:{s:5:\"label\";s:15:\"La Belle Aurore\";s:5:\"value\";s:15:\"La Belle Aurore\";}s:8:\"Lancelot\";a:2:{s:5:\"label\";s:8:\"Lancelot\";s:5:\"value\";s:8:\"Lancelot\";}s:4:\"Lato\";a:2:{s:5:\"label\";s:4:\"Lato\";s:5:\"value\";s:4:\"Lato\";}s:13:\"League Script\";a:2:{s:5:\"label\";s:13:\"League Script\";s:5:\"value\";s:13:\"League Script\";}s:12:\"Leckerli One\";a:2:{s:5:\"label\";s:12:\"Leckerli One\";s:5:\"value\";s:12:\"Leckerli One\";}s:6:\"Ledger\";a:2:{s:5:\"label\";s:6:\"Ledger\";s:5:\"value\";s:6:\"Ledger\";}s:6:\"Lekton\";a:2:{s:5:\"label\";s:6:\"Lekton\";s:5:\"value\";s:6:\"Lekton\";}s:5:\"Lemon\";a:2:{s:5:\"label\";s:5:\"Lemon\";s:5:\"value\";s:5:\"Lemon\";}s:10:\"Lilita One\";a:2:{s:5:\"label\";s:10:\"Lilita One\";s:5:\"value\";s:10:\"Lilita One\";}s:9:\"Limelight\";a:2:{s:5:\"label\";s:9:\"Limelight\";s:5:\"value\";s:9:\"Limelight\";}s:11:\"Linden Hill\";a:2:{s:5:\"label\";s:11:\"Linden Hill\";s:5:\"value\";s:11:\"Linden Hill\";}s:7:\"Lobster\";a:2:{s:5:\"label\";s:7:\"Lobster\";s:5:\"value\";s:7:\"Lobster\";}s:11:\"Lobster Two\";a:2:{s:5:\"label\";s:11:\"Lobster Two\";s:5:\"value\";s:11:\"Lobster Two\";}s:16:\"Londrina Outline\";a:2:{s:5:\"label\";s:16:\"Londrina Outline\";s:5:\"value\";s:16:\"Londrina Outline\";}s:15:\"Londrina Shadow\";a:2:{s:5:\"label\";s:15:\"Londrina Shadow\";s:5:\"value\";s:15:\"Londrina Shadow\";}s:15:\"Londrina Sketch\";a:2:{s:5:\"label\";s:15:\"Londrina Sketch\";s:5:\"value\";s:15:\"Londrina Sketch\";}s:14:\"Londrina Solid\";a:2:{s:5:\"label\";s:14:\"Londrina Solid\";s:5:\"value\";s:14:\"Londrina Solid\";}s:4:\"Lora\";a:2:{s:5:\"label\";s:4:\"Lora\";s:5:\"value\";s:4:\"Lora\";}s:21:\"Love Ya Like A Sister\";a:2:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:5:\"value\";s:21:\"Love Ya Like A Sister\";}s:17:\"Loved by the King\";a:2:{s:5:\"label\";s:17:\"Loved by the King\";s:5:\"value\";s:17:\"Loved by the King\";}s:14:\"Lovers Quarrel\";a:2:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:5:\"value\";s:14:\"Lovers Quarrel\";}s:12:\"Luckiest Guy\";a:2:{s:5:\"label\";s:12:\"Luckiest Guy\";s:5:\"value\";s:12:\"Luckiest Guy\";}s:8:\"Lusitana\";a:2:{s:5:\"label\";s:8:\"Lusitana\";s:5:\"value\";s:8:\"Lusitana\";}s:7:\"Lustria\";a:2:{s:5:\"label\";s:7:\"Lustria\";s:5:\"value\";s:7:\"Lustria\";}s:7:\"Macondo\";a:2:{s:5:\"label\";s:7:\"Macondo\";s:5:\"value\";s:7:\"Macondo\";}s:18:\"Macondo Swash Caps\";a:2:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:5:\"value\";s:18:\"Macondo Swash Caps\";}s:5:\"Magra\";a:2:{s:5:\"label\";s:5:\"Magra\";s:5:\"value\";s:5:\"Magra\";}s:13:\"Maiden Orange\";a:2:{s:5:\"label\";s:13:\"Maiden Orange\";s:5:\"value\";s:13:\"Maiden Orange\";}s:4:\"Mako\";a:2:{s:5:\"label\";s:4:\"Mako\";s:5:\"value\";s:4:\"Mako\";}s:12:\"Marck Script\";a:2:{s:5:\"label\";s:12:\"Marck Script\";s:5:\"value\";s:12:\"Marck Script\";}s:9:\"Marko One\";a:2:{s:5:\"label\";s:9:\"Marko One\";s:5:\"value\";s:9:\"Marko One\";}s:8:\"Marmelad\";a:2:{s:5:\"label\";s:8:\"Marmelad\";s:5:\"value\";s:8:\"Marmelad\";}s:6:\"Marvel\";a:2:{s:5:\"label\";s:6:\"Marvel\";s:5:\"value\";s:6:\"Marvel\";}s:4:\"Mate\";a:2:{s:5:\"label\";s:4:\"Mate\";s:5:\"value\";s:4:\"Mate\";}s:7:\"Mate SC\";a:2:{s:5:\"label\";s:7:\"Mate SC\";s:5:\"value\";s:7:\"Mate SC\";}s:9:\"Maven Pro\";a:2:{s:5:\"label\";s:9:\"Maven Pro\";s:5:\"value\";s:9:\"Maven Pro\";}s:6:\"Meddon\";a:2:{s:5:\"label\";s:6:\"Meddon\";s:5:\"value\";s:6:\"Meddon\";}s:13:\"MedievalSharp\";a:2:{s:5:\"label\";s:13:\"MedievalSharp\";s:5:\"value\";s:13:\"MedievalSharp\";}s:10:\"Medula One\";a:2:{s:5:\"label\";s:10:\"Medula One\";s:5:\"value\";s:10:\"Medula One\";}s:6:\"Megrim\";a:2:{s:5:\"label\";s:6:\"Megrim\";s:5:\"value\";s:6:\"Megrim\";}s:12:\"Merienda One\";a:2:{s:5:\"label\";s:12:\"Merienda One\";s:5:\"value\";s:12:\"Merienda One\";}s:12:\"Merriweather\";a:2:{s:5:\"label\";s:12:\"Merriweather\";s:5:\"value\";s:12:\"Merriweather\";}s:5:\"Metal\";a:2:{s:5:\"label\";s:5:\"Metal\";s:5:\"value\";s:5:\"Metal\";}s:11:\"Metal Mania\";a:2:{s:5:\"label\";s:11:\"Metal Mania\";s:5:\"value\";s:11:\"Metal Mania\";}s:12:\"Metamorphous\";a:2:{s:5:\"label\";s:12:\"Metamorphous\";s:5:\"value\";s:12:\"Metamorphous\";}s:11:\"Metrophobic\";a:2:{s:5:\"label\";s:11:\"Metrophobic\";s:5:\"value\";s:11:\"Metrophobic\";}s:8:\"Michroma\";a:2:{s:5:\"label\";s:8:\"Michroma\";s:5:\"value\";s:8:\"Michroma\";}s:9:\"Miltonian\";a:2:{s:5:\"label\";s:9:\"Miltonian\";s:5:\"value\";s:9:\"Miltonian\";}s:16:\"Miltonian Tattoo\";a:2:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:5:\"value\";s:16:\"Miltonian Tattoo\";}s:7:\"Miniver\";a:2:{s:5:\"label\";s:7:\"Miniver\";s:5:\"value\";s:7:\"Miniver\";}s:14:\"Miss Fajardose\";a:2:{s:5:\"label\";s:14:\"Miss Fajardose\";s:5:\"value\";s:14:\"Miss Fajardose\";}s:14:\"Modern Antiqua\";a:2:{s:5:\"label\";s:14:\"Modern Antiqua\";s:5:\"value\";s:14:\"Modern Antiqua\";}s:7:\"Molengo\";a:2:{s:5:\"label\";s:7:\"Molengo\";s:5:\"value\";s:7:\"Molengo\";}s:8:\"Monofett\";a:2:{s:5:\"label\";s:8:\"Monofett\";s:5:\"value\";s:8:\"Monofett\";}s:7:\"Monoton\";a:2:{s:5:\"label\";s:7:\"Monoton\";s:5:\"value\";s:7:\"Monoton\";}s:20:\"Monsieur La Doulaise\";a:2:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:5:\"value\";s:20:\"Monsieur La Doulaise\";}s:7:\"Montaga\";a:2:{s:5:\"label\";s:7:\"Montaga\";s:5:\"value\";s:7:\"Montaga\";}s:6:\"Montez\";a:2:{s:5:\"label\";s:6:\"Montez\";s:5:\"value\";s:6:\"Montez\";}s:10:\"Montserrat\";a:2:{s:5:\"label\";s:10:\"Montserrat\";s:5:\"value\";s:10:\"Montserrat\";}s:4:\"Moul\";a:2:{s:5:\"label\";s:4:\"Moul\";s:5:\"value\";s:4:\"Moul\";}s:8:\"Moulpali\";a:2:{s:5:\"label\";s:8:\"Moulpali\";s:5:\"value\";s:8:\"Moulpali\";}s:22:\"Mountains of Christmas\";a:2:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:5:\"value\";s:22:\"Mountains of Christmas\";}s:10:\"Mr Bedfort\";a:2:{s:5:\"label\";s:10:\"Mr Bedfort\";s:5:\"value\";s:10:\"Mr Bedfort\";}s:8:\"Mr Dafoe\";a:2:{s:5:\"label\";s:8:\"Mr Dafoe\";s:5:\"value\";s:8:\"Mr Dafoe\";}s:14:\"Mr De Haviland\";a:2:{s:5:\"label\";s:14:\"Mr De Haviland\";s:5:\"value\";s:14:\"Mr De Haviland\";}s:19:\"Mrs Saint Delafield\";a:2:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:5:\"value\";s:19:\"Mrs Saint Delafield\";}s:13:\"Mrs Sheppards\";a:2:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:5:\"value\";s:13:\"Mrs Sheppards\";}s:4:\"Muli\";a:2:{s:5:\"label\";s:4:\"Muli\";s:5:\"value\";s:4:\"Muli\";}s:13:\"Mystery Quest\";a:2:{s:5:\"label\";s:13:\"Mystery Quest\";s:5:\"value\";s:13:\"Mystery Quest\";}s:6:\"Neucha\";a:2:{s:5:\"label\";s:6:\"Neucha\";s:5:\"value\";s:6:\"Neucha\";}s:6:\"Neuton\";a:2:{s:5:\"label\";s:6:\"Neuton\";s:5:\"value\";s:6:\"Neuton\";}s:10:\"News Cycle\";a:2:{s:5:\"label\";s:10:\"News Cycle\";s:5:\"value\";s:10:\"News Cycle\";}s:7:\"Niconne\";a:2:{s:5:\"label\";s:7:\"Niconne\";s:5:\"value\";s:7:\"Niconne\";}s:9:\"Nixie One\";a:2:{s:5:\"label\";s:9:\"Nixie One\";s:5:\"value\";s:9:\"Nixie One\";}s:6:\"Nobile\";a:2:{s:5:\"label\";s:6:\"Nobile\";s:5:\"value\";s:6:\"Nobile\";}s:6:\"Nokora\";a:2:{s:5:\"label\";s:6:\"Nokora\";s:5:\"value\";s:6:\"Nokora\";}s:7:\"Norican\";a:2:{s:5:\"label\";s:7:\"Norican\";s:5:\"value\";s:7:\"Norican\";}s:7:\"Nosifer\";a:2:{s:5:\"label\";s:7:\"Nosifer\";s:5:\"value\";s:7:\"Nosifer\";}s:20:\"Nothing You Could Do\";a:2:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:5:\"value\";s:20:\"Nothing You Could Do\";}s:12:\"Noticia Text\";a:2:{s:5:\"label\";s:12:\"Noticia Text\";s:5:\"value\";s:12:\"Noticia Text\";}s:8:\"Nova Cut\";a:2:{s:5:\"label\";s:8:\"Nova Cut\";s:5:\"value\";s:8:\"Nova Cut\";}s:9:\"Nova Flat\";a:2:{s:5:\"label\";s:9:\"Nova Flat\";s:5:\"value\";s:9:\"Nova Flat\";}s:9:\"Nova Mono\";a:2:{s:5:\"label\";s:9:\"Nova Mono\";s:5:\"value\";s:9:\"Nova Mono\";}s:9:\"Nova Oval\";a:2:{s:5:\"label\";s:9:\"Nova Oval\";s:5:\"value\";s:9:\"Nova Oval\";}s:10:\"Nova Round\";a:2:{s:5:\"label\";s:10:\"Nova Round\";s:5:\"value\";s:10:\"Nova Round\";}s:11:\"Nova Script\";a:2:{s:5:\"label\";s:11:\"Nova Script\";s:5:\"value\";s:11:\"Nova Script\";}s:9:\"Nova Slim\";a:2:{s:5:\"label\";s:9:\"Nova Slim\";s:5:\"value\";s:9:\"Nova Slim\";}s:11:\"Nova Square\";a:2:{s:5:\"label\";s:11:\"Nova Square\";s:5:\"value\";s:11:\"Nova Square\";}s:6:\"Numans\";a:2:{s:5:\"label\";s:6:\"Numans\";s:5:\"value\";s:6:\"Numans\";}s:6:\"Nunito\";a:2:{s:5:\"label\";s:6:\"Nunito\";s:5:\"value\";s:6:\"Nunito\";}s:14:\"Odor Mean Chey\";a:2:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:5:\"value\";s:14:\"Odor Mean Chey\";}s:15:\"Old Standard TT\";a:2:{s:5:\"label\";s:15:\"Old Standard TT\";s:5:\"value\";s:15:\"Old Standard TT\";}s:9:\"Oldenburg\";a:2:{s:5:\"label\";s:9:\"Oldenburg\";s:5:\"value\";s:9:\"Oldenburg\";}s:11:\"Oleo Script\";a:2:{s:5:\"label\";s:11:\"Oleo Script\";s:5:\"value\";s:11:\"Oleo Script\";}s:9:\"Open Sans\";a:2:{s:5:\"label\";s:9:\"Open Sans\";s:5:\"value\";s:9:\"Open Sans\";}s:19:\"Open Sans Condensed\";a:2:{s:5:\"label\";s:19:\"Open Sans Condensed\";s:5:\"value\";s:19:\"Open Sans Condensed\";}s:8:\"Orbitron\";a:2:{s:5:\"label\";s:8:\"Orbitron\";s:5:\"value\";s:8:\"Orbitron\";}s:15:\"Original Surfer\";a:2:{s:5:\"label\";s:15:\"Original Surfer\";s:5:\"value\";s:15:\"Original Surfer\";}s:6:\"Oswald\";a:2:{s:5:\"label\";s:6:\"Oswald\";s:5:\"value\";s:6:\"Oswald\";}s:16:\"Over the Rainbow\";a:2:{s:5:\"label\";s:16:\"Over the Rainbow\";s:5:\"value\";s:16:\"Over the Rainbow\";}s:8:\"Overlock\";a:2:{s:5:\"label\";s:8:\"Overlock\";s:5:\"value\";s:8:\"Overlock\";}s:11:\"Overlock SC\";a:2:{s:5:\"label\";s:11:\"Overlock SC\";s:5:\"value\";s:11:\"Overlock SC\";}s:3:\"Ovo\";a:2:{s:5:\"label\";s:3:\"Ovo\";s:5:\"value\";s:3:\"Ovo\";}s:6:\"Oxygen\";a:2:{s:5:\"label\";s:6:\"Oxygen\";s:5:\"value\";s:6:\"Oxygen\";}s:7:\"PT Mono\";a:2:{s:5:\"label\";s:7:\"PT Mono\";s:5:\"value\";s:7:\"PT Mono\";}s:7:\"PT Sans\";a:2:{s:5:\"label\";s:7:\"PT Sans\";s:5:\"value\";s:7:\"PT Sans\";}s:15:\"PT Sans Caption\";a:2:{s:5:\"label\";s:15:\"PT Sans Caption\";s:5:\"value\";s:15:\"PT Sans Caption\";}s:14:\"PT Sans Narrow\";a:2:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:5:\"value\";s:14:\"PT Sans Narrow\";}s:8:\"PT Serif\";a:2:{s:5:\"label\";s:8:\"PT Serif\";s:5:\"value\";s:8:\"PT Serif\";}s:16:\"PT Serif Caption\";a:2:{s:5:\"label\";s:16:\"PT Serif Caption\";s:5:\"value\";s:16:\"PT Serif Caption\";}s:8:\"Pacifico\";a:2:{s:5:\"label\";s:8:\"Pacifico\";s:5:\"value\";s:8:\"Pacifico\";}s:10:\"Parisienne\";a:2:{s:5:\"label\";s:10:\"Parisienne\";s:5:\"value\";s:10:\"Parisienne\";}s:11:\"Passero One\";a:2:{s:5:\"label\";s:11:\"Passero One\";s:5:\"value\";s:11:\"Passero One\";}s:11:\"Passion One\";a:2:{s:5:\"label\";s:11:\"Passion One\";s:5:\"value\";s:11:\"Passion One\";}s:12:\"Patrick Hand\";a:2:{s:5:\"label\";s:12:\"Patrick Hand\";s:5:\"value\";s:12:\"Patrick Hand\";}s:9:\"Patua One\";a:2:{s:5:\"label\";s:9:\"Patua One\";s:5:\"value\";s:9:\"Patua One\";}s:11:\"Paytone One\";a:2:{s:5:\"label\";s:11:\"Paytone One\";s:5:\"value\";s:11:\"Paytone One\";}s:16:\"Permanent Marker\";a:2:{s:5:\"label\";s:16:\"Permanent Marker\";s:5:\"value\";s:16:\"Permanent Marker\";}s:7:\"Petrona\";a:2:{s:5:\"label\";s:7:\"Petrona\";s:5:\"value\";s:7:\"Petrona\";}s:11:\"Philosopher\";a:2:{s:5:\"label\";s:11:\"Philosopher\";s:5:\"value\";s:11:\"Philosopher\";}s:6:\"Piedra\";a:2:{s:5:\"label\";s:6:\"Piedra\";s:5:\"value\";s:6:\"Piedra\";}s:13:\"Pinyon Script\";a:2:{s:5:\"label\";s:13:\"Pinyon Script\";s:5:\"value\";s:13:\"Pinyon Script\";}s:7:\"Plaster\";a:2:{s:5:\"label\";s:7:\"Plaster\";s:5:\"value\";s:7:\"Plaster\";}s:4:\"Play\";a:2:{s:5:\"label\";s:4:\"Play\";s:5:\"value\";s:4:\"Play\";}s:8:\"Playball\";a:2:{s:5:\"label\";s:8:\"Playball\";s:5:\"value\";s:8:\"Playball\";}s:16:\"Playfair Display\";a:2:{s:5:\"label\";s:16:\"Playfair Display\";s:5:\"value\";s:16:\"Playfair Display\";}s:7:\"Podkova\";a:2:{s:5:\"label\";s:7:\"Podkova\";s:5:\"value\";s:7:\"Podkova\";}s:10:\"Poiret One\";a:2:{s:5:\"label\";s:10:\"Poiret One\";s:5:\"value\";s:10:\"Poiret One\";}s:10:\"Poller One\";a:2:{s:5:\"label\";s:10:\"Poller One\";s:5:\"value\";s:10:\"Poller One\";}s:4:\"Poly\";a:2:{s:5:\"label\";s:4:\"Poly\";s:5:\"value\";s:4:\"Poly\";}s:8:\"Pompiere\";a:2:{s:5:\"label\";s:8:\"Pompiere\";s:5:\"value\";s:8:\"Pompiere\";}s:12:\"Pontano Sans\";a:2:{s:5:\"label\";s:12:\"Pontano Sans\";s:5:\"value\";s:12:\"Pontano Sans\";}s:16:\"Port Lligat Sans\";a:2:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:5:\"value\";s:16:\"Port Lligat Sans\";}s:16:\"Port Lligat Slab\";a:2:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:5:\"value\";s:16:\"Port Lligat Slab\";}s:5:\"Prata\";a:2:{s:5:\"label\";s:5:\"Prata\";s:5:\"value\";s:5:\"Prata\";}s:11:\"Preahvihear\";a:2:{s:5:\"label\";s:11:\"Preahvihear\";s:5:\"value\";s:11:\"Preahvihear\";}s:14:\"Press Start 2P\";a:2:{s:5:\"label\";s:14:\"Press Start 2P\";s:5:\"value\";s:14:\"Press Start 2P\";}s:14:\"Princess Sofia\";a:2:{s:5:\"label\";s:14:\"Princess Sofia\";s:5:\"value\";s:14:\"Princess Sofia\";}s:8:\"Prociono\";a:2:{s:5:\"label\";s:8:\"Prociono\";s:5:\"value\";s:8:\"Prociono\";}s:10:\"Prosto One\";a:2:{s:5:\"label\";s:10:\"Prosto One\";s:5:\"value\";s:10:\"Prosto One\";}s:7:\"Puritan\";a:2:{s:5:\"label\";s:7:\"Puritan\";s:5:\"value\";s:7:\"Puritan\";}s:6:\"Quando\";a:2:{s:5:\"label\";s:6:\"Quando\";s:5:\"value\";s:6:\"Quando\";}s:8:\"Quantico\";a:2:{s:5:\"label\";s:8:\"Quantico\";s:5:\"value\";s:8:\"Quantico\";}s:12:\"Quattrocento\";a:2:{s:5:\"label\";s:12:\"Quattrocento\";s:5:\"value\";s:12:\"Quattrocento\";}s:17:\"Quattrocento Sans\";a:2:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:5:\"value\";s:17:\"Quattrocento Sans\";}s:9:\"Questrial\";a:2:{s:5:\"label\";s:9:\"Questrial\";s:5:\"value\";s:9:\"Questrial\";}s:9:\"Quicksand\";a:2:{s:5:\"label\";s:9:\"Quicksand\";s:5:\"value\";s:9:\"Quicksand\";}s:7:\"Qwigley\";a:2:{s:5:\"label\";s:7:\"Qwigley\";s:5:\"value\";s:7:\"Qwigley\";}s:6:\"Radley\";a:2:{s:5:\"label\";s:6:\"Radley\";s:5:\"value\";s:6:\"Radley\";}s:7:\"Raleway\";a:2:{s:5:\"label\";s:7:\"Raleway\";s:5:\"value\";s:7:\"Raleway\";}s:12:\"Rammetto One\";a:2:{s:5:\"label\";s:12:\"Rammetto One\";s:5:\"value\";s:12:\"Rammetto One\";}s:6:\"Rancho\";a:2:{s:5:\"label\";s:6:\"Rancho\";s:5:\"value\";s:6:\"Rancho\";}s:9:\"Rationale\";a:2:{s:5:\"label\";s:9:\"Rationale\";s:5:\"value\";s:9:\"Rationale\";}s:9:\"Redressed\";a:2:{s:5:\"label\";s:9:\"Redressed\";s:5:\"value\";s:9:\"Redressed\";}s:13:\"Reenie Beanie\";a:2:{s:5:\"label\";s:13:\"Reenie Beanie\";s:5:\"value\";s:13:\"Reenie Beanie\";}s:7:\"Revalia\";a:2:{s:5:\"label\";s:7:\"Revalia\";s:5:\"value\";s:7:\"Revalia\";}s:6:\"Ribeye\";a:2:{s:5:\"label\";s:6:\"Ribeye\";s:5:\"value\";s:6:\"Ribeye\";}s:13:\"Ribeye Marrow\";a:2:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:5:\"value\";s:13:\"Ribeye Marrow\";}s:9:\"Righteous\";a:2:{s:5:\"label\";s:9:\"Righteous\";s:5:\"value\";s:9:\"Righteous\";}s:9:\"Rochester\";a:2:{s:5:\"label\";s:9:\"Rochester\";s:5:\"value\";s:9:\"Rochester\";}s:9:\"Rock Salt\";a:2:{s:5:\"label\";s:9:\"Rock Salt\";s:5:\"value\";s:9:\"Rock Salt\";}s:7:\"Rokkitt\";a:2:{s:5:\"label\";s:7:\"Rokkitt\";s:5:\"value\";s:7:\"Rokkitt\";}s:9:\"Ropa Sans\";a:2:{s:5:\"label\";s:9:\"Ropa Sans\";s:5:\"value\";s:9:\"Ropa Sans\";}s:7:\"Rosario\";a:2:{s:5:\"label\";s:7:\"Rosario\";s:5:\"value\";s:7:\"Rosario\";}s:8:\"Rosarivo\";a:2:{s:5:\"label\";s:8:\"Rosarivo\";s:5:\"value\";s:8:\"Rosarivo\";}s:12:\"Rouge Script\";a:2:{s:5:\"label\";s:12:\"Rouge Script\";s:5:\"value\";s:12:\"Rouge Script\";}s:4:\"Ruda\";a:2:{s:5:\"label\";s:4:\"Ruda\";s:5:\"value\";s:4:\"Ruda\";}s:11:\"Ruge Boogie\";a:2:{s:5:\"label\";s:11:\"Ruge Boogie\";s:5:\"value\";s:11:\"Ruge Boogie\";}s:6:\"Ruluko\";a:2:{s:5:\"label\";s:6:\"Ruluko\";s:5:\"value\";s:6:\"Ruluko\";}s:14:\"Ruslan Display\";a:2:{s:5:\"label\";s:14:\"Ruslan Display\";s:5:\"value\";s:14:\"Ruslan Display\";}s:9:\"Russo One\";a:2:{s:5:\"label\";s:9:\"Russo One\";s:5:\"value\";s:9:\"Russo One\";}s:6:\"Ruthie\";a:2:{s:5:\"label\";s:6:\"Ruthie\";s:5:\"value\";s:6:\"Ruthie\";}s:4:\"Sail\";a:2:{s:5:\"label\";s:4:\"Sail\";s:5:\"value\";s:4:\"Sail\";}s:5:\"Salsa\";a:2:{s:5:\"label\";s:5:\"Salsa\";s:5:\"value\";s:5:\"Salsa\";}s:8:\"Sancreek\";a:2:{s:5:\"label\";s:8:\"Sancreek\";s:5:\"value\";s:8:\"Sancreek\";}s:11:\"Sansita One\";a:2:{s:5:\"label\";s:11:\"Sansita One\";s:5:\"value\";s:11:\"Sansita One\";}s:6:\"Sarina\";a:2:{s:5:\"label\";s:6:\"Sarina\";s:5:\"value\";s:6:\"Sarina\";}s:7:\"Satisfy\";a:2:{s:5:\"label\";s:7:\"Satisfy\";s:5:\"value\";s:7:\"Satisfy\";}s:10:\"Schoolbell\";a:2:{s:5:\"label\";s:10:\"Schoolbell\";s:5:\"value\";s:10:\"Schoolbell\";}s:14:\"Seaweed Script\";a:2:{s:5:\"label\";s:14:\"Seaweed Script\";s:5:\"value\";s:14:\"Seaweed Script\";}s:9:\"Sevillana\";a:2:{s:5:\"label\";s:9:\"Sevillana\";s:5:\"value\";s:9:\"Sevillana\";}s:18:\"Shadows Into Light\";a:2:{s:5:\"label\";s:18:\"Shadows Into Light\";s:5:\"value\";s:18:\"Shadows Into Light\";}s:22:\"Shadows Into Light Two\";a:2:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:5:\"value\";s:22:\"Shadows Into Light Two\";}s:6:\"Shanti\";a:2:{s:5:\"label\";s:6:\"Shanti\";s:5:\"value\";s:6:\"Shanti\";}s:5:\"Share\";a:2:{s:5:\"label\";s:5:\"Share\";s:5:\"value\";s:5:\"Share\";}s:9:\"Shojumaru\";a:2:{s:5:\"label\";s:9:\"Shojumaru\";s:5:\"value\";s:9:\"Shojumaru\";}s:11:\"Short Stack\";a:2:{s:5:\"label\";s:11:\"Short Stack\";s:5:\"value\";s:11:\"Short Stack\";}s:8:\"Siemreap\";a:2:{s:5:\"label\";s:8:\"Siemreap\";s:5:\"value\";s:8:\"Siemreap\";}s:10:\"Sigmar One\";a:2:{s:5:\"label\";s:10:\"Sigmar One\";s:5:\"value\";s:10:\"Sigmar One\";}s:7:\"Signika\";a:2:{s:5:\"label\";s:7:\"Signika\";s:5:\"value\";s:7:\"Signika\";}s:16:\"Signika Negative\";a:2:{s:5:\"label\";s:16:\"Signika Negative\";s:5:\"value\";s:16:\"Signika Negative\";}s:9:\"Simonetta\";a:2:{s:5:\"label\";s:9:\"Simonetta\";s:5:\"value\";s:9:\"Simonetta\";}s:13:\"Sirin Stencil\";a:2:{s:5:\"label\";s:13:\"Sirin Stencil\";s:5:\"value\";s:13:\"Sirin Stencil\";}s:8:\"Six Caps\";a:2:{s:5:\"label\";s:8:\"Six Caps\";s:5:\"value\";s:8:\"Six Caps\";}s:7:\"Slackey\";a:2:{s:5:\"label\";s:7:\"Slackey\";s:5:\"value\";s:7:\"Slackey\";}s:6:\"Smokum\";a:2:{s:5:\"label\";s:6:\"Smokum\";s:5:\"value\";s:6:\"Smokum\";}s:6:\"Smythe\";a:2:{s:5:\"label\";s:6:\"Smythe\";s:5:\"value\";s:6:\"Smythe\";}s:7:\"Sniglet\";a:2:{s:5:\"label\";s:7:\"Sniglet\";s:5:\"value\";s:7:\"Sniglet\";}s:7:\"Snippet\";a:2:{s:5:\"label\";s:7:\"Snippet\";s:5:\"value\";s:7:\"Snippet\";}s:5:\"Sofia\";a:2:{s:5:\"label\";s:5:\"Sofia\";s:5:\"value\";s:5:\"Sofia\";}s:10:\"Sonsie One\";a:2:{s:5:\"label\";s:10:\"Sonsie One\";s:5:\"value\";s:10:\"Sonsie One\";}s:16:\"Sorts Mill Goudy\";a:2:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:5:\"value\";s:16:\"Sorts Mill Goudy\";}s:15:\"Source Sans Pro\";a:2:{s:5:\"label\";s:15:\"Source Sans Pro\";s:5:\"value\";s:15:\"Source Sans Pro\";}s:13:\"Special Elite\";a:2:{s:5:\"label\";s:13:\"Special Elite\";s:5:\"value\";s:13:\"Special Elite\";}s:10:\"Spicy Rice\";a:2:{s:5:\"label\";s:10:\"Spicy Rice\";s:5:\"value\";s:10:\"Spicy Rice\";}s:9:\"Spinnaker\";a:2:{s:5:\"label\";s:9:\"Spinnaker\";s:5:\"value\";s:9:\"Spinnaker\";}s:6:\"Spirax\";a:2:{s:5:\"label\";s:6:\"Spirax\";s:5:\"value\";s:6:\"Spirax\";}s:10:\"Squada One\";a:2:{s:5:\"label\";s:10:\"Squada One\";s:5:\"value\";s:10:\"Squada One\";}s:15:\"Stardos Stencil\";a:2:{s:5:\"label\";s:15:\"Stardos Stencil\";s:5:\"value\";s:15:\"Stardos Stencil\";}s:21:\"Stint Ultra Condensed\";a:2:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:5:\"value\";s:21:\"Stint Ultra Condensed\";}s:20:\"Stint Ultra Expanded\";a:2:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:5:\"value\";s:20:\"Stint Ultra Expanded\";}s:5:\"Stoke\";a:2:{s:5:\"label\";s:5:\"Stoke\";s:5:\"value\";s:5:\"Stoke\";}s:19:\"Sue Ellen Francisco\";a:2:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:5:\"value\";s:19:\"Sue Ellen Francisco\";}s:9:\"Sunshiney\";a:2:{s:5:\"label\";s:9:\"Sunshiney\";s:5:\"value\";s:9:\"Sunshiney\";}s:16:\"Supermercado One\";a:2:{s:5:\"label\";s:16:\"Supermercado One\";s:5:\"value\";s:16:\"Supermercado One\";}s:11:\"Suwannaphum\";a:2:{s:5:\"label\";s:11:\"Suwannaphum\";s:5:\"value\";s:11:\"Suwannaphum\";}s:18:\"Swanky and Moo Moo\";a:2:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:5:\"value\";s:18:\"Swanky and Moo Moo\";}s:9:\"Syncopate\";a:2:{s:5:\"label\";s:9:\"Syncopate\";s:5:\"value\";s:9:\"Syncopate\";}s:9:\"Tangerine\";a:2:{s:5:\"label\";s:9:\"Tangerine\";s:5:\"value\";s:9:\"Tangerine\";}s:6:\"Taprom\";a:2:{s:5:\"label\";s:6:\"Taprom\";s:5:\"value\";s:6:\"Taprom\";}s:5:\"Telex\";a:2:{s:5:\"label\";s:5:\"Telex\";s:5:\"value\";s:5:\"Telex\";}s:10:\"Tenor Sans\";a:2:{s:5:\"label\";s:10:\"Tenor Sans\";s:5:\"value\";s:10:\"Tenor Sans\";}s:18:\"The Girl Next Door\";a:2:{s:5:\"label\";s:18:\"The Girl Next Door\";s:5:\"value\";s:18:\"The Girl Next Door\";}s:6:\"Tienne\";a:2:{s:5:\"label\";s:6:\"Tienne\";s:5:\"value\";s:6:\"Tienne\";}s:5:\"Tinos\";a:2:{s:5:\"label\";s:5:\"Tinos\";s:5:\"value\";s:5:\"Tinos\";}s:9:\"Titan One\";a:2:{s:5:\"label\";s:9:\"Titan One\";s:5:\"value\";s:9:\"Titan One\";}s:11:\"Trade Winds\";a:2:{s:5:\"label\";s:11:\"Trade Winds\";s:5:\"value\";s:11:\"Trade Winds\";}s:7:\"Trocchi\";a:2:{s:5:\"label\";s:7:\"Trocchi\";s:5:\"value\";s:7:\"Trocchi\";}s:7:\"Trochut\";a:2:{s:5:\"label\";s:7:\"Trochut\";s:5:\"value\";s:7:\"Trochut\";}s:7:\"Trykker\";a:2:{s:5:\"label\";s:7:\"Trykker\";s:5:\"value\";s:7:\"Trykker\";}s:10:\"Tulpen One\";a:2:{s:5:\"label\";s:10:\"Tulpen One\";s:5:\"value\";s:10:\"Tulpen One\";}s:6:\"Ubuntu\";a:2:{s:5:\"label\";s:6:\"Ubuntu\";s:5:\"value\";s:6:\"Ubuntu\";}s:16:\"Ubuntu Condensed\";a:2:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:5:\"value\";s:16:\"Ubuntu Condensed\";}s:11:\"Ubuntu Mono\";a:2:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:5:\"value\";s:11:\"Ubuntu Mono\";}s:5:\"Ultra\";a:2:{s:5:\"label\";s:5:\"Ultra\";s:5:\"value\";s:5:\"Ultra\";}s:14:\"Uncial Antiqua\";a:2:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:5:\"value\";s:14:\"Uncial Antiqua\";}s:14:\"UnifrakturCook\";a:2:{s:5:\"label\";s:14:\"UnifrakturCook\";s:5:\"value\";s:14:\"UnifrakturCook\";}s:18:\"UnifrakturMaguntia\";a:2:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:5:\"value\";s:18:\"UnifrakturMaguntia\";}s:7:\"Unkempt\";a:2:{s:5:\"label\";s:7:\"Unkempt\";s:5:\"value\";s:7:\"Unkempt\";}s:6:\"Unlock\";a:2:{s:5:\"label\";s:6:\"Unlock\";s:5:\"value\";s:6:\"Unlock\";}s:4:\"Unna\";a:2:{s:5:\"label\";s:4:\"Unna\";s:5:\"value\";s:4:\"Unna\";}s:5:\"VT323\";a:2:{s:5:\"label\";s:5:\"VT323\";s:5:\"value\";s:5:\"VT323\";}s:6:\"Varela\";a:2:{s:5:\"label\";s:6:\"Varela\";s:5:\"value\";s:6:\"Varela\";}s:12:\"Varela Round\";a:2:{s:5:\"label\";s:12:\"Varela Round\";s:5:\"value\";s:12:\"Varela Round\";}s:11:\"Vast Shadow\";a:2:{s:5:\"label\";s:11:\"Vast Shadow\";s:5:\"value\";s:11:\"Vast Shadow\";}s:5:\"Vibur\";a:2:{s:5:\"label\";s:5:\"Vibur\";s:5:\"value\";s:5:\"Vibur\";}s:8:\"Vidaloka\";a:2:{s:5:\"label\";s:8:\"Vidaloka\";s:5:\"value\";s:8:\"Vidaloka\";}s:4:\"Viga\";a:2:{s:5:\"label\";s:4:\"Viga\";s:5:\"value\";s:4:\"Viga\";}s:5:\"Voces\";a:2:{s:5:\"label\";s:5:\"Voces\";s:5:\"value\";s:5:\"Voces\";}s:7:\"Volkhov\";a:2:{s:5:\"label\";s:7:\"Volkhov\";s:5:\"value\";s:7:\"Volkhov\";}s:8:\"Vollkorn\";a:2:{s:5:\"label\";s:8:\"Vollkorn\";s:5:\"value\";s:8:\"Vollkorn\";}s:8:\"Voltaire\";a:2:{s:5:\"label\";s:8:\"Voltaire\";s:5:\"value\";s:8:\"Voltaire\";}s:23:\"Waiting for the Sunrise\";a:2:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:5:\"value\";s:23:\"Waiting for the Sunrise\";}s:8:\"Wallpoet\";a:2:{s:5:\"label\";s:8:\"Wallpoet\";s:5:\"value\";s:8:\"Wallpoet\";}s:15:\"Walter Turncoat\";a:2:{s:5:\"label\";s:15:\"Walter Turncoat\";s:5:\"value\";s:15:\"Walter Turncoat\";}s:9:\"Wellfleet\";a:2:{s:5:\"label\";s:9:\"Wellfleet\";s:5:\"value\";s:9:\"Wellfleet\";}s:8:\"Wire One\";a:2:{s:5:\"label\";s:8:\"Wire One\";s:5:\"value\";s:8:\"Wire One\";}s:17:\"Yanone Kaffeesatz\";a:2:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:5:\"value\";s:17:\"Yanone Kaffeesatz\";}s:10:\"Yellowtail\";a:2:{s:5:\"label\";s:10:\"Yellowtail\";s:5:\"value\";s:10:\"Yellowtail\";}s:10:\"Yeseva One\";a:2:{s:5:\"label\";s:10:\"Yeseva One\";s:5:\"value\";s:10:\"Yeseva One\";}s:10:\"Yesteryear\";a:2:{s:5:\"label\";s:10:\"Yesteryear\";s:5:\"value\";s:10:\"Yesteryear\";}s:6:\"Zeyada\";a:2:{s:5:\"label\";s:6:\"Zeyada\";s:5:\"value\";s:6:\"Zeyada\";}}}i:42;a:6:{s:2:\"id\";s:33:\"enter_you_website_or_company_name\";s:5:\"label\";s:33:\"Enter you website or company name\";s:4:\"desc\";s:92:\"This text will be present at the location tab in the footer section of the coming soon page.\";s:3:\"std\";s:12:\"ACME COMPANY\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:17:\"design_and_layout\";}i:43;a:6:{s:2:\"id\";s:18:\"enter_your_address\";s:5:\"label\";s:17:\"Enter you address\";s:4:\"desc\";s:92:\"This text will be present at the location tab in the footer section of the coming soon page.\";s:3:\"std\";s:33:\"230 New Found lane, 8900 New City\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:17:\"design_and_layout\";}i:44;a:6:{s:2:\"id\";s:23:\"enter_your_phone_number\";s:5:\"label\";s:23:\"Enter your phone number\";s:4:\"desc\";s:93:\"The number will be present at the location tab in the footer section of the coming soon page.\";s:3:\"std\";s:14:\"+555 53211 777\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:17:\"design_and_layout\";}i:45;a:6:{s:2:\"id\";s:24:\"enter_your_email_address\";s:5:\"label\";s:24:\"Enter your email address\";s:4:\"desc\";s:320:\"This address will be used for receiving notifications from the subscription form on the coming soon page. It will also be displayed on the location tab of the footer section.<br><b>Emails are not stored in WordPress nor sent to any 3rd party services like MailChimp. You will only receive them on this email address.</b>\";s:3:\"std\";s:19:\"someone@example.com\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:17:\"design_and_layout\";}i:46;a:6:{s:2:\"id\";s:20:\"translation_settings\";s:5:\"label\";s:20:\"Translation settings\";s:4:\"desc\";s:111:\"Here you can replace the default coming soon language variables. Just enter your desired text and save changes.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:16:\"textblock-titled\";s:7:\"section\";s:11:\"translation\";}i:47;a:6:{s:2:\"id\";s:23:\"sign_up_form_intro_text\";s:5:\"label\";s:23:\"Sign-up form intro text\";s:4:\"desc\";s:65:\"Here you can specify the desired intro text of your sign-up from.\";s:3:\"std\";s:34:\"Sign up to find out when we launch\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:11:\"translation\";}i:48;a:6:{s:2:\"id\";s:19:\"sign_up_button_text\";s:5:\"label\";s:19:\"Sign up button text\";s:4:\"desc\";s:54:\"Here you can replace the default Sign up buttons text.\";s:3:\"std\";s:7:\"Sign Up\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:11:\"translation\";}i:49;a:6:{s:2:\"id\";s:23:\"social_links_intro_text\";s:5:\"label\";s:23:\"Social links intro text\";s:4:\"desc\";s:99:\"Here you can translate the intro text above the social icons on the last tab of the footer section.\";s:3:\"std\";s:40:\"Are you social? We are, find us below ;)\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:11:\"translation\";}i:50;a:6:{s:2:\"id\";s:16:\"enter_email_text\";s:5:\"label\";s:16:\"Enter Email text\";s:4:\"desc\";s:57:\"Here you can translate text inside the subscription form.\";s:3:\"std\";s:14:\"Enter Email...\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:11:\"translation\";}i:51;a:6:{s:2:\"id\";s:26:\"email_confirmation___error\";s:5:\"label\";s:26:\"Email confirmation - Error\";s:4:\"desc\";s:65:\"Here you can translate the error message from the form submition.\";s:3:\"std\";s:34:\"Please, enter valid email address.\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:11:\"translation\";}i:52;a:6:{s:2:\"id\";s:28:\"email_confirmation___success\";s:5:\"label\";s:28:\"Email confirmation - Success\";s:4:\"desc\";s:67:\"Here you can translate the success message from the form submition.\";s:3:\"std\";s:29:\"You will be notified, thanks.\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:11:\"translation\";}i:53;a:6:{s:2:\"id\";s:20:\"nifty_days_translate\";s:5:\"label\";s:25:\"Translate the word \"days\"\";s:4:\"desc\";s:84:\"Here you can translate the language string for \"days\" label, just below the counter.\";s:3:\"std\";s:4:\"days\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:11:\"translation\";}i:54;a:6:{s:2:\"id\";s:21:\"nifty_hours_translate\";s:5:\"label\";s:26:\"Translate the word \"hours\"\";s:4:\"desc\";s:85:\"Here you can translate the language string for \"hours\" label, just below the counter.\";s:3:\"std\";s:5:\"hours\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:11:\"translation\";}i:55;a:6:{s:2:\"id\";s:23:\"nifty_minutes_translate\";s:5:\"label\";s:28:\"Translate the word \"minutes\"\";s:4:\"desc\";s:87:\"Here you can translate the language string for \"minutes\" label, just below the counter.\";s:3:\"std\";s:7:\"minutes\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:11:\"translation\";}i:56;a:6:{s:2:\"id\";s:23:\"nifty_seconds_translate\";s:5:\"label\";s:28:\"Translate the word \"seconds\"\";s:4:\"desc\";s:87:\"Here you can translate the language string for \"seconds\" label, just below the counter.\";s:3:\"std\";s:7:\"seconds\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:11:\"translation\";}i:57;a:6:{s:2:\"id\";s:15:\"social_settings\";s:5:\"label\";s:15:\"Social settings\";s:4:\"desc\";s:179:\"In order to link the social icons on the coming soon page with your social network pages or accounts, just enter your social profile URL\'s in the provided fields and save changes.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:16:\"textblock-titled\";s:7:\"section\";s:12:\"social_links\";}i:58;a:6:{s:2:\"id\";s:28:\"facebook_page_or_profile_url\";s:5:\"label\";s:28:\"Facebook page or profile URL\";s:4:\"desc\";s:64:\"Enter your full Facebook page or profile URL along with https://\";s:3:\"std\";s:5:\"#link\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"social_links\";}i:59;a:6:{s:2:\"id\";s:11:\"twitter_url\";s:5:\"label\";s:11:\"Twitter URL\";s:4:\"desc\";s:42:\"Enter your Twitter URL along with https://\";s:3:\"std\";s:5:\"#link\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"social_links\";}i:60;a:6:{s:2:\"id\";s:20:\"linkedin_profile_url\";s:5:\"label\";s:20:\"LinkedIn profile URL\";s:4:\"desc\";s:51:\"Enter your LinkedIn profile URL along with https://\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"social_links\";}i:61;a:6:{s:2:\"id\";s:13:\"pinterest_url\";s:5:\"label\";s:13:\"Pinterest URL\";s:4:\"desc\";s:44:\"Enter your Pinterest URL along with https://\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"social_links\";}i:62;a:6:{s:2:\"id\";s:13:\"instagram_url\";s:5:\"label\";s:21:\"Instagram profile URL\";s:4:\"desc\";s:52:\"Enter your Instagram profile URL along with https://\";s:3:\"std\";s:5:\"#link\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"social_links\";}i:63;a:6:{s:2:\"id\";s:9:\"vimeo_url\";s:5:\"label\";s:26:\"Vimeo profile or movie URL\";s:4:\"desc\";s:57:\"Enter your Vimeo profile or video URL along with https://\";s:3:\"std\";s:5:\"#link\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"social_links\";}i:64;a:6:{s:2:\"id\";s:28:\"google___profile_or_page_url\";s:5:\"label\";s:28:\"Google + profile or page URL\";s:4:\"desc\";s:58:\"Enter your Google+ page or profile URL along with https://\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"social_links\";}i:65;a:6:{s:2:\"id\";s:21:\"documentation_and_faq\";s:5:\"label\";s:21:\"Documentation and FAQ\";s:4:\"desc\";s:1059:\"<h3 class=\"label\">NIFTY COMING SOON - Documentation</strong></h3>\r\n\r\n <p>We\'re working on creating videos and written documentation. Till then, if you have any questions use the following places to ask for help:</p>\r\n <ul>\r\n <li><a href=\"https://wordpress.org/support/plugin/nifty-coming-soon-and-under-construction-page\" target=\"_blank\">WordPress Support forum</a></li>\r\n <li><a href=\"https://twitter.com/WebFactoryLtd\" target=\"_blank\">WebFactory on Twitter</a></li>\r\n </ul>\r\n <h3 class=\"label\">RATE THE PLUGIN WITH 5 STARS</h3>\r\n <p>If you find this plugin useful, please take a minute and rate it with 5 start on WordPress. It will help me with keeping up with the updates and new features as always.</p>\r\n <p>Just log in into Your WordPress account and then access the <a href=\"https://wordpress.org/support/plugin/nifty-coming-soon-and-under-construction-page/reviews\" target=\"_blank\"> Review page </a>. Then just click on the button Add my review, make sure that you mark the 5 star and submit your review.</p>\r\n <p>Thanks. :)</p>\r\n </p>\r\n\r\n \";s:3:\"std\";s:0:\"\";s:4:\"type\";s:9:\"textblock\";s:7:\"section\";s:13:\"documentation\";}}}','yes'),(307,'option_tree','a:59:{s:25:\"coming_soon_mode_on___off\";s:3:\"off\";s:24:\"display_count_down_timer\";s:2:\"on\";s:16:\"enable_preloader\";s:2:\"on\";s:19:\"enable_sign_up_form\";s:2:\"on\";s:25:\"insert_custom_signup_form\";s:0:\"\";s:22:\"enable_contact_details\";s:2:\"on\";s:19:\"enable_social_links\";s:2:\"on\";s:18:\"disable_navigation\";s:2:\"on\";s:17:\"disable_animation\";s:2:\"on\";s:28:\"insert_google_analytics_code\";s:0:\"\";s:21:\"insert_additional_css\";s:0:\"\";s:12:\"disable_logo\";s:2:\"on\";s:16:\"upload_your_logo\";s:135:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin//assets/images/logo.png\";s:18:\"display_site_title\";s:3:\"off\";s:24:\"your_coming_soon_message\";s:31:\"Our website is coming very soon\";s:10:\"page_title\";s:39:\"Silverbirch On Hohenhort is coming soon\";s:16:\"page_description\";s:65:\"We are doing some work on our site. Please be patient. Thank you.\";s:32:\"enter_second_coming_soon_message\";s:34:\"Feel free to drop-by any time soon\";s:26:\"setup_the_count_down_timer\";s:16:\"2019-06-24 10:00\";s:20:\"countdown_font_color\";s:7:\"#ffffff\";s:27:\"countdown_font_color_bottom\";s:7:\"#ffffff\";s:16:\"background_color\";s:0:\"\";s:20:\"sign_up_button_color\";s:7:\"#9e0039\";s:26:\"sign_up_button_color_hover\";s:7:\"#9e0039\";s:31:\"disable_background_image_slider\";s:2:\"on\";s:22:\"background_slider_time\";s:5:\"10000\";s:32:\"background_slider_animation_time\";s:4:\"2000\";s:20:\"upload_slider_images\";s:134:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/slideshow/1.jpg\";s:22:\"upload_slider_images_2\";s:134:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/slideshow/2.jpg\";s:22:\"upload_slider_images_3\";s:134:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/slideshow/3.jpg\";s:22:\"upload_slider_images_4\";s:134:\"https://www.silverbirchonhohenhort.co.za/wp-content/plugins/nifty-coming-soon-and-under-construction-page/admin/assets/slideshow/4.jpg\";s:27:\"background_slider_animation\";s:6:\"random\";s:22:\"select_pattern_overlay\";s:6:\"16.png\";s:23:\"pattern_overlay_opacity\";s:3:\"0.5\";s:21:\"choose_sitetitle_font\";s:4:\"Lato\";s:19:\"choose_heading_font\";s:4:\"Lato\";s:19:\"choose_counter_font\";s:7:\"Raleway\";s:21:\"choose_paragraph_font\";s:4:\"Abel\";s:33:\"enter_you_website_or_company_name\";s:12:\"ACME COMPANY\";s:18:\"enter_your_address\";s:33:\"230 New Found lane, 8900 New City\";s:23:\"enter_your_phone_number\";s:14:\"+555 53211 777\";s:24:\"enter_your_email_address\";s:19:\"someone@example.com\";s:23:\"sign_up_form_intro_text\";s:34:\"Sign up to find out when we launch\";s:19:\"sign_up_button_text\";s:7:\"Sign Up\";s:23:\"social_links_intro_text\";s:40:\"Are you social? We are, find us below ;)\";s:16:\"enter_email_text\";s:14:\"Enter Email...\";s:26:\"email_confirmation___error\";s:34:\"Please, enter valid email address.\";s:28:\"email_confirmation___success\";s:29:\"You will be notified, thanks.\";s:20:\"nifty_days_translate\";s:4:\"days\";s:21:\"nifty_hours_translate\";s:5:\"hours\";s:23:\"nifty_minutes_translate\";s:7:\"minutes\";s:23:\"nifty_seconds_translate\";s:7:\"seconds\";s:28:\"facebook_page_or_profile_url\";s:5:\"#link\";s:11:\"twitter_url\";s:5:\"#link\";s:20:\"linkedin_profile_url\";s:0:\"\";s:13:\"pinterest_url\";s:0:\"\";s:13:\"instagram_url\";s:5:\"#link\";s:9:\"vimeo_url\";s:5:\"#link\";s:28:\"google___profile_or_page_url\";s:0:\"\";}','yes'),(308,'ot_media_post_ID','45','yes'),(408,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(2470,'category_children','a:0:{}','yes'),(6499,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1592346154;s:7:\"checked\";a:1:{s:4:\"Divi\";s:6:\"3.24.1\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(7151,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/en_ZA/wordpress-5.4.2.zip\";s:6:\"locale\";s:5:\"en_ZA\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_ZA/wordpress-5.4.2.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.2\";s:7:\"version\";s:5:\"5.4.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.3\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.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.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.2\";s:7:\"version\";s:5:\"5.4.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.3\";s:15:\"partial_version\";s:0:\"\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.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.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.2\";s:7:\"version\";s:5:\"5.4.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.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.3.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.3.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.3.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.3.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.3.4\";s:7:\"version\";s:5:\"5.3.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1592346153;s:15:\"version_checked\";s:5:\"5.2.7\";s:12:\"translations\";a:0:{}}','no'),(7155,'_transient_timeout_et_core_version','1594571717','no'),(7156,'_transient_et_core_version','3.24.1','no'),(7248,'_site_transient_timeout_theme_roots','1592347954','no'),(7249,'_site_transient_theme_roots','a:1:{s:4:\"Divi\";s:7:\"/themes\";}','no'),(7250,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1592346155;s:7:\"checked\";a:1:{s:67:\"nifty-coming-soon-and-under-construction-page/nifty-coming-soon.php\";s:4:\"1.54\";}s:8:\"response\";a:1:{s:67:\"nifty-coming-soon-and-under-construction-page/nifty-coming-soon.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:59:\"w.org/plugins/nifty-coming-soon-and-under-construction-page\";s:4:\"slug\";s:45:\"nifty-coming-soon-and-under-construction-page\";s:6:\"plugin\";s:67:\"nifty-coming-soon-and-under-construction-page/nifty-coming-soon.php\";s:11:\"new_version\";s:4:\"1.56\";s:3:\"url\";s:76:\"https://wordpress.org/plugins/nifty-coming-soon-and-under-construction-page/\";s:7:\"package\";s:93:\"https://downloads.wordpress.org/plugin/nifty-coming-soon-and-under-construction-page.1.56.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:98:\"https://ps.w.org/nifty-coming-soon-and-under-construction-page/assets/icon-256x256.png?rev=1458011\";s:2:\"1x\";s:98:\"https://ps.w.org/nifty-coming-soon-and-under-construction-page/assets/icon-128x128.png?rev=1458011\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:101:\"https://ps.w.org/nifty-coming-soon-and-under-construction-page/assets/banner-1544x500.jpg?rev=1770863\";s:2:\"1x\";s:100:\"https://ps.w.org/nifty-coming-soon-and-under-construction-page/assets/banner-772x250.jpg?rev=1770863\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";s:3:\"5.2\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}}','no'),(7253,'_transient_doing_cron','1594485317.6427569389343261718750','yes'),(7270,'_transient_timeout_et_core_path','1594571717','no'),(7271,'_transient_et_core_path','/home/sboh/public_html/wp-content/themes/Divi/core','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=194 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(6,2,'_edit_lock','1560888368:1'),(7,7,'_edit_lock','1560888530:1'),(8,7,'_et_pb_use_builder','on'),(9,7,'_edit_last','1'),(10,7,'_et_pb_post_hide_nav','default'),(11,7,'_et_pb_page_layout','et_right_sidebar'),(12,7,'_et_pb_side_nav','off'),(13,9,'_wp_attached_file','2019/06/business_01.jpg'),(14,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1290;s:6:\"height\";i:861;s:4:\"file\";s:23:\"2019/06/business_01.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"business_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"business_01-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"business_01-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"business_01-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"business_01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"business_01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"business_01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"business_01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"business_01-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"business_01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15,10,'_wp_attached_file','2019/06/circle-background-pattern.png'),(16,10,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:848;s:4:\"file\";s:37:\"2019/06/circle-background-pattern.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-300x133.png\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-768x339.png\";s:5:\"width\";i:768;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"circle-background-pattern-1024x452.png\";s:5:\"width\";i:1024;s:6:\"height\";i:452;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"circle-background-pattern-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"circle-background-pattern-1080x477.png\";s:5:\"width\";i:1080;s:6:\"height\";i:477;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(17,11,'_wp_attached_file','2019/06/home-office-12.jpg'),(18,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2019/06/home-office-12.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-office-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-office-12-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"home-office-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"home-office-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"home-office-12-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;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:{}}}'),(19,12,'_wp_attached_file','2019/06/home-office-13.jpg'),(20,12,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2019/06/home-office-13.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-office-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-office-13-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"home-office-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"home-office-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"home-office-13-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;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:{}}}'),(21,13,'_wp_attached_file','2019/06/home-office-10-1.jpg'),(22,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2019/06/home-office-10-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"home-office-10-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"home-office-10-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"home-office-10-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"home-office-10-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"home-office-10-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(23,15,'_wp_attached_file','2019/06/Main_Dwelling_Bedroom.jpg'),(24,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1125;s:4:\"file\";s:33:\"2019/06/Main_Dwelling_Bedroom.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Main_Dwelling_Bedroom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Main_Dwelling_Bedroom-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Main_Dwelling_Bedroom-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Main_Dwelling_Bedroom-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Main_Dwelling_Bedroom-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Main_Dwelling_Bedroom-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Main_Dwelling_Bedroom-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Main_Dwelling_Bedroom-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Main_Dwelling_Bedroom-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Main_Dwelling_Bedroom-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(25,16,'_wp_attached_file','2019/06/Main_Dwelling_Exterior2.jpg'),(26,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4500;s:6:\"height\";i:2570;s:4:\"file\";s:35:\"2019/06/Main_Dwelling_Exterior2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Main_Dwelling_Exterior2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Main_Dwelling_Exterior2-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Main_Dwelling_Exterior2-768x439.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Main_Dwelling_Exterior2-1024x585.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"Main_Dwelling_Exterior2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"Main_Dwelling_Exterior2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"Main_Dwelling_Exterior2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"Main_Dwelling_Exterior2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"Main_Dwelling_Exterior2-1080x617.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:617;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"Main_Dwelling_Exterior2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:37:\"Main_Dwelling_Exterior2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27,17,'_wp_attached_file','2019/06/Main_Dwelling_Lounge.jpg'),(28,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1125;s:4:\"file\";s:32:\"2019/06/Main_Dwelling_Lounge.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Main_Dwelling_Lounge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Main_Dwelling_Lounge-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Main_Dwelling_Lounge-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Main_Dwelling_Lounge-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Main_Dwelling_Lounge-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Main_Dwelling_Lounge-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Main_Dwelling_Lounge-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Main_Dwelling_Lounge-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Main_Dwelling_Lounge-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Main_Dwelling_Lounge-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(29,18,'_wp_attached_file','2019/06/Second_Dwelling_Lounge_Downstairs.jpg'),(30,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1800;s:4:\"file\";s:45:\"2019/06/Second_Dwelling_Lounge_Downstairs.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Second_Dwelling_Lounge_Downstairs-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Second_Dwelling_Lounge_Downstairs-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Second_Dwelling_Lounge_Downstairs-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Second_Dwelling_Lounge_Downstairs-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Second_Dwelling_Lounge_Downstairs-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Second_Dwelling_Lounge_Downstairs-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Second_Dwelling_Lounge_Downstairs-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Second_Dwelling_Lounge_Downstairs-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Second_Dwelling_Lounge_Downstairs-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Second_Dwelling_Lounge_Downstairs-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Second_Dwelling_Lounge_Downstairs-1800x1800.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(31,19,'_wp_attached_file','2019/06/Second_Dwelling_Lounge_Upstairs.jpg'),(32,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1488;s:4:\"file\";s:43:\"2019/06/Second_Dwelling_Lounge_Upstairs.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Second_Dwelling_Lounge_Upstairs-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Second_Dwelling_Lounge_Upstairs-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Second_Dwelling_Lounge_Upstairs-768x457.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Second_Dwelling_Lounge_Upstairs-1024x609.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:609;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Second_Dwelling_Lounge_Upstairs-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Second_Dwelling_Lounge_Upstairs-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Second_Dwelling_Lounge_Upstairs-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Second_Dwelling_Lounge_Upstairs-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Second_Dwelling_Lounge_Upstairs-1080x643.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:643;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Second_Dwelling_Lounge_Upstairs-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(33,7,'_et_pb_built_for_post_type','page'),(34,7,'_et_pb_ab_subjects',''),(35,7,'_et_pb_enable_shortcode_tracking',''),(36,7,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"7\" /]'),(37,7,'_et_pb_custom_css',''),(38,7,'_thumbnail_id',''),(39,7,'_et_pb_first_image',''),(40,7,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_5 et_animated et_pb_fullwidth_section et_section_regular\">\n \n \n \n \n <div class=\"et_pb_module et_pb_fullwidth_image et_pb_fullwidth_image_1\">\n \n \n <img src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/16-Bordeaux-Ave-low.jpg\" alt=\"\" />\n \n </div>\n \n \n </div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_6 et_animated et_section_regular\">\n \n \n \n \n <div class=\"et_pb_row et_pb_row_6 et_pb_row_fullwidth et_animated et_hover_enabled et_pb_equal_columns et_pb_gutters1\">\n <div class=\"et_pb_column et_pb_column_1_2 et_pb_column_11 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_text et_pb_text_9 et_animated et_pb_bg_layout_light et_pb_text_align_left\">\n \n \n <div class=\"et_pb_text_inner\">\n designed for distinction silverbirch\n </div>\n </div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_10 et_animated et_pb_bg_layout_light et_pb_text_align_left\">\n \n \n <div class=\"et_pb_text_inner\">\n Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,<br />\ncontemporary and secure residence selling off plan. Occupying a corner setting with<br />\na sprawling 800 sqm of living space Silverbirch is situated on a sylvan site totalling<br />\nmore than 4000 sqm totalling +/- 2000 sqm per house.\n </div>\n </div> <!-- .et_pb_text --><div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_module \">\n <a class=\"et_pb_button et_pb_button_0 et_animated et_pb_bg_layout_light\" href=\"\">Asking Price from: R25 000 000 PLUS VAT</a>\n </div>\n </div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_12 et_pb_css_mix_blend_mode_passthrough et_pb_section_parallax et_pb_column_empty\">\n \n <div class=\"et_parallax_bg\" style=\"background-image: url(https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg);\"></div>\n \n </div> <!-- .et_pb_column -->\n \n \n </div> <!-- .et_pb_row -->\n \n \n </div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_7 et_animated et_pb_with_background et_section_regular\">\n \n \n \n \n <div class=\"et_pb_row et_pb_row_7 et_animated\">\n <div class=\"et_pb_column et_pb_column_4_4 et_pb_column_13 et_pb_css_mix_blend_mode_passthrough et-last-child\">\n \n \n <div class=\"et_pb_module et_pb_text et_pb_text_11 et_animated et_pb_bg_layout_light et_pb_text_align_center\">\n \n \n <div class=\"et_pb_text_inner\">\n Let’s Start Something newSay Hello!\n </div>\n </div> <!-- .et_pb_text -->\n </div> <!-- .et_pb_column -->\n \n \n </div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8 et_animated et_pb_gutters2\">\n <div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14 et_pb_css_mix_blend_mode_passthrough\">\n \n \n \n <div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_0 et_animated et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\">\n \n \n \n <div class=\"et-pb-contact-message\"></div>\n \n <div class=\"et_pb_contact\">\n <form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://www.silverbirchonhohenhort.co.za/\">\n <p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_last\" data-id=\"name\" data-type=\"input\">\n \n \n <label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Name</label>\n <input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n </p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n \n \n <label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n <input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n </p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_last\" data-id=\"company\" data-type=\"input\">\n \n \n <label for=\"et_pb_contact_company_0\" class=\"et_pb_contact_form_label\">Company Name</label>\n <input type=\"text\" id=\"et_pb_contact_company_0\" class=\"input\" value=\"\" name=\"et_pb_contact_company_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"company\" placeholder=\"Company Name\">\n </p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n \n \n <label for=\"et_pb_contact_message_0\" class=\"et_pb_contact_form_label\">Message</label>\n <textarea name=\"et_pb_contact_message_0\" id=\"et_pb_contact_message_0\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n </p>\n <input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\">\n <input type=\"text\" value=\"\" name=\"et_pb_contactform_validate_0\" class=\"et_pb_contactform_validate_field\" />\n <div class=\"et_contact_bottom_container\">\n \n <button type=\"submit\" class=\"et_pb_contact_submit et_pb_button et_pb_custom_button_icon\" data-icon=\"E\">Send</button>\n </div>\n <input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"f447f98ac6\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=dd\" />\n </form>\n </div> <!-- .et_pb_contact -->\n </div> <!-- .et_pb_contact_form_container -->\n \n </div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_6 et_pb_column_15 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_team_member et_pb_team_member_0 et_pb_bg_layout_light clearfix \">\n \n \n <div class=\"et_pb_team_member_image et-waypoint et_pb_animation_off\">\n <img src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" alt=\"Jacques Fourie\" />\n </div>\n <div class=\"et_pb_team_member_description\">\n <h4 class=\"et_pb_module_header\">Jacques Fourie</h4>\n <p class=\"et_pb_member_position\">072 304 7957</p>\n jacques.f@sothebysrealtyss.co.za\n \n </div> <!-- .et_pb_team_member_description -->\n </div> <!-- .et_pb_team_member -->\n </div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_6 et_pb_column_16 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_team_member et_pb_team_member_1 et_pb_bg_layout_light clearfix \">\n \n \n <div class=\"et_pb_team_member_image et-waypoint et_pb_animation_off\">\n <img src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" alt=\"Jo Thomas\" />\n </div>\n <div class=\"et_pb_team_member_description\">\n <h4 class=\"et_pb_module_header\">Jo Thomas</h4>\n <p class=\"et_pb_member_position\">084 404 4120</p>\n jo.t@sothebysrealtyss.co.za\n \n </div> <!-- .et_pb_team_member_description -->\n </div> <!-- .et_pb_team_member -->\n </div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_6 et_pb_column_17 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_team_member et_pb_team_member_2 et_pb_bg_layout_light clearfix \">\n \n \n <div class=\"et_pb_team_member_image et-waypoint et_pb_animation_off\">\n <img src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" alt=\"Rouvaun McKirby\" />\n </div>\n <div class=\"et_pb_team_member_description\">\n <h4 class=\"et_pb_module_header\">Rouvaun McKirby</h4>\n <p class=\"et_pb_member_position\">071 671 0821</p>\n rouvaun.m@sothebysrealtyss.co.za\n \n </div> <!-- .et_pb_team_member_description -->\n </div> <!-- .et_pb_team_member -->\n </div> <!-- .et_pb_column -->\n \n \n </div> <!-- .et_pb_row -->\n \n \n </div> <!-- .et_pb_section --></p>\n'),(41,7,'_et_builder_version','VB|Divi|3.24.1'),(42,7,'_et_pb_show_page_creation','off'),(43,7,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(53,30,'_wp_attached_file','2019/06/LGSIR-new-logo-vector-cmyk-01.png'),(54,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1825;s:6:\"height\";i:495;s:4:\"file\";s:41:\"2019/06/LGSIR-new-logo-vector-cmyk-01.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"LGSIR-new-logo-vector-cmyk-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"LGSIR-new-logo-vector-cmyk-01-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"LGSIR-new-logo-vector-cmyk-01-768x208.png\";s:5:\"width\";i:768;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"LGSIR-new-logo-vector-cmyk-01-1024x278.png\";s:5:\"width\";i:1024;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"LGSIR-new-logo-vector-cmyk-01-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"LGSIR-new-logo-vector-cmyk-01-1080x495.png\";s:5:\"width\";i:1080;s:6:\"height\";i:495;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"LGSIR-new-logo-vector-cmyk-01-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"LGSIR-new-logo-vector-cmyk-01-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"LGSIR-new-logo-vector-cmyk-01-1080x293.png\";s:5:\"width\";i:1080;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"LGSIR-new-logo-vector-cmyk-01-400x495.png\";s:5:\"width\";i:400;s:6:\"height\";i:495;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:{}}}'),(55,31,'_edit_lock','1560934886:1'),(56,31,'_et_pb_use_builder','on'),(57,31,'_edit_last','1'),(58,31,'_et_pb_post_hide_nav','default'),(59,31,'_et_pb_page_layout','et_right_sidebar'),(60,31,'_et_pb_side_nav','off'),(61,33,'_wp_attached_file','2019/06/business-13.jpg'),(62,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:4:\"file\";s:23:\"2019/06/business-13.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"business-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"business-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"business-13-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"business-13-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"business-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"business-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"business-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"business-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"business-13-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"business-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,34,'_wp_attached_file','2019/06/home-office-05.jpg'),(64,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2019/06/home-office-05.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-office-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-office-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home-office-05-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"home-office-05-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"home-office-05-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"home-office-05-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"home-office-05-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"home-office-05-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(65,35,'_wp_attached_file','2019/06/home-office-06.jpg'),(66,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2019/06/home-office-06.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-office-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-office-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home-office-06-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"home-office-06-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"home-office-06-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"home-office-06-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"home-office-06-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"home-office-06-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(67,36,'_wp_attached_file','2019/06/home-office-02.jpg'),(68,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2019/06/home-office-02.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-office-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-office-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home-office-02-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"home-office-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"home-office-02-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"home-office-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"home-office-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"home-office-02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(69,37,'_wp_attached_file','2019/06/home-office-04-1.jpg'),(70,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:28:\"2019/06/home-office-04-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(71,31,'_et_pb_built_for_post_type','page'),(72,31,'_et_pb_ab_subjects',''),(73,31,'_et_pb_enable_shortcode_tracking',''),(74,31,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"31\" /]'),(75,31,'_et_pb_custom_css',''),(76,31,'_thumbnail_id',''),(77,31,'_et_pb_first_image',''),(78,31,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_2 et_animated et_pb_with_background et_section_regular\">\n \n \n \n \n <div class=\"et_pb_row et_pb_row_2 et_animated\">\n <div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4 et_pb_css_mix_blend_mode_passthrough et-last-child\">\n \n \n <div class=\"et_pb_module et_pb_text et_pb_text_4 et_animated et_pb_bg_layout_light et_pb_text_align_left\">\n \n \n <div class=\"et_pb_text_inner\">\n DETAILED BY DESIGN<br />\nHere, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.<br />\nA continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.<br />\n \n </div>\n </div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_divider_0 et_animated et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n </div> <!-- .et_pb_column -->\n \n \n </div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_3 et_animated\">\n <div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_text et_pb_text_5 et_animated et_pb_bg_layout_light et_pb_text_align_left\">\n \n \n <div class=\"et_pb_text_inner\">\n • Double-volume entrance foyer with water feature • TV living room • Formal lounge • Dining room • Open-plan kitchen with walk-through scullery/ pantry • Outside alfresco lounge • Summer lounge • Courtyard area • Timber deck entertainment area • 4 x en-suite bedrooms, each leading onto balcony area • Dressing room in master suite\n </div>\n </div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_divider_1 et_animated et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n </div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6 et_pb_css_mix_blend_mode_passthrough et_pb_section_parallax\">\n \n \n <div class=\"et_pb_module et_pb_text et_pb_text_6 et_pb_bg_layout_light et_pb_text_align_left\">\n \n \n <div class=\"et_pb_text_inner\">\n • Pyjama lounge • Glass-box study • Guest cloakroom • Double garage • Staff quarters • Laundry room • Swimming pool • Other features include; a full-height bookshelf library, roof skylights, large triple-sided wood-burning fireplace and excellent security features\n </div>\n </div> <!-- .et_pb_text -->\n </div> <!-- .et_pb_column -->\n \n \n </div> <!-- .et_pb_row -->\n \n \n </div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_pb_with_background et_section_regular\">\n \n \n \n \n <div class=\"et_pb_row et_pb_row_4\">\n <div class=\"et_pb_column et_pb_column_1_2 et_pb_column_7 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_text et_pb_text_7 et_animated et_pb_bg_layout_light et_pb_text_align_left\">\n \n \n <div class=\"et_pb_text_inner\">\n 01\n </div>\n </div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_cta_0 et_animated et_hover_enabled et_pb_promo et_pb_bg_layout_light et_pb_text_align_left et_pb_no_bg\">\n \n \n <div class=\"et_pb_promo_description\">\n <h2 class=\"et_pb_module_header\">Main Dwelling</h2>\n \n </div>\n <div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"https://www.silverbirchonhohenhort.co.za/main-dwelling\" data-icon=\"E\">View Plan</a></div>\n </div>\n </div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_8 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_image et_pb_image_0 et_animated et-waypoint\">\n \n \n <span class=\"et_pb_image_wrap \"><img src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg\" alt=\"\" /></span>\n </div>\n </div> <!-- .et_pb_column -->\n \n \n </div> <!-- .et_pb_row -->\n \n \n </div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_pb_with_background et_section_regular\">\n \n \n \n \n <div class=\"et_pb_row et_pb_row_5\">\n <div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_image et_pb_image_1 et_animated et-waypoint\">\n \n \n <span class=\"et_pb_image_wrap \"><img src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg\" alt=\"\" /></span>\n </div>\n </div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_text et_pb_text_8 et_animated et_pb_bg_layout_light et_pb_text_align_left\">\n \n \n <div class=\"et_pb_text_inner\">\n 02\n </div>\n </div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_cta_1 et_animated et_hover_enabled et_pb_promo et_pb_bg_layout_light et_pb_text_align_left et_pb_no_bg\">\n \n \n <div class=\"et_pb_promo_description\">\n <h2 class=\"et_pb_module_header\">Second Dwelling</h2>\n \n </div>\n <div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"https://www.silverbirchonhohenhort.co.za/second-dwelling\" data-icon=\"E\">View Plan</a></div>\n </div>\n </div> <!-- .et_pb_column -->\n \n \n </div> <!-- .et_pb_row -->\n \n \n </div> <!-- .et_pb_section --></p>\n'),(79,31,'_et_builder_version','VB|Divi|3.24.1'),(80,31,'_et_pb_show_page_creation','off'),(81,31,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(82,40,'_edit_lock','1560973883:1'),(83,40,'_et_pb_use_builder','on'),(84,40,'_edit_last','1'),(85,40,'_et_pb_post_hide_nav','default'),(86,40,'_et_pb_page_layout','et_right_sidebar'),(87,40,'_et_pb_side_nav','off'),(88,40,'_et_pb_built_for_post_type','page'),(89,40,'_et_pb_ab_subjects',''),(90,40,'_et_pb_enable_shortcode_tracking',''),(91,40,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"40\" /]'),(92,40,'_et_pb_custom_css',''),(93,40,'_thumbnail_id',''),(94,40,'_et_pb_first_image',''),(95,40,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_0 et_animated et_section_regular\">\n \n \n \n \n <div class=\"et_pb_row et_pb_row_0 et_pb_row_fullwidth et_animated et_pb_equal_columns et_pb_gutters1\">\n <div class=\"et_pb_column et_pb_column_1_2 et_pb_column_0 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_text et_pb_text_0 et_animated et_pb_bg_layout_light et_pb_text_align_left\">\n \n \n <div class=\"et_pb_text_inner\">\n Constantia and<br />\nsurrounds\n </div>\n </div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_1 et_animated et_pb_bg_layout_light et_pb_text_align_left\">\n \n \n <div class=\"et_pb_text_inner\">\n Constantia’s leafy tree-lined avenues, country-style ambience, and scenic beauty with<br />\na history going back to 1685 make it a highly desirable location for both international<br />\nvisitors and locals who choose to call it their home.\n </div>\n </div> <!-- .et_pb_text -->\n </div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1 et_pb_css_mix_blend_mode_passthrough et_pb_section_parallax et_pb_column_empty\">\n \n <div class=\"et_parallax_bg\" style=\"background-image: url(https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Silverbirch-Surrounds.jpg);\"></div>\n \n </div> <!-- .et_pb_column -->\n \n \n </div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1 et_pb_gutters2\">\n <div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_text et_pb_text_2 et_pb_bg_layout_light et_pb_text_align_left\">\n \n \n <div class=\"et_pb_text_inner\">\n PLEASURABLE PURSUITS<br />\nA short distance away numerous greenbelt walking and horse-riding trails, from the picturesque Cecilia Forest trails to the Alphen and Silvermine hiking routes, take you from Constantia Nek to the world-renowned Kirstenbosch Botanical Gardens.\n </div>\n </div> <!-- .et_pb_text -->\n </div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_3 et_pb_css_mix_blend_mode_passthrough\">\n \n \n <div class=\"et_pb_module et_pb_text et_pb_text_3 et_pb_bg_layout_light et_pb_text_align_left\">\n \n \n <div class=\"et_pb_text_inner\">\n Close by is an array of restaurant and bistro options from the Jonkershuis Restaurant at Groot Constantia to the historic Buitenverwachting Restaurant to The Greenhouse at The Cellars-Hohenhort to the award winning La Colombe.<br />\nOr venture over to Steenberg vineyards and enjoy Bistro 1682 or Catharina’s or head to Beau Constantia for a selection of delicious wine and sushi. Alternatively indulge in casual al-fresco country dining at the nearby Pastis.\n </div>\n </div> <!-- .et_pb_text -->\n </div> <!-- .et_pb_column -->\n \n \n </div> <!-- .et_pb_row -->\n \n \n </div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_1 et_pb_fullwidth_section et_section_regular\">\n \n \n \n \n <div class=\"et_pb_module et_pb_fullwidth_image et_pb_fullwidth_image_0\">\n \n \n <a href=\"https://www.google.co.za/maps/place/16+Bordeaux+Ave,+Constantia+Heights,+Cape+Town,+7806/@-34.00039,18.4288113,17z/data=!3m1!4b1!4m5!3m4!1s0x1dcc42a1d6106325:0x9a8c5b6fb62792bb!8m2!3d-34.00039!4d18.431?hl=en-GB\" target=\"_blank\"><img src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Screenshot-2019-06-24-at-22.12.07.png\" alt=\"\" />\n </a>\n </div>\n \n \n </div> <!-- .et_pb_section --></p>\n'),(96,40,'_et_builder_version','VB|Divi|3.24.1'),(97,40,'_et_pb_show_page_creation','off'),(98,58,'_wp_attached_file','2019/06/Jacques.jpg'),(99,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1043;s:6:\"height\";i:1732;s:4:\"file\";s:19:\"2019/06/Jacques.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Jacques-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Jacques-181x300.jpg\";s:5:\"width\";i:181;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Jacques-768x1275.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Jacques-617x1024.jpg\";s:5:\"width\";i:617;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Jacques-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"Jacques-1043x675.jpg\";s:5:\"width\";i:1043;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Jacques-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"Jacques-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"Jacques-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1373328000\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(100,59,'_wp_attached_file','2019/06/Jo-Thomas.jpg'),(101,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1043;s:6:\"height\";i:1732;s:4:\"file\";s:21:\"2019/06/Jo-Thomas.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Jo-Thomas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Jo-Thomas-181x300.jpg\";s:5:\"width\";i:181;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Jo-Thomas-768x1275.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Jo-Thomas-617x1024.jpg\";s:5:\"width\";i:617;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"Jo-Thomas-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"Jo-Thomas-1043x675.jpg\";s:5:\"width\";i:1043;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"Jo-Thomas-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"Jo-Thomas-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"Jo-Thomas-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1373328000\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(104,61,'_wp_attached_file','2019/06/Rouvaun-McKirby.jpg'),(105,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1043;s:6:\"height\";i:1732;s:4:\"file\";s:27:\"2019/06/Rouvaun-McKirby.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Rouvaun-McKirby-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Rouvaun-McKirby-181x300.jpg\";s:5:\"width\";i:181;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Rouvaun-McKirby-768x1275.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Rouvaun-McKirby-617x1024.jpg\";s:5:\"width\";i:617;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Rouvaun-McKirby-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Rouvaun-McKirby-1043x675.jpg\";s:5:\"width\";i:1043;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Rouvaun-McKirby-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Rouvaun-McKirby-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Rouvaun-McKirby-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1373328000\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(108,66,'_menu_item_type','custom'),(109,66,'_menu_item_menu_item_parent','0'),(110,66,'_menu_item_object_id','66'),(111,66,'_menu_item_object','custom'),(112,66,'_menu_item_target',''),(113,66,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(114,66,'_menu_item_xfn',''),(115,66,'_menu_item_url','https://www.silverbirchonhohenhort.co.za'),(116,67,'_menu_item_type','post_type'),(117,67,'_menu_item_menu_item_parent','0'),(118,67,'_menu_item_object_id','40'),(119,67,'_menu_item_object','page'),(120,67,'_menu_item_target',''),(121,67,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(122,67,'_menu_item_xfn',''),(123,67,'_menu_item_url',''),(124,68,'_menu_item_type','post_type'),(125,68,'_menu_item_menu_item_parent','0'),(126,68,'_menu_item_object_id','31'),(127,68,'_menu_item_object','page'),(128,68,'_menu_item_target',''),(129,68,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(130,68,'_menu_item_xfn',''),(131,68,'_menu_item_url',''),(134,70,'_wp_attached_file','2019/06/Silverbirch-Surrounds.jpg'),(135,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1579;s:6:\"height\";i:884;s:4:\"file\";s:33:\"2019/06/Silverbirch-Surrounds.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Silverbirch-Surrounds-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Silverbirch-Surrounds-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Silverbirch-Surrounds-768x430.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Silverbirch-Surrounds-1024x573.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Silverbirch-Surrounds-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Silverbirch-Surrounds-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Silverbirch-Surrounds-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Silverbirch-Surrounds-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Silverbirch-Surrounds-1080x605.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:605;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Silverbirch-Surrounds-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(140,40,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(141,82,'_wp_attached_file','2019/06/16-Bordeaux-Ave-low.jpg'),(142,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4500;s:6:\"height\";i:2570;s:4:\"file\";s:31:\"2019/06/16-Bordeaux-Ave-low.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"16-Bordeaux-Ave-low-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"16-Bordeaux-Ave-low-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"16-Bordeaux-Ave-low-768x439.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"16-Bordeaux-Ave-low-1024x585.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"16-Bordeaux-Ave-low-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"16-Bordeaux-Ave-low-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"16-Bordeaux-Ave-low-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"16-Bordeaux-Ave-low-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"16-Bordeaux-Ave-low-1080x617.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:617;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"16-Bordeaux-Ave-low-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"16-Bordeaux-Ave-low-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(145,92,'_wp_attached_file','2019/06/29-June-2019.pdf'),(146,93,'_wp_attached_file','2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg'),(147,93,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:832;s:6:\"height\";i:543;s:4:\"file\";s:55:\"2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"190207-Deon-Stander-Plans-Main-Dwelling-col-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"190207-Deon-Stander-Plans-Main-Dwelling-col-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"190207-Deon-Stander-Plans-Main-Dwelling-col-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"190207-Deon-Stander-Plans-Main-Dwelling-col-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"190207-Deon-Stander-Plans-Main-Dwelling-col-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"190207-Deon-Stander-Plans-Main-Dwelling-col-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"190207-Deon-Stander-Plans-Main-Dwelling-col-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(148,94,'_wp_attached_file','2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg'),(149,94,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:791;s:6:\"height\";i:638;s:4:\"file\";s:57:\"2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"190207-Deon-Stander-Plans-Main-Dwelling-col-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"190207-Deon-Stander-Plans-Main-Dwelling-col-1-300x242.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"190207-Deon-Stander-Plans-Main-Dwelling-col-1-768x619.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:619;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:57:\"190207-Deon-Stander-Plans-Main-Dwelling-col-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:57:\"190207-Deon-Stander-Plans-Main-Dwelling-col-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:57:\"190207-Deon-Stander-Plans-Main-Dwelling-col-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:57:\"190207-Deon-Stander-Plans-Main-Dwelling-col-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(150,96,'_edit_lock','1561404709:1'),(151,96,'_et_pb_use_builder','on'),(152,96,'_edit_last','1'),(153,96,'_et_pb_post_hide_nav','default'),(154,96,'_et_pb_page_layout','et_right_sidebar'),(155,96,'_et_pb_side_nav','off'),(156,99,'_wp_attached_file','2019/06/190115-Schematic-MAIN-DWELLING-FIRST-FLOOR.jpg'),(157,99,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4961;s:6:\"height\";i:3508;s:4:\"file\";s:54:\"2019/06/190115-Schematic-MAIN-DWELLING-FIRST-FLOOR.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"190115-Schematic-MAIN-DWELLING-FIRST-FLOOR-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"190115-Schematic-MAIN-DWELLING-FIRST-FLOOR-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"190115-Schematic-MAIN-DWELLING-FIRST-FLOOR-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"190115-Schematic-MAIN-DWELLING-FIRST-FLOOR-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:54:\"190115-Schematic-MAIN-DWELLING-FIRST-FLOOR-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:55:\"190115-Schematic-MAIN-DWELLING-FIRST-FLOOR-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:54:\"190115-Schematic-MAIN-DWELLING-FIRST-FLOOR-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:54:\"190115-Schematic-MAIN-DWELLING-FIRST-FLOOR-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:55:\"190115-Schematic-MAIN-DWELLING-FIRST-FLOOR-1080x764.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:764;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:54:\"190115-Schematic-MAIN-DWELLING-FIRST-FLOOR-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:56:\"190115-Schematic-MAIN-DWELLING-FIRST-FLOOR-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(158,100,'_wp_attached_file','2019/06/190115-Schematic-MAIN-DWELLING-GROUND-FLOOR.jpg'),(159,100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4961;s:6:\"height\";i:3508;s:4:\"file\";s:55:\"2019/06/190115-Schematic-MAIN-DWELLING-GROUND-FLOOR.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"190115-Schematic-MAIN-DWELLING-GROUND-FLOOR-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"190115-Schematic-MAIN-DWELLING-GROUND-FLOOR-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"190115-Schematic-MAIN-DWELLING-GROUND-FLOOR-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"190115-Schematic-MAIN-DWELLING-GROUND-FLOOR-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"190115-Schematic-MAIN-DWELLING-GROUND-FLOOR-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"190115-Schematic-MAIN-DWELLING-GROUND-FLOOR-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"190115-Schematic-MAIN-DWELLING-GROUND-FLOOR-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"190115-Schematic-MAIN-DWELLING-GROUND-FLOOR-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:56:\"190115-Schematic-MAIN-DWELLING-GROUND-FLOOR-1080x764.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:764;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"190115-Schematic-MAIN-DWELLING-GROUND-FLOOR-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:57:\"190115-Schematic-MAIN-DWELLING-GROUND-FLOOR-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160,96,'_et_pb_built_for_post_type','page'),(161,96,'_et_pb_ab_subjects',''),(162,96,'_et_pb_enable_shortcode_tracking',''),(163,96,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"96\" /]'),(164,96,'_et_pb_custom_css',''),(165,96,'_thumbnail_id',''),(166,96,'_et_pb_first_image',''),(167,96,'_et_pb_truncate_post',''),(168,96,'_et_builder_version','VB|Divi|3.24.1'),(169,96,'_et_pb_show_page_creation','off'),(170,102,'_edit_lock','1561404439:1'),(171,102,'_et_pb_use_builder','on'),(172,102,'_edit_last','1'),(173,102,'_et_pb_post_hide_nav','default'),(174,102,'_et_pb_page_layout','et_right_sidebar'),(175,102,'_et_pb_side_nav','off'),(176,105,'_wp_attached_file','2019/06/190115-Schematic-SECOND-DWELLING-FIRST-FLOOR.jpg'),(177,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4961;s:6:\"height\";i:3508;s:4:\"file\";s:56:\"2019/06/190115-Schematic-SECOND-DWELLING-FIRST-FLOOR.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"190115-Schematic-SECOND-DWELLING-FIRST-FLOOR-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"190115-Schematic-SECOND-DWELLING-FIRST-FLOOR-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"190115-Schematic-SECOND-DWELLING-FIRST-FLOOR-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"190115-Schematic-SECOND-DWELLING-FIRST-FLOOR-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:56:\"190115-Schematic-SECOND-DWELLING-FIRST-FLOOR-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:57:\"190115-Schematic-SECOND-DWELLING-FIRST-FLOOR-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:56:\"190115-Schematic-SECOND-DWELLING-FIRST-FLOOR-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:56:\"190115-Schematic-SECOND-DWELLING-FIRST-FLOOR-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:57:\"190115-Schematic-SECOND-DWELLING-FIRST-FLOOR-1080x764.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:764;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:56:\"190115-Schematic-SECOND-DWELLING-FIRST-FLOOR-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:58:\"190115-Schematic-SECOND-DWELLING-FIRST-FLOOR-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(178,106,'_wp_attached_file','2019/06/190115-Schematic-SECOND-DWELLING-GROUND-FLOOR.jpg'),(179,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4961;s:6:\"height\";i:3508;s:4:\"file\";s:57:\"2019/06/190115-Schematic-SECOND-DWELLING-GROUND-FLOOR.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"190115-Schematic-SECOND-DWELLING-GROUND-FLOOR-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"190115-Schematic-SECOND-DWELLING-GROUND-FLOOR-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"190115-Schematic-SECOND-DWELLING-GROUND-FLOOR-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"190115-Schematic-SECOND-DWELLING-GROUND-FLOOR-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:57:\"190115-Schematic-SECOND-DWELLING-GROUND-FLOOR-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:58:\"190115-Schematic-SECOND-DWELLING-GROUND-FLOOR-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:57:\"190115-Schematic-SECOND-DWELLING-GROUND-FLOOR-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:57:\"190115-Schematic-SECOND-DWELLING-GROUND-FLOOR-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:58:\"190115-Schematic-SECOND-DWELLING-GROUND-FLOOR-1080x764.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:764;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:57:\"190115-Schematic-SECOND-DWELLING-GROUND-FLOOR-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:59:\"190115-Schematic-SECOND-DWELLING-GROUND-FLOOR-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(180,102,'_et_pb_built_for_post_type','page'),(181,102,'_et_pb_ab_subjects',''),(182,102,'_et_pb_enable_shortcode_tracking',''),(183,102,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"102\" /]'),(184,102,'_et_pb_custom_css',''),(185,102,'_thumbnail_id',''),(186,102,'_et_pb_first_image',''),(187,102,'_et_pb_truncate_post',''),(188,102,'_et_builder_version','VB|Divi|3.24.1'),(189,102,'_et_pb_show_page_creation','off'),(190,110,'_wp_attached_file','2019/06/background.jpg'),(191,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:22:\"2019/06/background.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"background-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"background-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"background-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"background-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"background-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"background-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"background-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"background-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(192,118,'_wp_attached_file','2019/06/Screenshot-2019-06-24-at-22.12.07.png'),(193,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1383;s:6:\"height\";i:532;s:4:\"file\";s:45:\"2019/06/Screenshot-2019-06-24-at-22.12.07.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2019-06-24-at-22.12.07-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2019-06-24-at-22.12.07-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Screenshot-2019-06-24-at-22.12.07-768x295.png\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2019-06-24-at-22.12.07-1024x394.png\";s:5:\"width\";i:1024;s:6:\"height\";i:394;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Screenshot-2019-06-24-at-22.12.07-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Screenshot-2019-06-24-at-22.12.07-1080x532.png\";s:5:\"width\";i:1080;s:6:\"height\";i:532;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Screenshot-2019-06-24-at-22.12.07-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Screenshot-2019-06-24-at-22.12.07-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Screenshot-2019-06-24-at-22.12.07-1080x415.png\";s:5:\"width\";i:1080;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Screenshot-2019-06-24-at-22.12.07-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;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 `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=139 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2019-06-13 11:06:55','2019-06-13 09:06:55','<!-- 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!','','publish','open','open','','hello-world','','','2019-06-13 11:06:55','2019-06-13 09:06:55','',0,'https://www.silverbirchonhohenhort.co.za/?p=1',0,'post','',1),(2,1,'2019-06-13 11:06:55','2019-06-13 09:06:55','<!-- 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ñ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.silverbirchonhohenhort.co.za/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','','','2019-06-13 11:06:55','2019-06-13 09:06:55','',0,'https://www.silverbirchonhohenhort.co.za/?page_id=2',0,'page','',0),(3,1,'2019-06-13 11:06:55','2019-06-13 09:06:55','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: https://www.silverbirchonhohenhort.co.za.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymised 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 {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>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 {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>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 "Remember Me", 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 {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>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 {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognise 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>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>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2019-06-13 11:06:55','2019-06-13 09:06:55','',0,'https://www.silverbirchonhohenhort.co.za/?page_id=3',0,'page','',0),(7,1,'2019-06-18 22:38:46','2019-06-18 20:38:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\" animation_style=\"fade\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/16-Bordeaux-Ave-low.jpg\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\" background_color_2__hover_enabled=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"11px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" header_2_font=\"Montserrat||||||||\" header_2_font_size=\"25px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"190px\" custom_margin=\"||7px|||\" animation_style=\"slide\" animation_direction=\"left\" text_font_last_edited=\"on|phone\" header_font_last_edited=\"on|phone\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_2_font_size_last_edited=\"on|desktop\" locked=\"off\"]<h1>designed for distinction<br /> <span style=\"color: #999999;\">silverbirch</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_font_size=\"20px\" text_line_height=\"1.6em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"32px||50px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"17%\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800 sqm<span class=\"s1\"> </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000 sqm <span style=\"font-size: 20px;\">totalling </span><span style=\"font-size: 20px;\">+/- 2000 sqm per house.</span></p>[/et_pb_text][et_pb_button button_text=\"Asking Price from: R25 000 000 PLUS VAT\" _builder_version=\"3.24.1\" custom_button=\"on\" button_text_size=\"20px\" button_bg_use_color_gradient=\"on\" button_bg_color_gradient_start=\"#ffffff\" button_bg_color_gradient_end=\"#afafaf\" button_border_radius=\"23px\" button_font=\"Montserrat||||||||\" button_use_icon=\"off\" box_shadow_style=\"preset3\" box_shadow_horizontal=\"10px\" box_shadow_spread=\"8px\" animation_style=\"slide\" animation_direction=\"bottom\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.24.1\" background_color=\"#ffffff\" custom_padding=\"22px||22px||true|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"|auto|-6px|auto||\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_margin=\"|140px||140px||\" admin_label=\"Contact Form\" _builder_version=\"3.24.1\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" email=\"casey.g@sothebysrealtyss.co.za\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\" body_font=\"Montserrat||||||||\" body_font_size=\"15px\" custom_margin=\"0px|0px||0px\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\" body_font=\"Montserrat||||||||\"]<p>jo.t@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\" body_font=\"Montserrat||||||||\"]<p>rouvaun.m@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','publish','closed','closed','','home','','','2019-07-16 13:05:18','2019-07-16 11:05:18','',0,'https://www.silverbirchonhohenhort.co.za/?page_id=7',0,'page','',0),(8,1,'2019-06-18 22:08:48','2019-06-18 20:08:48','<!-- wp:divi/placeholder /-->','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-18 22:08:48','2019-06-18 20:08:48','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/18/7-revision-v1/',0,'revision','',0),(9,1,'2019-06-18 22:26:22','2019-06-18 20:26:22','','business_01','','inherit','open','closed','','business_01','','','2019-06-18 22:26:22','2019-06-18 20:26:22','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business_01.jpg',0,'attachment','image/jpeg',0),(10,1,'2019-06-18 22:26:23','2019-06-18 20:26:23','','circle-background-pattern','','inherit','open','closed','','circle-background-pattern','','','2019-06-18 22:26:23','2019-06-18 20:26:23','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png',0,'attachment','image/png',0),(11,1,'2019-06-18 22:26:24','2019-06-18 20:26:24','','home-office-12','','inherit','open','closed','','home-office-12','','','2019-06-18 22:26:24','2019-06-18 20:26:24','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-12.jpg',0,'attachment','image/jpeg',0),(12,1,'2019-06-18 22:26:24','2019-06-18 20:26:24','','home-office-13','','inherit','open','closed','','home-office-13','','','2019-06-18 22:26:24','2019-06-18 20:26:24','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-13.jpg',0,'attachment','image/jpeg',0),(13,1,'2019-06-18 22:26:24','2019-06-18 20:26:24','','home-office-10-1','','inherit','open','closed','','home-office-10-1','','','2019-06-18 22:26:24','2019-06-18 20:26:24','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-10-1.jpg',0,'attachment','image/jpeg',0),(15,1,'2019-06-18 22:34:44','2019-06-18 20:34:44','','Main_Dwelling_Bedroom','','inherit','open','closed','','main_dwelling_bedroom','','','2019-06-18 22:34:44','2019-06-18 20:34:44','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Main_Dwelling_Bedroom.jpg',0,'attachment','image/jpeg',0),(16,1,'2019-06-18 22:34:57','2019-06-18 20:34:57','','Main_Dwelling_Exterior2','','inherit','open','closed','','main_dwelling_exterior2','','','2019-06-18 22:34:57','2019-06-18 20:34:57','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Main_Dwelling_Exterior2.jpg',0,'attachment','image/jpeg',0),(17,1,'2019-06-18 22:35:04','2019-06-18 20:35:04','','Main_Dwelling_Lounge','','inherit','open','closed','','main_dwelling_lounge','','','2019-06-18 22:35:04','2019-06-18 20:35:04','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Main_Dwelling_Lounge.jpg',0,'attachment','image/jpeg',0),(18,1,'2019-06-18 22:35:09','2019-06-18 20:35:09','','Second_Dwelling_Lounge_Downstairs','','inherit','open','closed','','second_dwelling_lounge_downstairs','','','2019-06-18 22:35:09','2019-06-18 20:35:09','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg',0,'attachment','image/jpeg',0),(19,1,'2019-06-18 22:35:13','2019-06-18 20:35:13','','Second_Dwelling_Lounge_Upstairs','','inherit','open','closed','','second_dwelling_lounge_upstairs','','','2019-06-18 22:35:13','2019-06-18 20:35:13','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Upstairs.jpg',0,'attachment','image/jpeg',0),(20,1,'2019-06-18 22:38:46','2019-06-18 20:38:46','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.22.7\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_font_size_last_edited=\"off|desktop\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" locked=\"off\"]<h1>designed for distinction<br /><span style=\"color: #999999;\">silverbirch</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.0.83\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has normal.</span></p>[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"p1\">Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800m<span class=\"s1\">2 </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000m<span class=\"s1\">2 </span>which includes a tennis court.</p>[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.0.82\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"25px||25px|\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22.3\" background_color=\"#f7f7f7\" custom_padding=\"110px||110px|\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-12.jpg\" url=\"#\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#fcd21d\" hover_icon=\"%%3%%\" _builder_version=\"3.0.83\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-13.jpg\" url=\"#\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#fcd21d\" hover_icon=\"%%3%%\" _builder_version=\"3.0.83\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-10-1.jpg\" url=\"#\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#fcd21d\" hover_icon=\"%%3%%\" _builder_version=\"3.0.99\" animation_style=\"slide\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22.3\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(255,255,255,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.87\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#353740\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-18 22:38:46','2019-06-18 20:38:46','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/18/7-revision-v1/',0,'revision','',0),(22,1,'2019-06-18 22:51:04','2019-06-18 20:51:04','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.22.7\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_font_size_last_edited=\"off|desktop\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" locked=\"off\"]<h1>designed for distinction<br /><span style=\"color: #999999;\">silverbirch</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.0.83\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has normal.</span></p>[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"p1\">Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800m<span class=\"s1\">2 </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000m<span class=\"s1\">2 </span>which includes a tennis court.</p>[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22.7\" background_color=\"#ffffff\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(255,255,255,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.22.7\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#353740\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" position=\"072 304 7957\" _builder_version=\"3.22.7\"]<p>jacques.f@sothebysrealtyss.co.za</p>\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" position=\"084 404 4120,\" _builder_version=\"3.22.7\"]<p>jo.t@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" position=\"071 671 0821\" _builder_version=\"3.22.7\"]<p>jacques.f@sothebysrealtyss.co.za</p>\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-18 22:51:04','2019-06-18 20:51:04','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/18/7-revision-v1/',0,'revision','',0),(28,1,'2019-06-18 22:57:46','2019-06-18 20:57:46','','Divi','','publish','closed','closed','','divi','','','2019-06-20 10:59:05','2019-06-20 08:59:05','',0,'https://www.silverbirchonhohenhort.co.za/2019/06/18/divi/',0,'custom_css','',0),(29,1,'2019-06-18 22:57:46','2019-06-18 20:57:46','','Divi','','inherit','closed','closed','','28-revision-v1','','','2019-06-18 22:57:46','2019-06-18 20:57:46','',28,'https://www.silverbirchonhohenhort.co.za/2019/06/18/28-revision-v1/',0,'revision','',0),(30,1,'2019-06-19 10:25:19','2019-06-19 08:25:19','','LGSIR-new-logo-vector-cmyk-01','','inherit','open','closed','','lgsir-new-logo-vector-cmyk-01','','','2019-06-19 10:25:19','2019-06-19 08:25:19','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/LGSIR-new-logo-vector-cmyk-01.png',0,'attachment','image/png',0),(31,1,'2019-06-19 21:49:43','2019-06-19 19:49:43','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"||3px|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||-27px|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>DETAILED BY DESIGN</h1>\n<p><span style=\"font-size: large;\">Here, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.</span></p>\n<p class=\"p1\"><span style=\"font-size: large;\">A continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.</span></p>\n<p> </p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"2px|||||\" parallax_2=\"on\" _builder_version=\"3.24.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<p class=\"p1\"><span style=\"font-size: medium;\">• Double-volume entrance foyer with water feature</span><br /> <span style=\"font-size: medium;\"> • TV living room<br /> • Formal lounge<br /> • Dining room<br /> • Open-plan kitchen with walk-through scullery/ pantry<br /> • Outside alfresco lounge<br /> • Summer lounge<br /> • Courtyard area<br /> • Timber deck entertainment area<br /> • 4 x en-suite bedrooms, each leading onto balcony area<br /> • Dressing room in master suite</span></p>\n<p class=\"p1\">[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<p class=\"p1\"><span style=\"font-size: medium;\">• Pyjama lounge</span><br /><span style=\"font-size: medium;\"> • Glass-box study<br /> • Guest cloakroom<br /> • Double garage<br /> • Staff quarters<br /> • Laundry room<br /> • Swimming pool<br /> • Other features include; a full-height bookshelf library, roof skylights,<br /> large triple-sided wood-burning fireplace and excellent security features</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/background.jpg\" background_position=\"bottom_center\" min_height=\"684px\" custom_margin=\"||-78px|||\" custom_padding=\"110px||5px|||\"][et_pb_row custom_padding=\"||0px|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"479px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #002349;\">01</span></p>[/et_pb_text][et_pb_cta title=\"Main Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/main-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"42px|||||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_color=\"#002349\" min_height=\"684px\" custom_margin=\"-1px|||||\" custom_padding=\"1px||110px|||\"][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"37px|||||\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #ffffff;\">02</span></p>[/et_pb_text][et_pb_cta title=\"Second Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/second-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#ffffff\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','publish','closed','closed','','features','','','2019-07-16 20:08:53','2019-07-16 18:08:53','',0,'https://www.silverbirchonhohenhort.co.za/?page_id=31',0,'page','',0),(32,1,'2019-06-19 11:01:25','2019-06-19 09:01:25','<!-- wp:divi/placeholder /-->','Features','','inherit','closed','closed','','31-revision-v1','','','2019-06-19 11:01:25','2019-06-19 09:01:25','',31,'https://www.silverbirchonhohenhort.co.za/2019/06/19/31-revision-v1/',0,'revision','',0),(33,1,'2019-06-19 11:39:31','2019-06-19 09:39:31','','business-13','','inherit','open','closed','','business-13','','','2019-06-19 11:39:31','2019-06-19 09:39:31','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg',0,'attachment','image/jpeg',0),(34,1,'2019-06-19 11:39:32','2019-06-19 09:39:32','','home-office-05','','inherit','open','closed','','home-office-05','','','2019-06-19 11:39:32','2019-06-19 09:39:32','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-05.jpg',0,'attachment','image/jpeg',0),(35,1,'2019-06-19 11:39:33','2019-06-19 09:39:33','','home-office-06','','inherit','open','closed','','home-office-06','','','2019-06-19 11:39:33','2019-06-19 09:39:33','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-06.jpg',0,'attachment','image/jpeg',0),(36,1,'2019-06-19 11:39:33','2019-06-19 09:39:33','','home-office-02','','inherit','open','closed','','home-office-02','','','2019-06-19 11:39:33','2019-06-19 09:39:33','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-02.jpg',0,'attachment','image/jpeg',0),(37,1,'2019-06-19 11:39:36','2019-06-19 09:39:36','','home-office-04-1','','inherit','open','closed','','home-office-04-1','','','2019-06-19 11:39:36','2019-06-19 09:39:36','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-04-1.jpg',0,'attachment','image/jpeg',0),(39,1,'2019-06-19 21:49:43','2019-06-19 19:49:43','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_font_size_last_edited=\"off|desktop\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row custom_padding=\"|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"ABC - Corporate Branding\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-05.jpg\" _builder_version=\"3.0.83\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-06.jpg\" _builder_version=\"3.0.99\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 03\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-02.jpg\" _builder_version=\"3.0.83\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 04\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-04-1.jpg\" _builder_version=\"3.0.99\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22.3\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(255,255,255,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.87\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#353740\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','inherit','closed','closed','','31-revision-v1','','','2019-06-19 21:49:43','2019-06-19 19:49:43','',31,'https://www.silverbirchonhohenhort.co.za/2019/06/19/31-revision-v1/',0,'revision','',0),(40,1,'2019-06-20 11:02:18','2019-06-20 09:02:18','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Silverbirch-Surrounds.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Constantia and</h1>\n<h1><span style=\"color: #999999;\">surrounds</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">Constantia’s leafy tree-lined avenues, country-style ambience, and scenic beauty with</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">a history going back to 1685 make it a highly desirable location for both international</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">visitors and locals who choose to call it their home.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"113px||111px|||\" _builder_version=\"3.24.1\" width=\"100%\" max_width=\"1261px\" module_alignment=\"center\" min_height=\"369px\"][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" data-shortcode-id=\"1.0.0.1-1561408079056\" data-quickaccess-id=\"header\" contenteditable=\"true\">PLEASURABLE PURSUITS</h2>\n<p class=\"p1\"><span style=\"font-size: medium;\">A short distance away numerous greenbelt walking and horse-riding trails, from the picturesque Cecilia Forest trails to the Alphen and Silvermine hiking routes, take you from Constantia Nek to the world-renowned Kirstenbosch Botanical Gardens.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<p class=\"p1\"><span style=\"font-size: medium;\">Close by is an array of restaurant and bistro options from the Jonkershuis Restaurant at Groot Constantia to the historic Buitenverwachting Restaurant to The Greenhouse at The Cellars-Hohenhort to the award winning La Colombe.</span></p>\n<p class=\"p1\"><span style=\"font-size: medium;\">Or venture over to Steenberg vineyards and enjoy Bistro 1682 or Catharina’s or head </span><span style=\"font-size: medium;\">to Beau Constantia for a selection of delicious wine and sushi. Alternatively indulge </span><span style=\"font-size: medium;\">in casual al-fresco country dining at the nearby Pastis.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Screenshot-2019-06-24-at-22.12.07.png\" url=\"https://www.google.co.za/maps/place/16+Bordeaux+Ave,+Constantia+Heights,+Cape+Town,+7806/@-34.00039,18.4288113,17z/data=!3m1!4b1!4m5!3m4!1s0x1dcc42a1d6106325:0x9a8c5b6fb62792bb!8m2!3d-34.00039!4d18.431?hl=en-GB\" url_new_window=\"on\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section]','Location','','publish','closed','closed','','location','','','2019-06-24 22:30:15','2019-06-24 20:30:15','',0,'https://www.silverbirchonhohenhort.co.za/?page_id=40',0,'page','',0),(41,1,'2019-06-19 21:51:20','2019-06-19 19:51:20','<!-- wp:divi/placeholder /-->','Location','','inherit','closed','closed','','40-revision-v1','','','2019-06-19 21:51:20','2019-06-19 19:51:20','',40,'https://www.silverbirchonhohenhort.co.za/2019/06/19/40-revision-v1/',0,'revision','',0),(44,1,'2019-06-19 22:13:59','2019-06-19 20:13:59','[et_pb_section fb_built=\"1\" _builder_version=\"3.22.7\"][/et_pb_section]','Location','','inherit','closed','closed','','40-revision-v1','','','2019-06-19 22:13:59','2019-06-19 20:13:59','',40,'https://www.silverbirchonhohenhort.co.za/2019/06/19/40-revision-v1/',0,'revision','',0),(45,1,'2019-06-20 10:53:04','2019-06-20 08:53:04','','Media','','private','closed','closed','','media','','','2019-06-20 10:53:04','2019-06-20 08:53:04','',0,'https://www.silverbirchonhohenhort.co.za/?option-tree=media',0,'option-tree','',0),(46,1,'2019-06-20 11:02:18','2019-06-20 09:02:18','[et_pb_section fb_built=\"1\" _builder_version=\"3.22.7\"][et_pb_row _builder_version=\"3.24.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.24.1\"][et_pb_gallery _builder_version=\"3.24.1\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]','Location','','inherit','closed','closed','','40-revision-v1','','','2019-06-20 11:02:18','2019-06-20 09:02:18','',40,'https://www.silverbirchonhohenhort.co.za/2019/06/20/40-revision-v1/',0,'revision','',0),(49,1,'2019-06-20 11:13:38','2019-06-20 09:13:38','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>DETAILED BY DESIGN</h1>\n<p> <span style=\"font-size: 14px;\">Here, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.</span></p>\n<p class=\"p1\">A continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.</p>\n<p> </p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<p class=\"p1\">• Double-volume entrance foyer with water feature</p>\n<p class=\"p1\">• TV living room</p>\n<p class=\"p1\">• Formal lounge</p>\n<p class=\"p1\">• Dining room</p>\n<p class=\"p1\">• Open-plan kitchen with walk-through scullery/ pantry</p>\n<p class=\"p1\">• Outside alfresco lounge</p>\n<p class=\"p1\">• Summer lounge</p>\n<p class=\"p1\">• Courtyard area</p>\n<p class=\"p1\">• Timber deck entertainment area</p>\n<p class=\"p1\">• 4 x en-suite bedrooms, each leading onto balcony area</p>\n<p class=\"p1\">• Dressing room in master suite</p>\n<p class=\"p1\"></p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\"]<p class=\"p1\">• Pyjama lounge</p>\n<p class=\"p1\">• Glass-box study</p>\n<p class=\"p1\">• Guest cloakroom</p>\n<p class=\"p1\">• Double garage</p>\n<p class=\"p1\">• Staff quarters</p>\n<p class=\"p1\">• Laundry room</p>\n<p class=\"p1\">• Swimming pool</p>\n<p class=\"p1\">• Tennis court</p>\n<p class=\"p1\">• Other features include; a full-height bookshelf library, roof skylights,</p>\n<p class=\"p1\">large triple-sided wood-burning fireplace and excellent security features</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row custom_padding=\"|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"ABC - Corporate Branding\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-05.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-06.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 03\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-02.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 04\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-04-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22.3\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','inherit','closed','closed','','31-revision-v1','','','2019-06-20 11:13:38','2019-06-20 09:13:38','',31,'https://www.silverbirchonhohenhort.co.za/2019/06/20/31-revision-v1/',0,'revision','',0),(51,1,'2019-06-20 11:48:50','2019-06-20 09:48:50','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||-27px|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>DETAILED BY DESIGN</h1>\n<p> <span style=\"font-size: 14px;\">Here, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.</span></p>\n<p class=\"p1\">A continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.</p>\n<p> </p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"2px|||||\" parallax_2=\"on\" _builder_version=\"3.24.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<p class=\"p1\">• Double-volume entrance foyer with water feature<br /><span style=\"font-size: 14px;\">• TV living room<br /></span><span style=\"font-size: 14px;\">• Formal lounge<br /></span><span style=\"font-size: 14px;\">• Dining room<br /></span><span style=\"font-size: 14px;\">• Open-plan kitchen with walk-through scullery/ pantry<br /></span><span style=\"font-size: 14px;\">• Outside alfresco lounge<br /></span><span style=\"font-size: 14px;\">• Summer lounge<br /></span><span style=\"font-size: 14px;\">• Courtyard area<br /></span><span style=\"font-size: 14px;\">• Timber deck entertainment area<br /></span><span style=\"font-size: 14px;\">• 4 x en-suite bedrooms, each leading onto balcony area<br /></span><span style=\"font-size: 14px;\">• Dressing room in master suite</span></p>\n<p class=\"p1\"></p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\"]<p class=\"p1\">• Pyjama lounge<br /><span style=\"font-size: 14px;\">• Glass-box study<br /></span><span style=\"font-size: 14px;\">• Guest cloakroom<br /></span><span style=\"font-size: 14px;\">• Double garage<br /></span><span style=\"font-size: 14px;\">• Staff quarters<br /></span><span style=\"font-size: 14px;\">• Laundry room<br /></span><span style=\"font-size: 14px;\">• Swimming pool<br /></span><span style=\"font-size: 14px;\">• Tennis court<br /></span><span style=\"font-size: 14px;\">• Other features include; a full-height bookshelf library, roof skylights,<br /></span><span style=\"font-size: 14px;\">large triple-sided wood-burning fireplace and excellent security features</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row custom_padding=\"|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"ABC - Corporate Branding\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-05.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-06.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 03\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-02.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 04\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-04-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22.3\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','inherit','closed','closed','','31-revision-v1','','','2019-06-20 11:48:50','2019-06-20 09:48:50','',31,'https://www.silverbirchonhohenhort.co.za/2019/06/20/31-revision-v1/',0,'revision','',0),(54,1,'2019-06-20 11:50:41','2019-06-20 09:50:41','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"||3px|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||-27px|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>DETAILED BY DESIGN</h1>\n<p> <span style=\"font-size: 14px;\">Here, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.</span></p>\n<p class=\"p1\">A continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.</p>\n<p> </p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"2px|||||\" parallax_2=\"on\" _builder_version=\"3.24.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<p class=\"p1\">• Double-volume entrance foyer with water feature<br /><span style=\"font-size: 14px;\">• TV living room<br /></span><span style=\"font-size: 14px;\">• Formal lounge<br /></span><span style=\"font-size: 14px;\">• Dining room<br /></span><span style=\"font-size: 14px;\">• Open-plan kitchen with walk-through scullery/ pantry<br /></span><span style=\"font-size: 14px;\">• Outside alfresco lounge<br /></span><span style=\"font-size: 14px;\">• Summer lounge<br /></span><span style=\"font-size: 14px;\">• Courtyard area<br /></span><span style=\"font-size: 14px;\">• Timber deck entertainment area<br /></span><span style=\"font-size: 14px;\">• 4 x en-suite bedrooms, each leading onto balcony area<br /></span><span style=\"font-size: 14px;\">• Dressing room in master suite</span></p>\n<p class=\"p1\"></p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\"]<p class=\"p1\">• Pyjama lounge<br /><span style=\"font-size: 14px;\">• Glass-box study<br /></span><span style=\"font-size: 14px;\">• Guest cloakroom<br /></span><span style=\"font-size: 14px;\">• Double garage<br /></span><span style=\"font-size: 14px;\">• Staff quarters<br /></span><span style=\"font-size: 14px;\">• Laundry room<br /></span><span style=\"font-size: 14px;\">• Swimming pool<br /></span><span style=\"font-size: 14px;\">• Tennis court<br /></span><span style=\"font-size: 14px;\">• Other features include; a full-height bookshelf library, roof skylights,<br /></span><span style=\"font-size: 14px;\">large triple-sided wood-burning fireplace and excellent security features</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row custom_padding=\"|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"ABC - Corporate Branding\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-05.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-06.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 03\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-02.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 04\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/home-office-04-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','inherit','closed','closed','','31-revision-v1','','','2019-06-20 11:50:41','2019-06-20 09:50:41','',31,'https://www.silverbirchonhohenhort.co.za/2019/06/20/31-revision-v1/',0,'revision','',0),(58,1,'2019-06-23 22:21:04','2019-06-23 20:21:04','','Jacques','','inherit','open','closed','','jacques','','','2019-06-23 22:21:04','2019-06-23 20:21:04','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg',0,'attachment','image/jpeg',0),(59,1,'2019-06-23 22:21:06','2019-06-23 20:21:06','','Jo Thomas','','inherit','open','closed','','jo-thomas','','','2019-06-23 22:21:06','2019-06-23 20:21:06','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg',0,'attachment','image/jpeg',0),(61,1,'2019-06-23 22:24:27','2019-06-23 20:24:27','','Rouvaun McKirby','','inherit','open','closed','','rouvaun-mckirby','','','2019-06-23 22:24:27','2019-06-23 20:24:27','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg',0,'attachment','image/jpeg',0),(62,1,'2019-06-23 22:26:08','2019-06-23 20:26:08','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.22.7\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>designed for distinction<br /><span style=\"color: #999999;\">silverbirch</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.0.83\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has normal.</span></p>[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"p1\">Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800m<span class=\"s1\">2 </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000m<span class=\"s1\">2 </span>which includes a tennis court.</p>[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22.7\" background_color=\"#ffffff\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" email=\"casey.g@sothebysrealtyss.co.za\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120,\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\"]<p>jo.t@sothebysrealtyss.co.za</p>\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-23 22:26:08','2019-06-23 20:26:08','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/23/7-revision-v1/',0,'revision','',0),(66,1,'2019-06-23 22:36:53','2019-06-23 20:36:53','','Home','','publish','closed','closed','','home','','','2019-06-23 22:36:53','2019-06-23 20:36:53','',0,'https://www.silverbirchonhohenhort.co.za/2019/06/23/home/',1,'nav_menu_item','',0),(67,1,'2019-06-23 22:36:54','2019-06-23 20:36:54',' ','','','publish','closed','closed','','67','','','2019-06-23 23:50:41','2019-06-23 21:50:41','',0,'https://www.silverbirchonhohenhort.co.za/2019/06/23/67/',3,'nav_menu_item','',0),(68,1,'2019-06-23 22:36:54','2019-06-23 20:36:54',' ','','','publish','closed','closed','','68','','','2019-06-23 23:50:41','2019-06-23 21:50:41','',0,'https://www.silverbirchonhohenhort.co.za/2019/06/23/68/',2,'nav_menu_item','',0),(70,1,'2019-06-23 23:40:03','2019-06-23 21:40:03','','Silverbirch Surrounds','','inherit','open','closed','','silverbirch-surrounds','','','2019-06-23 23:40:03','2019-06-23 21:40:03','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Silverbirch-Surrounds.jpg',0,'attachment','image/jpeg',0),(71,1,'2019-06-23 23:40:29','2019-06-23 21:40:29','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Silverbirch-Surrounds.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Constantia and</h1>\n<h1><span style=\"color: #999999;\">surrounds</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">Constantia’s leafy tree-lined avenues, country-style ambience, and scenic beauty with</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">a history going back to 1685 make it a highly desirable location for both international</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">visitors and locals who choose to call it their home.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22.7\" background_color=\"#ffffff\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" email=\"casey.g@sothebysrealtyss.co.za\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120,\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\"]<p>jo.t@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Location','','inherit','closed','closed','','40-revision-v1','','','2019-06-23 23:40:29','2019-06-23 21:40:29','',40,'https://www.silverbirchonhohenhort.co.za/2019/06/23/40-revision-v1/',0,'revision','',0),(73,1,'2019-06-23 23:47:44','2019-06-23 21:47:44','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Silverbirch-Surrounds.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Constantia and</h1>\n<h1><span style=\"color: #999999;\">surrounds</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">Constantia’s leafy tree-lined avenues, country-style ambience, and scenic beauty with</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">a history going back to 1685 make it a highly desirable location for both international</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">visitors and locals who choose to call it their home.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" width=\"100%\" max_width=\"1261px\" min_height=\"392px\" _builder_version=\"3.24.1\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text text_font_size=\"20px\" _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\"]<p class=\"p1\">PLEASURABLE PURSUITS</p>\n<p class=\"p1\">A short distance away numerous greenbelt walking <span style=\"font-size: 20px;\">and horse-riding trails, from the picturesque Cecilia </span><span style=\"font-size: 20px;\">Forest trails to the Alphen and Silvermine hiking routes, </span><span style=\"font-size: 20px;\">take you from Constantia Nek to the world-renowned </span><span style=\"font-size: 20px;\">Kirstenbosch Botanical Gardens.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text text_font_size=\"20px\" _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\"]<p class=\"p1\"><span style=\"font-size: 20px;\">Close by is an array of restaurant and bistro options from the Jonkershuis Restaurant <span>at Groot Constantia to the historic Buitenverwachting Restaurant to The Greenhouse </span><span>at The Cellars-Hohenhort to the award winning La Colombe.</span></span></p>\n<p class=\"p1\"><span style=\"font-size: 20px;\">Or venture over to Steenberg vineyards and enjoy Bistro 1682 or Catharina’s or head</span></p>\n<p class=\"p1\">to Beau Constantia for a selection of delicious wine and sushi. Alternatively indulge</p>\n<p class=\"p1\">in casual al-fresco country dining at the nearby Pastis.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\"][et_pb_fullwidth_map _builder_version=\"3.24.1\"][/et_pb_fullwidth_map][/et_pb_section]','Location','','inherit','closed','closed','','40-revision-v1','','','2019-06-23 23:47:44','2019-06-23 21:47:44','',40,'https://www.silverbirchonhohenhort.co.za/2019/06/23/40-revision-v1/',0,'revision','',0),(74,1,'2019-06-23 23:49:32','2019-06-23 21:49:32','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.22.7\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>designed for distinction<br /><span style=\"color: #999999;\">silverbirch</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p>Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800m<span class=\"s1\">2 </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000m<span class=\"s1\">2 </span>which includes a tennis court.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22.7\" background_color=\"#ffffff\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" email=\"casey.g@sothebysrealtyss.co.za\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120,\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\"]<p>jo.t@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-23 23:49:32','2019-06-23 21:49:32','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/23/7-revision-v1/',0,'revision','',0),(80,1,'2019-06-24 08:38:47','2019-06-24 06:38:47','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.22.7\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>designed for distinction<br /><span style=\"color: #999999;\">silverbirch</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p>Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800m<span class=\"s1\">2 </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000m<span class=\"s1\">2 </span>which includes a tennis court.</p>[/et_pb_text][et_pb_button custom_button=\"on\" button_text_size=\"31px\" button_bg_use_color_gradient=\"on\" button_bg_color_gradient_start=\"#ffffff\" button_bg_color_gradient_end=\"#afafaf\" button_border_radius=\"23px\" button_use_icon=\"off\" box_shadow_style=\"preset3\" animation_style=\"slide\" animation_direction=\"left\" button_text=\"R27 000 000\" _builder_version=\"3.24.1\" button_font=\"Montserrat||||||||\" box_shadow_horizontal=\"10px\" box_shadow_spread=\"8px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22.7\" background_color=\"#ffffff\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" email=\"casey.g@sothebysrealtyss.co.za\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120,\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\"]<p>jo.t@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-24 08:38:47','2019-06-24 06:38:47','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/24/7-revision-v1/',0,'revision','',0),(82,1,'2019-06-24 08:40:44','2019-06-24 06:40:44','','16 Bordeaux Ave-low','','inherit','open','closed','','16-bordeaux-ave-low','','','2019-06-24 08:40:44','2019-06-24 06:40:44','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/16-Bordeaux-Ave-low.jpg',0,'attachment','image/jpeg',0),(83,1,'2019-06-24 08:42:13','2019-06-24 06:42:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/16-Bordeaux-Ave-low.jpg\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.22.7\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>designed for distinction<br /><span style=\"color: #999999;\">silverbirch</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p>Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800m<span class=\"s1\">2 </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000m<span class=\"s1\">2 </span>which includes a tennis court.</p>[/et_pb_text][et_pb_button button_text=\"R27 000 000\" _builder_version=\"3.24.1\" custom_button=\"on\" button_text_size=\"31px\" button_bg_use_color_gradient=\"on\" button_bg_color_gradient_start=\"#ffffff\" button_bg_color_gradient_end=\"#afafaf\" button_border_radius=\"23px\" button_font=\"Montserrat||||||||\" button_use_icon=\"off\" box_shadow_style=\"preset3\" box_shadow_horizontal=\"10px\" box_shadow_spread=\"8px\" animation_style=\"slide\" animation_direction=\"left\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22.7\" background_color=\"#ffffff\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" email=\"casey.g@sothebysrealtyss.co.za\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120,\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\"]<p>jo.t@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-24 08:42:13','2019-06-24 06:42:13','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/24/7-revision-v1/',0,'revision','',0),(86,1,'2019-06-24 08:45:23','2019-06-24 06:45:23','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Silverbirch-Surrounds.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Constantia and</h1>\n<h1><span style=\"color: #999999;\">surrounds</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">Constantia’s leafy tree-lined avenues, country-style ambience, and scenic beauty with</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">a history going back to 1685 make it a highly desirable location for both international</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">visitors and locals who choose to call it their home.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.24.1\" width=\"100%\" max_width=\"1261px\" module_alignment=\"center\" min_height=\"392px\"][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"20px\"]<p class=\"p1\">PLEASURABLE PURSUITS</p>\n<p class=\"p1\">A short distance away numerous greenbelt walking <span style=\"font-size: 20px;\">and horse-riding trails, from the picturesque Cecilia </span><span style=\"font-size: 20px;\">Forest trails to the Alphen and Silvermine hiking routes, </span><span style=\"font-size: 20px;\">take you from Constantia Nek to the world-renowned </span><span style=\"font-size: 20px;\">Kirstenbosch Botanical Gardens.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"20px\"]<p class=\"p1\"><span style=\"font-size: 20px;\">Close by is an array of restaurant and bistro options from the Jonkershuis Restaurant <span>at Groot Constantia to the historic Buitenverwachting Restaurant to The Greenhouse </span><span>at The Cellars-Hohenhort to the award winning La Colombe.</span></span></p>\n<p class=\"p1\"><span style=\"font-size: 20px;\">Or venture over to Steenberg vineyards and enjoy Bistro 1682 or Catharina’s or head</span></p>\n<p class=\"p1\">to Beau Constantia for a selection of delicious wine and sushi. Alternatively indulge</p>\n<p class=\"p1\">in casual al-fresco country dining at the nearby Pastis.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\"][et_pb_fullwidth_image url_new_window=\"on\" src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Screenshot-2019-06-24-at-08.43.56.png\" _builder_version=\"3.24.1\" url=\"https://www.google.co.za/maps/place/16+Bordeaux+Ave,+Constantia+Heights,+Cape+Town,+7806/@-34.00039,18.4288113,17z/data=!3m1!4b1!4m5!3m4!1s0x1dcc42a1d6106325:0x9a8c5b6fb62792bb!8m2!3d-34.00039!4d18.431?hl=en-GB\"][/et_pb_fullwidth_image][/et_pb_section]','Location','','inherit','closed','closed','','40-revision-v1','','','2019-06-24 08:45:23','2019-06-24 06:45:23','',40,'https://www.silverbirchonhohenhort.co.za/2019/06/24/40-revision-v1/',0,'revision','',0),(87,1,'2019-06-24 09:56:36','2019-06-24 07:56:36','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Silverbirch-Surrounds.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Constantia and</h1>\n<h1><span style=\"color: #999999;\">surrounds</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">Constantia’s leafy tree-lined avenues, country-style ambience, and scenic beauty with</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">a history going back to 1685 make it a highly desirable location for both international</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">visitors and locals who choose to call it their home.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.24.1\" width=\"100%\" max_width=\"1261px\" module_alignment=\"center\" min_height=\"392px\" custom_padding=\"82px||111px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"20px\"]<p class=\"p1\">PLEASURABLE PURSUITS</p>\n<p class=\"p1\">A short distance away numerous greenbelt walking <span style=\"font-size: 20px;\">and horse-riding trails, from the picturesque Cecilia </span><span style=\"font-size: 20px;\">Forest trails to the Alphen and Silvermine hiking routes, </span><span style=\"font-size: 20px;\">take you from Constantia Nek to the world-renowned </span><span style=\"font-size: 20px;\">Kirstenbosch Botanical Gardens.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"20px\"]<p class=\"p1\"><span style=\"font-size: 20px;\">Close by is an array of restaurant and bistro options from the Jonkershuis Restaurant <span>at Groot Constantia to the historic Buitenverwachting Restaurant to The Greenhouse </span><span>at The Cellars-Hohenhort to the award winning La Colombe.</span></span></p>\n<p class=\"p1\"><span style=\"font-size: 20px;\">Or venture over to Steenberg vineyards and enjoy Bistro 1682 or Catharina’s or head</span></p>\n<p class=\"p1\">to Beau Constantia for a selection of delicious wine and sushi. Alternatively indulge</p>\n<p class=\"p1\">in casual al-fresco country dining at the nearby Pastis.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Screenshot-2019-06-24-at-08.43.56.png\" url=\"https://www.google.co.za/maps/place/16+Bordeaux+Ave,+Constantia+Heights,+Cape+Town,+7806/@-34.00039,18.4288113,17z/data=!3m1!4b1!4m5!3m4!1s0x1dcc42a1d6106325:0x9a8c5b6fb62792bb!8m2!3d-34.00039!4d18.431?hl=en-GB\" url_new_window=\"on\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section]','Location','','inherit','closed','closed','','40-revision-v1','','','2019-06-24 09:56:36','2019-06-24 07:56:36','',40,'https://www.silverbirchonhohenhort.co.za/2019/06/24/40-revision-v1/',0,'revision','',0),(89,1,'2019-06-24 14:55:42','2019-06-24 12:55:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/16-Bordeaux-Ave-low.jpg\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.22.7\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>designed for distinction<br /><span style=\"color: #999999;\">silverbirch</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p>Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800m<span class=\"s1\">2 </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000m<span class=\"s1\">2 </span>which includes a tennis court.</p>[/et_pb_text][et_pb_button button_text=\"Asking Price from: R25 000 000 PLUS VAT\" _builder_version=\"3.24.1\" custom_button=\"on\" button_text_size=\"20px\" button_bg_use_color_gradient=\"on\" button_bg_color_gradient_start=\"#ffffff\" button_bg_color_gradient_end=\"#afafaf\" button_border_radius=\"23px\" button_font=\"Montserrat||||||||\" button_use_icon=\"off\" box_shadow_style=\"preset3\" box_shadow_horizontal=\"10px\" box_shadow_spread=\"8px\" animation_style=\"slide\" animation_direction=\"left\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22.7\" background_color=\"#ffffff\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" email=\"casey.g@sothebysrealtyss.co.za\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120,\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\"]<p>jo.t@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-24 14:55:42','2019-06-24 12:55:42','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/24/7-revision-v1/',0,'revision','',0),(92,1,'2019-06-24 21:01:35','2019-06-24 19:01:35','','29 June 2019','','inherit','open','closed','','29-june-2019','','','2019-06-24 21:01:35','2019-06-24 19:01:35','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/29-June-2019.pdf',0,'attachment','application/pdf',0),(93,1,'2019-06-24 21:16:09','2019-06-24 19:16:09','','190207 Deon Stander Plans Main Dwelling col','','inherit','open','closed','','190207-deon-stander-plans-main-dwelling-col','','','2019-06-24 21:16:09','2019-06-24 19:16:09','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg',0,'attachment','image/jpeg',0),(94,1,'2019-06-24 21:20:48','2019-06-24 19:20:48','','190207 Deon Stander Plans Main Dwelling col','','inherit','open','closed','','190207-deon-stander-plans-main-dwelling-col-2','','','2019-06-24 21:20:48','2019-06-24 19:20:48','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg',0,'attachment','image/jpeg',0),(95,1,'2019-06-24 21:22:13','2019-06-24 19:22:13','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"||3px|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||-27px|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>DETAILED BY DESIGN</h1>\n<p> <span style=\"font-size: 14px;\">Here, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.</span></p>\n<p class=\"p1\">A continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.</p>\n<p> </p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"2px|||||\" parallax_2=\"on\" _builder_version=\"3.24.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<p class=\"p1\">• Double-volume entrance foyer with water feature<br /><span style=\"font-size: 14px;\">• TV living room<br /></span><span style=\"font-size: 14px;\">• Formal lounge<br /></span><span style=\"font-size: 14px;\">• Dining room<br /></span><span style=\"font-size: 14px;\">• Open-plan kitchen with walk-through scullery/ pantry<br /></span><span style=\"font-size: 14px;\">• Outside alfresco lounge<br /></span><span style=\"font-size: 14px;\">• Summer lounge<br /></span><span style=\"font-size: 14px;\">• Courtyard area<br /></span><span style=\"font-size: 14px;\">• Timber deck entertainment area<br /></span><span style=\"font-size: 14px;\">• 4 x en-suite bedrooms, each leading onto balcony area<br /></span><span style=\"font-size: 14px;\">• Dressing room in master suite</span></p>\n<p class=\"p1\"></p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\"]<p class=\"p1\">• Pyjama lounge<br /><span style=\"font-size: 14px;\">• Glass-box study<br /></span><span style=\"font-size: 14px;\">• Guest cloakroom<br /></span><span style=\"font-size: 14px;\">• Double garage<br /></span><span style=\"font-size: 14px;\">• Staff quarters<br /></span><span style=\"font-size: 14px;\">• Laundry room<br /></span><span style=\"font-size: 14px;\">• Swimming pool<br /></span><span style=\"font-size: 14px;\">• Tennis court<br /></span><span style=\"font-size: 14px;\">• Other features include; a full-height bookshelf library, roof skylights,<br /></span><span style=\"font-size: 14px;\">large triple-sided wood-burning fireplace and excellent security features</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row custom_padding=\"|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #002349;\">01</span></p>[/et_pb_text][et_pb_cta title=\"Main Dwelling\" button_url=\"#\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.</p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" custom_padding=\"42px|||||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" custom_padding=\"37px|||||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #002349;\">02</span></p>[/et_pb_text][et_pb_cta title=\"Second Dwelling\" button_url=\"#\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','inherit','closed','closed','','31-revision-v1','','','2019-06-24 21:22:13','2019-06-24 19:22:13','',31,'https://www.silverbirchonhohenhort.co.za/2019/06/24/31-revision-v1/',0,'revision','',0),(96,1,'2019-06-24 21:26:33','2019-06-24 19:26:33','<!-- wp:divi/placeholder -->\n[et_pb_section fb_built=\"1\" _builder_version=\"3.24.1\"][et_pb_row _builder_version=\"3.24.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.24.1\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-MAIN-DWELLING-GROUND-FLOOR.jpg\" _builder_version=\"3.24.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.24.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.24.1\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-MAIN-DWELLING-FIRST-FLOOR.jpg\" _builder_version=\"3.24.1\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]\n<!-- /wp:divi/placeholder -->','Main Dwelling','','publish','closed','closed','','mail-dwelling','','','2019-06-24 21:31:49','2019-06-24 19:31:49','',0,'https://www.silverbirchonhohenhort.co.za/?page_id=96',0,'page','',0),(97,1,'2019-06-24 21:22:54','2019-06-24 19:22:54','<!-- wp:divi/placeholder /-->','Mail Dwelling','','inherit','closed','closed','','96-revision-v1','','','2019-06-24 21:22:54','2019-06-24 19:22:54','',96,'https://www.silverbirchonhohenhort.co.za/2019/06/24/96-revision-v1/',0,'revision','',0),(99,1,'2019-06-24 21:25:37','2019-06-24 19:25:37','','190115 Schematic MAIN DWELLING FIRST FLOOR','','inherit','open','closed','','190115-schematic-main-dwelling-first-floor','','','2019-06-24 21:25:37','2019-06-24 19:25:37','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-MAIN-DWELLING-FIRST-FLOOR.jpg',0,'attachment','image/jpeg',0),(100,1,'2019-06-24 21:25:46','2019-06-24 19:25:46','','190115 Schematic MAIN DWELLING GROUND FLOOR','','inherit','open','closed','','190115-schematic-main-dwelling-ground-floor','','','2019-06-24 21:25:46','2019-06-24 19:25:46','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-MAIN-DWELLING-GROUND-FLOOR.jpg',0,'attachment','image/jpeg',0),(101,1,'2019-06-24 21:26:33','2019-06-24 19:26:33','[et_pb_section fb_built=\"1\" _builder_version=\"3.24.1\"][et_pb_row _builder_version=\"3.24.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.24.1\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-MAIN-DWELLING-GROUND-FLOOR.jpg\" _builder_version=\"3.24.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.24.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.24.1\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-MAIN-DWELLING-FIRST-FLOOR.jpg\" _builder_version=\"3.24.1\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Mail Dwelling','','inherit','closed','closed','','96-revision-v1','','','2019-06-24 21:26:33','2019-06-24 19:26:33','',96,'https://www.silverbirchonhohenhort.co.za/2019/06/24/96-revision-v1/',0,'revision','',0),(102,1,'2019-06-24 21:29:32','2019-06-24 19:29:32','[et_pb_section fb_built=\"1\" _builder_version=\"3.24.1\"][et_pb_row _builder_version=\"3.24.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.24.1\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-SECOND-DWELLING-GROUND-FLOOR.jpg\" _builder_version=\"3.24.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.24.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.24.1\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-SECOND-DWELLING-FIRST-FLOOR.jpg\" _builder_version=\"3.24.1\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Second Dwelling','','publish','closed','closed','','second-dwelling','','','2019-06-24 21:29:33','2019-06-24 19:29:33','',0,'https://www.silverbirchonhohenhort.co.za/?page_id=102',0,'page','',0),(103,1,'2019-06-24 21:27:18','2019-06-24 19:27:18','<!-- wp:divi/placeholder /-->','Second Dwelling','','inherit','closed','closed','','102-revision-v1','','','2019-06-24 21:27:18','2019-06-24 19:27:18','',102,'https://www.silverbirchonhohenhort.co.za/2019/06/24/102-revision-v1/',0,'revision','',0),(105,1,'2019-06-24 21:28:09','2019-06-24 19:28:09','','190115 Schematic SECOND DWELLING FIRST FLOOR','','inherit','open','closed','','190115-schematic-second-dwelling-first-floor','','','2019-06-24 21:28:09','2019-06-24 19:28:09','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-SECOND-DWELLING-FIRST-FLOOR.jpg',0,'attachment','image/jpeg',0),(106,1,'2019-06-24 21:28:19','2019-06-24 19:28:19','','190115 Schematic SECOND DWELLING GROUND FLOOR','','inherit','open','closed','','190115-schematic-second-dwelling-ground-floor','','','2019-06-24 21:28:19','2019-06-24 19:28:19','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-SECOND-DWELLING-GROUND-FLOOR.jpg',0,'attachment','image/jpeg',0),(107,1,'2019-06-24 21:29:32','2019-06-24 19:29:32','[et_pb_section fb_built=\"1\" _builder_version=\"3.24.1\"][et_pb_row _builder_version=\"3.24.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.24.1\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-SECOND-DWELLING-GROUND-FLOOR.jpg\" _builder_version=\"3.24.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.24.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.24.1\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-SECOND-DWELLING-FIRST-FLOOR.jpg\" _builder_version=\"3.24.1\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Second Dwelling','','inherit','closed','closed','','102-revision-v1','','','2019-06-24 21:29:32','2019-06-24 19:29:32','',102,'https://www.silverbirchonhohenhort.co.za/2019/06/24/102-revision-v1/',0,'revision','',0),(108,1,'2019-06-24 21:31:48','2019-06-24 19:31:48','<!-- wp:divi/placeholder -->\n[et_pb_section fb_built=\"1\" _builder_version=\"3.24.1\"][et_pb_row _builder_version=\"3.24.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.24.1\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-MAIN-DWELLING-GROUND-FLOOR.jpg\" _builder_version=\"3.24.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.24.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.24.1\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190115-Schematic-MAIN-DWELLING-FIRST-FLOOR.jpg\" _builder_version=\"3.24.1\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]\n<!-- /wp:divi/placeholder -->','Main Dwelling','','inherit','closed','closed','','96-revision-v1','','','2019-06-24 21:31:48','2019-06-24 19:31:48','',96,'https://www.silverbirchonhohenhort.co.za/2019/06/24/96-revision-v1/',0,'revision','',0),(110,1,'2019-06-24 21:39:11','2019-06-24 19:39:11','','background','','inherit','open','closed','','background','','','2019-06-24 21:39:11','2019-06-24 19:39:11','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/background.jpg',0,'attachment','image/jpeg',0),(111,1,'2019-06-24 21:44:08','2019-06-24 19:44:08','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"||3px|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||-27px|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>DETAILED BY DESIGN</h1>\n<p> <span style=\"font-size: 14px;\">Here, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.</span></p>\n<p class=\"p1\">A continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.</p>\n<p> </p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"2px|||||\" parallax_2=\"on\" _builder_version=\"3.24.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<p class=\"p1\">• Double-volume entrance foyer with water feature<br /><span style=\"font-size: 14px;\">• TV living room<br /></span><span style=\"font-size: 14px;\">• Formal lounge<br /></span><span style=\"font-size: 14px;\">• Dining room<br /></span><span style=\"font-size: 14px;\">• Open-plan kitchen with walk-through scullery/ pantry<br /></span><span style=\"font-size: 14px;\">• Outside alfresco lounge<br /></span><span style=\"font-size: 14px;\">• Summer lounge<br /></span><span style=\"font-size: 14px;\">• Courtyard area<br /></span><span style=\"font-size: 14px;\">• Timber deck entertainment area<br /></span><span style=\"font-size: 14px;\">• 4 x en-suite bedrooms, each leading onto balcony area<br /></span><span style=\"font-size: 14px;\">• Dressing room in master suite</span></p>\n<p class=\"p1\"></p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\"]<p class=\"p1\">• Pyjama lounge<br /><span style=\"font-size: 14px;\">• Glass-box study<br /></span><span style=\"font-size: 14px;\">• Guest cloakroom<br /></span><span style=\"font-size: 14px;\">• Double garage<br /></span><span style=\"font-size: 14px;\">• Staff quarters<br /></span><span style=\"font-size: 14px;\">• Laundry room<br /></span><span style=\"font-size: 14px;\">• Swimming pool<br /></span><span style=\"font-size: 14px;\">• Tennis court<br /></span><span style=\"font-size: 14px;\">• Other features include; a full-height bookshelf library, roof skylights,<br /></span><span style=\"font-size: 14px;\">large triple-sided wood-burning fireplace and excellent security features</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" custom_margin=\"||-78px|||\" custom_padding=\"110px||5px|||\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/background.jpg\" min_height=\"684px\" background_position=\"bottom_center\"][et_pb_row custom_padding=\"||0px|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"479px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #002349;\">01</span></p>[/et_pb_text][et_pb_cta title=\"Main Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/main-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.</p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"42px|||||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" custom_margin=\"-1px|||||\" custom_padding=\"1px||110px|||\" background_color=\"#002349\" min_height=\"684px\"][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"37px|||||\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #ffffff;\">02</span></p>[/et_pb_text][et_pb_cta title=\"Second Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/second-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#ffffff\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','inherit','closed','closed','','31-revision-v1','','','2019-06-24 21:44:08','2019-06-24 19:44:08','',31,'https://www.silverbirchonhohenhort.co.za/2019/06/24/31-revision-v1/',0,'revision','',0),(113,1,'2019-06-24 21:48:08','2019-06-24 19:48:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\" animation_style=\"fade\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/16-Bordeaux-Ave-low.jpg\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.22.7\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"slide\" header_font_size_last_edited=\"off|desktop\" locked=\"off\" animation_direction=\"left\"]<h1>designed for distinction<br /> <span style=\"color: #999999;\">silverbirch</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"17%\" locked=\"off\"]<p>Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800m<span class=\"s1\">2 </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000m<span class=\"s1\">2 </span>which includes a tennis court.</p>\n[/et_pb_text][et_pb_button button_text=\"Asking Price from: R25 000 000 PLUS VAT\" _builder_version=\"3.24.1\" custom_button=\"on\" button_text_size=\"20px\" button_bg_use_color_gradient=\"on\" button_bg_color_gradient_start=\"#ffffff\" button_bg_color_gradient_end=\"#afafaf\" button_border_radius=\"23px\" button_font=\"Montserrat||||||||\" button_use_icon=\"off\" box_shadow_style=\"preset3\" box_shadow_horizontal=\"10px\" box_shadow_spread=\"8px\" animation_style=\"slide\" animation_direction=\"bottom\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.24.1\" background_color=\"#ffffff\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"||40px|\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" email=\"casey.g@sothebysrealtyss.co.za\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120,\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\"]<p>jo.t@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-24 21:48:08','2019-06-24 19:48:08','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/24/7-revision-v1/',0,'revision','',0),(115,1,'2019-06-24 21:59:57','2019-06-24 19:59:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\" animation_style=\"fade\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/16-Bordeaux-Ave-low.jpg\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" background_color_2__hover_enabled=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||7px|||\" animation_style=\"slide\" hover_enabled=\"0\" header_font_size_last_edited=\"on|desktop\" locked=\"off\" animation_direction=\"left\" text_font_last_edited=\"on|phone\" text_font_size=\"11px\" header_font_last_edited=\"on|phone\" header_font_size_phone=\"50px\" header_2_font=\"Montserrat||||||||\" header_2_font_size=\"25px\" header_2_font_size_last_edited=\"on|desktop\" min_height=\"190px\"]<h1>designed for distinction<br /> <span style=\"color: #999999;\">silverbirch</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_font_size=\"20px\" text_line_height=\"1.6em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"32px||50px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"17%\" hover_enabled=\"0\" locked=\"off\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"15px\"]<p>Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800m<span class=\"s1\">2 </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000m<span class=\"s1\">2 </span>which includes a tennis court.</p>\n[/et_pb_text][et_pb_button button_text=\"Asking Price from: R25 000 000 PLUS VAT\" _builder_version=\"3.24.1\" custom_button=\"on\" button_text_size=\"20px\" button_bg_use_color_gradient=\"on\" button_bg_color_gradient_start=\"#ffffff\" button_bg_color_gradient_end=\"#afafaf\" button_border_radius=\"23px\" button_font=\"Montserrat||||||||\" button_use_icon=\"off\" box_shadow_style=\"preset3\" box_shadow_horizontal=\"10px\" box_shadow_spread=\"8px\" animation_style=\"slide\" animation_direction=\"bottom\" hover_enabled=\"0\" button_text_size_last_edited=\"on|phone\" button_text_size_phone=\"16px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.24.1\" background_color=\"#ffffff\" custom_padding=\"22px||22px||true|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"|auto|-6px|auto||\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.22.3\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" email=\"casey.g@sothebysrealtyss.co.za\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120,\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\"]<p>jo.t@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-24 21:59:57','2019-06-24 19:59:57','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/24/7-revision-v1/',0,'revision','',0),(117,1,'2019-06-24 22:10:03','2019-06-24 20:10:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\" animation_style=\"fade\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/16-Bordeaux-Ave-low.jpg\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" background_color_2__hover_enabled=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||7px|||\" animation_style=\"slide\" hover_enabled=\"0\" header_font_size_last_edited=\"on|desktop\" locked=\"off\" animation_direction=\"left\" text_font_last_edited=\"on|phone\" text_font_size=\"11px\" header_font_last_edited=\"on|phone\" header_font_size_phone=\"50px\" header_2_font=\"Montserrat||||||||\" header_2_font_size=\"25px\" header_2_font_size_last_edited=\"on|desktop\" min_height=\"190px\"]<h1>designed for distinction<br /> <span style=\"color: #999999;\">silverbirch</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_font_size=\"20px\" text_line_height=\"1.6em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"32px||50px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"17%\" hover_enabled=\"0\" locked=\"off\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"15px\"]<p>Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800m<span class=\"s1\">2 </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000m<span class=\"s1\">2 </span>which includes a tennis court.</p>\n[/et_pb_text][et_pb_button button_text=\"Asking Price from: R25 000 000 PLUS VAT\" _builder_version=\"3.24.1\" custom_button=\"on\" button_text_size=\"20px\" button_bg_use_color_gradient=\"on\" button_bg_color_gradient_start=\"#ffffff\" button_bg_color_gradient_end=\"#afafaf\" button_border_radius=\"23px\" button_font=\"Montserrat||||||||\" button_use_icon=\"off\" box_shadow_style=\"preset3\" box_shadow_horizontal=\"10px\" box_shadow_spread=\"8px\" animation_style=\"slide\" animation_direction=\"bottom\" hover_enabled=\"0\" button_text_size_last_edited=\"on|phone\" button_text_size_phone=\"16px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.24.1\" background_color=\"#ffffff\" custom_padding=\"22px||22px||true|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"|auto|-6px|auto||\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row gutter_width=\"2\" admin_label=\"Contact Form\" _builder_version=\"3.24.1\" animation_style=\"fade\" custom_margin=\"|140px||140px||\" use_custom_gutter=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" email=\"casey.g@sothebysrealtyss.co.za\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\" custom_margin=\"0px|0px||0px\" body_font=\"Montserrat||||||||\" body_font_size=\"15px\"]<p>jacques.f@sothebysrealtyss.co.za</p>\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\" body_font=\"Montserrat||||||||\"]<p>jo.t@sothebysrealtyss.co.za</p>\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\" body_font=\"Montserrat||||||||\"]<p>rouvaun.m@sothebysrealtyss.co.za</p>\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-24 22:10:03','2019-06-24 20:10:03','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/24/7-revision-v1/',0,'revision','',0),(118,1,'2019-06-24 22:13:15','2019-06-24 20:13:15','','Screenshot 2019-06-24 at 22.12.07','','inherit','open','closed','','screenshot-2019-06-24-at-22-12-07','','','2019-06-24 22:13:15','2019-06-24 20:13:15','',0,'https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Screenshot-2019-06-24-at-22.12.07.png',0,'attachment','image/png',0),(119,1,'2019-06-24 22:13:41','2019-06-24 20:13:41','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Silverbirch-Surrounds.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Constantia and</h1>\n<h1><span style=\"color: #999999;\">surrounds</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">Constantia’s leafy tree-lined avenues, country-style ambience, and scenic beauty with</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">a history going back to 1685 make it a highly desirable location for both international</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">visitors and locals who choose to call it their home.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"82px||111px|||\" _builder_version=\"3.24.1\" width=\"100%\" max_width=\"1261px\" module_alignment=\"center\" min_height=\"392px\"][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"20px\"]<p class=\"p1\">PLEASURABLE PURSUITS</p>\n<p class=\"p1\">A short distance away numerous greenbelt walking <span style=\"font-size: 20px;\">and horse-riding trails, from the picturesque Cecilia </span><span style=\"font-size: 20px;\">Forest trails to the Alphen and Silvermine hiking routes, </span><span style=\"font-size: 20px;\">take you from Constantia Nek to the world-renowned </span><span style=\"font-size: 20px;\">Kirstenbosch Botanical Gardens.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"20px\"]<p class=\"p1\"><span style=\"font-size: 20px;\">Close by is an array of restaurant and bistro options from the Jonkershuis Restaurant <span>at Groot Constantia to the historic Buitenverwachting Restaurant to The Greenhouse </span><span>at The Cellars-Hohenhort to the award winning La Colombe.</span></span></p>\n<p class=\"p1\"><span style=\"font-size: 20px;\">Or venture over to Steenberg vineyards and enjoy Bistro 1682 or Catharina’s or head</span></p>\n<p class=\"p1\">to Beau Constantia for a selection of delicious wine and sushi. Alternatively indulge</p>\n<p class=\"p1\">in casual al-fresco country dining at the nearby Pastis.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Screenshot-2019-06-24-at-22.12.07.png\" url=\"https://www.google.co.za/maps/place/16+Bordeaux+Ave,+Constantia+Heights,+Cape+Town,+7806/@-34.00039,18.4288113,17z/data=!3m1!4b1!4m5!3m4!1s0x1dcc42a1d6106325:0x9a8c5b6fb62792bb!8m2!3d-34.00039!4d18.431?hl=en-GB\" url_new_window=\"on\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section]','Location','','inherit','closed','closed','','40-revision-v1','','','2019-06-24 22:13:41','2019-06-24 20:13:41','',40,'https://www.silverbirchonhohenhort.co.za/2019/06/24/40-revision-v1/',0,'revision','',0),(120,1,'2019-06-24 22:17:33','2019-06-24 20:17:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\" animation_style=\"fade\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/16-Bordeaux-Ave-low.jpg\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\" background_color_2__hover_enabled=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"11px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" header_2_font=\"Montserrat||||||||\" header_2_font_size=\"25px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"190px\" custom_margin=\"||7px|||\" animation_style=\"slide\" animation_direction=\"left\" text_font_last_edited=\"on|phone\" header_font_last_edited=\"on|phone\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_2_font_size_last_edited=\"on|desktop\" locked=\"off\"]<h1>designed for distinction<br /> <span style=\"color: #999999;\">silverbirch</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_font_size=\"20px\" text_line_height=\"1.6em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"32px||50px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"17%\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800m<span class=\"s1\">2 </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000m<span class=\"s1\">2 </span>which includes a tennis court.</p>[/et_pb_text][et_pb_button button_text=\"Asking Price from: R25 000 000 PLUS VAT\" _builder_version=\"3.24.1\" custom_button=\"on\" button_text_size=\"20px\" button_bg_use_color_gradient=\"on\" button_bg_color_gradient_start=\"#ffffff\" button_bg_color_gradient_end=\"#afafaf\" button_border_radius=\"23px\" button_font=\"Montserrat||||||||\" button_use_icon=\"off\" box_shadow_style=\"preset3\" box_shadow_horizontal=\"10px\" box_shadow_spread=\"8px\" animation_style=\"slide\" animation_direction=\"bottom\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.24.1\" background_color=\"#ffffff\" custom_padding=\"22px||22px||true|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"|auto|-6px|auto||\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_margin=\"|140px||140px||\" admin_label=\"Contact Form\" _builder_version=\"3.24.1\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" email=\"casey.g@sothebysrealtyss.co.za\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\" body_font=\"Montserrat||||||||\" body_font_size=\"15px\" custom_margin=\"0px|0px||0px\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\" body_font=\"Montserrat||||||||\"]<p>jo.t@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\" body_font=\"Montserrat||||||||\"]<p>rouvaun.m@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-06-24 22:17:33','2019-06-24 20:17:33','',7,'https://www.silverbirchonhohenhort.co.za/2019/06/24/7-revision-v1/',0,'revision','',0),(123,1,'2019-06-24 22:22:04','2019-06-24 20:22:04','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"||3px|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||-27px|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>DETAILED BY DESIGN</h1>\n<p><span style=\"font-size: 14px;\">Here, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.</span></p>\n<p class=\"p1\">A continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.</p>\n<p> </p>\n[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"2px|||||\" parallax_2=\"on\" _builder_version=\"3.24.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<p class=\"p1\">• Double-volume entrance foyer with water feature<br /> <span style=\"font-size: 14px;\">• TV living room<br /> </span><span style=\"font-size: 14px;\">• Formal lounge<br /> </span><span style=\"font-size: 14px;\">• Dining room<br /> </span><span style=\"font-size: 14px;\">• Open-plan kitchen with walk-through scullery/ pantry<br /> </span><span style=\"font-size: 14px;\">• Outside alfresco lounge<br /> </span><span style=\"font-size: 14px;\">• Summer lounge<br /> </span><span style=\"font-size: 14px;\">• Courtyard area<br /> </span><span style=\"font-size: 14px;\">• Timber deck entertainment area<br /> </span><span style=\"font-size: 14px;\">• 4 x en-suite bedrooms, each leading onto balcony area<br /> </span><span style=\"font-size: 14px;\">• Dressing room in master suite</span></p>\n<p class=\"p1\">\n[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\"]<p class=\"p1\">• Pyjama lounge<br /> <span style=\"font-size: 14px;\">• Glass-box study<br /> </span><span style=\"font-size: 14px;\">• Guest cloakroom<br /> </span><span style=\"font-size: 14px;\">• Double garage<br /> </span><span style=\"font-size: 14px;\">• Staff quarters<br /> </span><span style=\"font-size: 14px;\">• Laundry room<br /> </span><span style=\"font-size: 14px;\">• Swimming pool<br /> </span><span style=\"font-size: 14px;\">• Tennis court<br /> </span><span style=\"font-size: 14px;\">• Other features include; a full-height bookshelf library, roof skylights,<br /> </span><span style=\"font-size: 14px;\">large triple-sided wood-burning fireplace and excellent security features</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/background.jpg\" background_position=\"bottom_center\" min_height=\"684px\" custom_margin=\"||-78px|||\" custom_padding=\"110px||5px|||\"][et_pb_row custom_padding=\"||0px|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"479px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #002349;\">01</span></p>[/et_pb_text][et_pb_cta title=\"Main Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/main-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p><span style=\"color: #999999;\">Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"42px|||||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_color=\"#002349\" min_height=\"684px\" custom_margin=\"-1px|||||\" custom_padding=\"1px||110px|||\"][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"37px|||||\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #ffffff;\">02</span></p>[/et_pb_text][et_pb_cta title=\"Second Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/second-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#ffffff\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p><span style=\"color: #999999;\">Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','inherit','closed','closed','','31-revision-v1','','','2019-06-24 22:22:04','2019-06-24 20:22:04','',31,'https://www.silverbirchonhohenhort.co.za/2019/06/24/31-revision-v1/',0,'revision','',0),(125,1,'2019-06-24 22:24:52','2019-06-24 20:24:52','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"||3px|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||-27px|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\" text_font_size=\"16px\"]<h1>DETAILED BY DESIGN</h1>\n<p><span style=\"font-size: large;\">Here, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.</span></p>\n<p class=\"p1\"><span style=\"font-size: large;\">A continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.</span></p>\n<p> </p>\n[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"2px|||||\" parallax_2=\"on\" _builder_version=\"3.24.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\" text_font_size=\"16px\"]<p class=\"p1\">• Double-volume entrance foyer with water feature<br /> <span style=\"font-size: 14px;\">• TV living room<br /> </span><span style=\"font-size: 14px;\">• Formal lounge<br /> </span><span style=\"font-size: 14px;\">• Dining room<br /> </span><span style=\"font-size: 14px;\">• Open-plan kitchen with walk-through scullery/ pantry<br /> </span><span style=\"font-size: 14px;\">• Outside alfresco lounge<br /> </span><span style=\"font-size: 14px;\">• Summer lounge<br /> </span><span style=\"font-size: 14px;\">• Courtyard area<br /> </span><span style=\"font-size: 14px;\">• Timber deck entertainment area<br /> </span><span style=\"font-size: 14px;\">• 4 x en-suite bedrooms, each leading onto balcony area<br /> </span><span style=\"font-size: 14px;\">• Dressing room in master suite</span></p>\n<p class=\"p1\">\n[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<p class=\"p1\">• Pyjama lounge<br /> <span style=\"font-size: 14px;\">• Glass-box study<br /> </span><span style=\"font-size: 14px;\">• Guest cloakroom<br /> </span><span style=\"font-size: 14px;\">• Double garage<br /> </span><span style=\"font-size: 14px;\">• Staff quarters<br /> </span><span style=\"font-size: 14px;\">• Laundry room<br /> </span><span style=\"font-size: 14px;\">• Swimming pool<br /> </span><span style=\"font-size: 14px;\">• Tennis court<br /> </span><span style=\"font-size: 14px;\">• Other features include; a full-height bookshelf library, roof skylights,<br /> </span><span style=\"font-size: 14px;\">large triple-sided wood-burning fireplace and excellent security features</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/background.jpg\" background_position=\"bottom_center\" min_height=\"684px\" custom_margin=\"||-78px|||\" custom_padding=\"110px||5px|||\"][et_pb_row custom_padding=\"||0px|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"479px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #002349;\">01</span></p>[/et_pb_text][et_pb_cta title=\"Main Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/main-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p><span style=\"color: #999999;\">Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.</span></p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"42px|||||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_color=\"#002349\" min_height=\"684px\" custom_margin=\"-1px|||||\" custom_padding=\"1px||110px|||\"][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"37px|||||\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #ffffff;\">02</span></p>[/et_pb_text][et_pb_cta title=\"Second Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/second-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#ffffff\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p><span style=\"color: #999999;\">Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','inherit','closed','closed','','31-revision-v1','','','2019-06-24 22:24:52','2019-06-24 20:24:52','',31,'https://www.silverbirchonhohenhort.co.za/2019/06/24/31-revision-v1/',0,'revision','',0),(127,1,'2019-06-24 22:26:04','2019-06-24 20:26:04','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"||3px|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||-27px|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>DETAILED BY DESIGN</h1>\n<p><span style=\"font-size: large;\">Here, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.</span></p>\n<p class=\"p1\"><span style=\"font-size: large;\">A continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.</span></p>\n<p> </p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"2px|||||\" parallax_2=\"on\" _builder_version=\"3.24.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<p class=\"p1\"><span style=\"font-size: medium;\">• Double-volume entrance foyer with water feature</span><br /> <span style=\"font-size: medium;\"> • TV living room<br /> • Formal lounge<br /> • Dining room<br /> • Open-plan kitchen with walk-through scullery/ pantry<br /> • Outside alfresco lounge<br /> • Summer lounge<br /> • Courtyard area<br /> • Timber deck entertainment area<br /> • 4 x en-suite bedrooms, each leading onto balcony area<br /> • Dressing room in master suite</span></p>\n<p class=\"p1\">\n[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<p class=\"p1\"><span style=\"font-size: medium;\">• Pyjama lounge</span><br /><span style=\"font-size: medium;\"> • Glass-box study<br /> • Guest cloakroom<br /> • Double garage<br /> • Staff quarters<br /> • Laundry room<br /> • Swimming pool<br /> • Tennis court<br /> • Other features include; a full-height bookshelf library, roof skylights,<br /> large triple-sided wood-burning fireplace and excellent security features</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/background.jpg\" background_position=\"bottom_center\" min_height=\"684px\" custom_margin=\"||-78px|||\" custom_padding=\"110px||5px|||\"][et_pb_row custom_padding=\"||0px|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"479px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #002349;\">01</span></p>[/et_pb_text][et_pb_cta title=\"Main Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/main-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p><span style=\"color: #999999;\">Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.</span></p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"42px|||||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_color=\"#002349\" min_height=\"684px\" custom_margin=\"-1px|||||\" custom_padding=\"1px||110px|||\"][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"37px|||||\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #ffffff;\">02</span></p>[/et_pb_text][et_pb_cta title=\"Second Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/second-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#ffffff\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p><span style=\"color: #999999;\">Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','inherit','closed','closed','','31-revision-v1','','','2019-06-24 22:26:04','2019-06-24 20:26:04','',31,'https://www.silverbirchonhohenhort.co.za/2019/06/24/31-revision-v1/',0,'revision','',0),(129,1,'2019-06-24 22:27:43','2019-06-24 20:27:43','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Silverbirch-Surrounds.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Constantia and</h1>\n<h1><span style=\"color: #999999;\">surrounds</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">Constantia’s leafy tree-lined avenues, country-style ambience, and scenic beauty with</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">a history going back to 1685 make it a highly desirable location for both international</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">visitors and locals who choose to call it their home.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"82px||111px|||\" _builder_version=\"3.24.1\" width=\"100%\" max_width=\"1261px\" module_alignment=\"center\" min_height=\"392px\"][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<p class=\"p1\">PLEASURABLE PURSUITS</p>\n<p class=\"p1\"><span style=\"font-size: medium;\">A short distance away numerous greenbelt walking and horse-riding trails, from the picturesque Cecilia Forest trails to the Alphen and Silvermine hiking routes, take you from Constantia Nek to the world-renowned Kirstenbosch Botanical Gardens.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<p class=\"p1\"><span style=\"font-size: medium;\">Close by is an array of restaurant and bistro options from the Jonkershuis Restaurant at Groot Constantia to the historic Buitenverwachting Restaurant to The Greenhouse at The Cellars-Hohenhort to the award winning La Colombe.</span></p>\n<p class=\"p1\"><span style=\"font-size: medium;\">Or venture over to Steenberg vineyards and enjoy Bistro 1682 or Catharina’s or head</span></p>\n<p class=\"p1\"><span style=\"font-size: medium;\">to Beau Constantia for a selection of delicious wine and sushi. Alternatively indulge</span></p>\n<p class=\"p1\"><span style=\"font-size: medium;\">in casual al-fresco country dining at the nearby Pastis.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Screenshot-2019-06-24-at-22.12.07.png\" url=\"https://www.google.co.za/maps/place/16+Bordeaux+Ave,+Constantia+Heights,+Cape+Town,+7806/@-34.00039,18.4288113,17z/data=!3m1!4b1!4m5!3m4!1s0x1dcc42a1d6106325:0x9a8c5b6fb62792bb!8m2!3d-34.00039!4d18.431?hl=en-GB\" url_new_window=\"on\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section]','Location','','inherit','closed','closed','','40-revision-v1','','','2019-06-24 22:27:43','2019-06-24 20:27:43','',40,'https://www.silverbirchonhohenhort.co.za/2019/06/24/40-revision-v1/',0,'revision','',0),(130,1,'2019-06-24 22:29:24','2019-06-24 20:29:24','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Silverbirch-Surrounds.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Constantia and</h1>\n<h1><span style=\"color: #999999;\">surrounds</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">Constantia’s leafy tree-lined avenues, country-style ambience, and scenic beauty with</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">a history going back to 1685 make it a highly desirable location for both international</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">visitors and locals who choose to call it their home.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"82px||111px|||\" _builder_version=\"3.24.1\" width=\"100%\" max_width=\"1261px\" module_alignment=\"center\" min_height=\"392px\"][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" data-shortcode-id=\"1.0.0.1-1561408079056\" data-quickaccess-id=\"header\" contenteditable=\"true\">PLEASURABLE PURSUITS</h2>\n<p class=\"p1\"><span style=\"font-size: medium;\">A short distance away numerous greenbelt walking and horse-riding trails, from the picturesque Cecilia Forest trails to the Alphen and Silvermine hiking routes, take you from Constantia Nek to the world-renowned Kirstenbosch Botanical Gardens.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<p class=\"p1\"><span style=\"font-size: medium;\">Close by is an array of restaurant and bistro options from the Jonkershuis Restaurant at Groot Constantia to the historic Buitenverwachting Restaurant to The Greenhouse at The Cellars-Hohenhort to the award winning La Colombe.</span></p>\n<p class=\"p1\"><span style=\"font-size: medium;\">Or venture over to Steenberg vineyards and enjoy Bistro 1682 or Catharina’s or head</span></p>\n<p class=\"p1\"><span style=\"font-size: medium;\">to Beau Constantia for a selection of delicious wine and sushi. Alternatively indulge</span></p>\n<p class=\"p1\"><span style=\"font-size: medium;\">in casual al-fresco country dining at the nearby Pastis.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Screenshot-2019-06-24-at-22.12.07.png\" url=\"https://www.google.co.za/maps/place/16+Bordeaux+Ave,+Constantia+Heights,+Cape+Town,+7806/@-34.00039,18.4288113,17z/data=!3m1!4b1!4m5!3m4!1s0x1dcc42a1d6106325:0x9a8c5b6fb62792bb!8m2!3d-34.00039!4d18.431?hl=en-GB\" url_new_window=\"on\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section]','Location','','inherit','closed','closed','','40-revision-v1','','','2019-06-24 22:29:24','2019-06-24 20:29:24','',40,'https://www.silverbirchonhohenhort.co.za/2019/06/24/40-revision-v1/',0,'revision','',0),(132,1,'2019-06-24 22:30:15','2019-06-24 20:30:15','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Silverbirch-Surrounds.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.83\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Constantia and</h1>\n<h1><span style=\"color: #999999;\">surrounds</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p><span style=\"color: #999999;\">Constantia’s leafy tree-lined avenues, country-style ambience, and scenic beauty with</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">a history going back to 1685 make it a highly desirable location for both international</span></p>\n<p class=\"p1\"><span style=\"color: #999999;\">visitors and locals who choose to call it their home.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"113px||111px|||\" _builder_version=\"3.24.1\" width=\"100%\" max_width=\"1261px\" module_alignment=\"center\" min_height=\"369px\"][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" data-shortcode-id=\"1.0.0.1-1561408079056\" data-quickaccess-id=\"header\" contenteditable=\"true\">PLEASURABLE PURSUITS</h2>\n<p class=\"p1\"><span style=\"font-size: medium;\">A short distance away numerous greenbelt walking and horse-riding trails, from the picturesque Cecilia Forest trails to the Alphen and Silvermine hiking routes, take you from Constantia Nek to the world-renowned Kirstenbosch Botanical Gardens.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.24.1\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<p class=\"p1\"><span style=\"font-size: medium;\">Close by is an array of restaurant and bistro options from the Jonkershuis Restaurant at Groot Constantia to the historic Buitenverwachting Restaurant to The Greenhouse at The Cellars-Hohenhort to the award winning La Colombe.</span></p>\n<p class=\"p1\"><span style=\"font-size: medium;\">Or venture over to Steenberg vineyards and enjoy Bistro 1682 or Catharina’s or head </span><span style=\"font-size: medium;\">to Beau Constantia for a selection of delicious wine and sushi. Alternatively indulge </span><span style=\"font-size: medium;\">in casual al-fresco country dining at the nearby Pastis.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Screenshot-2019-06-24-at-22.12.07.png\" url=\"https://www.google.co.za/maps/place/16+Bordeaux+Ave,+Constantia+Heights,+Cape+Town,+7806/@-34.00039,18.4288113,17z/data=!3m1!4b1!4m5!3m4!1s0x1dcc42a1d6106325:0x9a8c5b6fb62792bb!8m2!3d-34.00039!4d18.431?hl=en-GB\" url_new_window=\"on\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section]','Location','','inherit','closed','closed','','40-revision-v1','','','2019-06-24 22:30:15','2019-06-24 20:30:15','',40,'https://www.silverbirchonhohenhort.co.za/2019/06/24/40-revision-v1/',0,'revision','',0),(134,1,'2019-07-12 09:55:17','2019-07-12 07:55:17','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"||3px|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||-27px|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>DETAILED BY DESIGN</h1>\n<p><span style=\"font-size: large;\">Here, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.</span></p>\n<p class=\"p1\"><span style=\"font-size: large;\">A continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.</span></p>\n<p> </p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"2px|||||\" parallax_2=\"on\" _builder_version=\"3.24.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<p class=\"p1\"><span style=\"font-size: medium;\">• Double-volume entrance foyer with water feature</span><br /> <span style=\"font-size: medium;\"> • TV living room<br /> • Formal lounge<br /> • Dining room<br /> • Open-plan kitchen with walk-through scullery/ pantry<br /> • Outside alfresco lounge<br /> • Summer lounge<br /> • Courtyard area<br /> • Timber deck entertainment area<br /> • 4 x en-suite bedrooms, each leading onto balcony area<br /> • Dressing room in master suite</span></p>\n<p class=\"p1\">[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<p class=\"p1\"><span style=\"font-size: medium;\">• Pyjama lounge</span><br /><span style=\"font-size: medium;\"> • Glass-box study<br /> • Guest cloakroom<br /> • Double garage<br /> • Staff quarters<br /> • Laundry room<br /> • Swimming pool<br /> • Tennis court<br /> • Other features include; a full-height bookshelf library, roof skylights,<br /> large triple-sided wood-burning fireplace and excellent security features</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/background.jpg\" background_position=\"bottom_center\" min_height=\"684px\" custom_margin=\"||-78px|||\" custom_padding=\"110px||5px|||\"][et_pb_row custom_padding=\"||0px|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"479px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #002349;\">01</span></p>[/et_pb_text][et_pb_cta title=\"Main Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/main-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"42px|||||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_color=\"#002349\" min_height=\"684px\" custom_margin=\"-1px|||||\" custom_padding=\"1px||110px|||\"][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"37px|||||\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #ffffff;\">02</span></p>[/et_pb_text][et_pb_cta title=\"Second Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/second-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#ffffff\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','inherit','closed','closed','','31-revision-v1','','','2019-07-12 09:55:17','2019-07-12 07:55:17','',31,'https://www.silverbirchonhohenhort.co.za/2019/07/12/31-revision-v1/',0,'revision','',0),(136,1,'2019-07-16 13:05:17','2019-07-16 11:05:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.24.1\" animation_style=\"fade\"][et_pb_fullwidth_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/16-Bordeaux-Ave-low.jpg\" _builder_version=\"3.24.1\"][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22.3\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" make_equal=\"on\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Second_Dwelling_Lounge_Downstairs.jpg\" parallax_2=\"on\" padding_top_1=\"10%\" padding_right_1=\"8%\" padding_bottom_1=\"10%\" padding_left_1=\"8%\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.24.1\" background_color=\"#002349\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\" background_color_2__hover_enabled=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"11px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" header_2_font=\"Montserrat||||||||\" header_2_font_size=\"25px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"190px\" custom_margin=\"||7px|||\" animation_style=\"slide\" animation_direction=\"left\" text_font_last_edited=\"on|phone\" header_font_last_edited=\"on|phone\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_2_font_size_last_edited=\"on|desktop\" locked=\"off\"]<h1>designed for distinction<br /> <span style=\"color: #999999;\">silverbirch</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_font_size=\"20px\" text_line_height=\"1.6em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"32px||50px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"17%\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Nestled in the exclusive heart of the Constantia Valley, Cape Town, is a luxurious,</p>\n<p class=\"p1\">contemporary and secure residence selling off plan. Occupying a corner setting with</p>\n<p class=\"p1\">a sprawling 800 sqm<span class=\"s1\"> </span>of living space Silverbirch is situated on a sylvan site totalling</p>\n<p class=\"p1\">more than 4000 sqm <span style=\"font-size: 20px;\">totalling </span><span style=\"font-size: 20px;\">+/- 2000 sqm per house.</span></p>[/et_pb_text][et_pb_button button_text=\"Asking Price from: R25 000 000 PLUS VAT\" _builder_version=\"3.24.1\" custom_button=\"on\" button_text_size=\"20px\" button_bg_use_color_gradient=\"on\" button_bg_color_gradient_start=\"#ffffff\" button_bg_color_gradient_end=\"#afafaf\" button_border_radius=\"23px\" button_font=\"Montserrat||||||||\" button_use_icon=\"off\" box_shadow_style=\"preset3\" box_shadow_horizontal=\"10px\" box_shadow_spread=\"8px\" animation_style=\"slide\" animation_direction=\"bottom\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.24.1\" background_color=\"#ffffff\" custom_padding=\"22px||22px||true|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row custom_margin=\"|auto|-6px|auto||\" admin_label=\"Service Section Title\" _builder_version=\"3.22.3\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.83\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #666666;\">Let\'s Start Something new</span><br /><span style=\"color: #999999;\">Say Hello!</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_margin=\"|140px||140px||\" admin_label=\"Contact Form\" _builder_version=\"3.24.1\" animation_style=\"fade\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_contact_form captcha=\"off\" email=\"casey.g@sothebysrealtyss.co.za\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.24.1\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#002349\" button_border_width=\"5px\" button_border_color=\"#002349\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#002349\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" border_radii=\"on||||\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jacques Fourie\" position=\"072 304 7957\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jacques.jpg\" _builder_version=\"3.24.1\" body_font=\"Montserrat||||||||\" body_font_size=\"15px\" custom_margin=\"0px|0px||0px\"]<p>jacques.f@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Jo Thomas\" position=\"084 404 4120\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Jo-Thomas.jpg\" _builder_version=\"3.24.1\" body_font=\"Montserrat||||||||\"]<p>jo.t@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.0.47\"][et_pb_team_member name=\"Rouvaun McKirby\" position=\"071 671 0821\" image_url=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/Rouvaun-McKirby.jpg\" _builder_version=\"3.24.1\" body_font=\"Montserrat||||||||\"]<p>rouvaun.m@sothebysrealtyss.co.za</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','7-revision-v1','','','2019-07-16 13:05:17','2019-07-16 11:05:17','',7,'https://www.silverbirchonhohenhort.co.za/2019/07/16/7-revision-v1/',0,'revision','',0),(138,1,'2019-07-16 16:34:07','2019-07-16 14:34:07','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/circle-background-pattern.png\" custom_padding=\"||3px|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row custom_padding=\"|||\" bg_img_2=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/business-13.jpg\" parallax_2=\"on\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||-27px|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>DETAILED BY DESIGN</h1>\n<p><span style=\"font-size: large;\">Here, understated elegance is displayed in the home’s distinctive open and clean design aesthetic. Beautiful views through large panes of glass are aligned with pathways throughout the house cleverly designed to maximize light and space offering versatile family accommodation. Four sumptuous en-suite bedrooms reflect a contemporary interpretation of space. The breathtaking open-plan master suite features a walk-in dressing room whilst the full-height glass in the en-suite bathroom makes the most of the property’s panoramic views.</span></p>\n<p class=\"p1\"><span style=\"font-size: large;\">A continuous glass balcony runs the length of the upper level of bedroom suites and offers cinematic views, broken on one side by a cantilevered glass-box study, enhancing a sense of floating above the world. A roller-shutter door allows for separation between the upper and lower level of the home and provides an extra level of security.</span></p>\n<p> </p>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"2px|||||\" parallax_2=\"on\" _builder_version=\"3.24.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<p class=\"p1\"><span style=\"font-size: medium;\">• Double-volume entrance foyer with water feature</span><br /> <span style=\"font-size: medium;\"> • TV living room<br /> • Formal lounge<br /> • Dining room<br /> • Open-plan kitchen with walk-through scullery/ pantry<br /> • Outside alfresco lounge<br /> • Summer lounge<br /> • Courtyard area<br /> • Timber deck entertainment area<br /> • 4 x en-suite bedrooms, each leading onto balcony area<br /> • Dressing room in master suite</span></p>\n<p class=\"p1\">[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.23.4\" max_width=\"120px\" height=\"0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"Montserrat||||||||\" text_font_size=\"16px\"]<p class=\"p1\"><span style=\"font-size: medium;\">• Pyjama lounge</span><br /><span style=\"font-size: medium;\"> • Glass-box study<br /> • Guest cloakroom<br /> • Double garage<br /> • Staff quarters<br /> • Laundry room<br /> • Swimming pool<br /> • Other features include; a full-height bookshelf library, roof skylights,<br /> large triple-sided wood-burning fireplace and excellent security features</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_image=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/background.jpg\" background_position=\"bottom_center\" min_height=\"684px\" custom_margin=\"||-78px|||\" custom_padding=\"110px||5px|||\"][et_pb_row custom_padding=\"||0px|||\" padding_top_1=\"5%\" padding_bottom_1=\"5%\" admin_label=\"Project 01\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"479px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #002349;\">01</span></p>[/et_pb_text][et_pb_cta title=\"Main Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/main-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"42px|||||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.24.1\" background_color=\"#002349\" min_height=\"684px\" custom_margin=\"-1px|||||\" custom_padding=\"1px||110px|||\"][et_pb_row custom_padding=\"|||\" custom_margin=\"50px|||\" padding_top_2=\"5%\" padding_bottom_2=\"5%\" admin_label=\"Project 02\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_image src=\"https://www.silverbirchonhohenhort.co.za/wp-content/uploads/2019/06/190207-Deon-Stander-Plans-Main-Dwelling-col-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.24.1\" custom_padding=\"37px|||||\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.0.83\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span style=\"color: #ffffff;\">02</span></p>[/et_pb_text][et_pb_cta title=\"Second Dwelling\" button_url=\"https://www.silverbirchonhohenhort.co.za/second-dwelling\" button_text=\"View Plan\" _builder_version=\"3.24.1\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#ffffff\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#999999\" button_border_width=\"4px\" button_border_color=\"#999999\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','inherit','closed','closed','','31-revision-v1','','','2019-07-16 16:34:07','2019-07-16 14:34:07','',31,'https://www.silverbirchonhohenhort.co.za/2019/07/16/31-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(66,2,0),(67,2,0),(68,2,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,3);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorised','uncategorised',0),(2,'Primary','primary',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','Rufus'),(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,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"f5059fe6d2067338be3a1297a70c7ef162703f6bd04a29ae1abb092738abe436\";a:4:{s:10:\"expiration\";i:1563447804;s:2:\"ip\";s:15:\"105.226.209.197\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:5:\"login\";i:1563275004;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','133'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"105.226.209.0\";}'),(19,1,'wp_user-settings','libraryContent=browse&align=center'),(20,1,'wp_user-settings-time','1562918045');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'Rufus','$P$B1.77ZUmiAoRSgYwabrxj7zqxIb8xP0','rufus','info@ctrlaltdesign.co.za','','2019-06-13 09:06:54','',0,'Rufus');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2020-07-12 20:31:12