CINXE.COM
Popular Archives - Koh Brothers Development Pte Ltd
<!DOCTYPE html> <html lang="en-US" class="scheme_original"> <head> <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="format-detection" content="telephone=no"> <link rel="profile" href="//gmpg.org/xfn/11" /> <link rel="pingback" href="https://www.kbd.com.sg/wp/xmlrpc.php" /> <!-- This site is optimized with the Yoast SEO plugin v19.2 - https://yoast.com/wordpress/plugins/seo/ --> <title>Popular Archives - Koh Brothers Development Pte Ltd</title> <link rel="canonical" href="https://www.kbd.com.sg/tag/popular/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Popular Archives - Koh Brothers Development Pte Ltd" /> <meta property="og:url" content="https://www.kbd.com.sg/tag/popular/" /> <meta property="og:site_name" content="Koh Brothers Development Pte Ltd" /> <meta name="twitter:card" content="summary" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://www.kbd.com.sg/#website","url":"https://www.kbd.com.sg/","name":"Koh Brothers Development Pte Ltd","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.kbd.com.sg/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"CollectionPage","@id":"https://www.kbd.com.sg/tag/popular/#webpage","url":"https://www.kbd.com.sg/tag/popular/","name":"Popular Archives - Koh Brothers Development Pte Ltd","isPartOf":{"@id":"https://www.kbd.com.sg/#website"},"breadcrumb":{"@id":"https://www.kbd.com.sg/tag/popular/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.kbd.com.sg/tag/popular/"]}]},{"@type":"BreadcrumbList","@id":"https://www.kbd.com.sg/tag/popular/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.kbd.com.sg/"},{"@type":"ListItem","position":2,"name":"Popular"}]}]}</script> <!-- / Yoast SEO plugin. --> <link rel='dns-prefetch' href='//maps.google.com' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel='dns-prefetch' href='//s.w.org' /> <link rel="alternate" type="application/rss+xml" title="Koh Brothers Development Pte Ltd » Feed" href="https://www.kbd.com.sg/feed/" /> <link rel="alternate" type="application/rss+xml" title="Koh Brothers Development Pte Ltd » Comments Feed" href="https://www.kbd.com.sg/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="Koh Brothers Development Pte Ltd » Popular Tag Feed" href="https://www.kbd.com.sg/tag/popular/feed/" /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/www.kbd.com.sg\/wp\/wp-includes\/js\/wp-emoji.js?ver=6.0","twemoji":"https:\/\/www.kbd.com.sg\/wp\/wp-includes\/js\/twemoji.js?ver=6.0"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ ( function( window, document, settings ) { var src, ready, ii, tests; // Create a canvas element for testing native browser support of emoji. var canvas = document.createElement( 'canvas' ); var context = canvas.getContext && canvas.getContext( '2d' ); /** * Checks if two sets of Emoji characters render the same visually. * * @since 4.9.0 * * @private * * @param {number[]} set1 Set of Emoji character codes. * @param {number[]} set2 Set of Emoji character codes. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( set1, set2 ) { var stringFromCharCode = String.fromCharCode; // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 ); var rendered1 = canvas.toDataURL(); // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 ); var rendered2 = canvas.toDataURL(); return rendered1 === rendered2; } /** * Detects if the browser supports rendering emoji or flag emoji. * * Flag emoji are a single glyph made of two characters, so some browsers * (notably, Firefox OS X) don't support them. * * @since 4.2.0 * * @private * * @param {string} type Whether to test for support of "flag" or "emoji". * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( type ) { var isIdentical; if ( ! context || ! context.fillText ) { return false; } /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec, * but has landed in Twemoji early, so we can add support for it, too. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( [ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ], [ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ] ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( [ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ], [ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ] ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather an five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( [ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ], [ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ] ); return ! isIdentical; case 'emoji': /* * Why can't we be friends? Everyone can now shake hands in emoji, regardless of skin tone! * * To test for Emoji 14.0 support, try to render a new emoji: Handshake: Light Skin Tone, Dark Skin Tone. * * The Handshake: Light Skin Tone, Dark Skin Tone emoji is a ZWJ sequence combining 🫱 Rightwards Hand, * 🏻 Light Skin Tone, a Zero Width Joiner, 🫲 Leftwards Hand, and 🏿 Dark Skin Tone. * * 0x1FAF1 == Rightwards Hand * 0x1F3FB == Light Skin Tone * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x1FAF2 == Leftwards Hand * 0x1F3FF == Dark Skin Tone. * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( [0x1FAF1, 0x1F3FB, 0x200D, 0x1FAF2, 0x1F3FF], [0x1FAF1, 0x1F3FB, 0x200B, 0x1FAF2, 0x1F3FF] ); return ! isIdentical; } return false; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {Object} src The url where the script is located. * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = script.type = 'text/javascript'; document.getElementsByTagName( 'head' )[0].appendChild( script ); } tests = Array( 'flag', 'emoji' ); settings.supports = { everything: true, everythingExceptFlag: true }; /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for( ii = 0; ii < tests.length; ii++ ) { settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] ); settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ]; if ( 'flag' !== tests[ ii ] ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function() { settings.DOMReady = true; }; // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { ready = function() { settings.readyCallback(); }; /* * Cross-browser version of adding a dom ready event. */ if ( document.addEventListener ) { document.addEventListener( 'DOMContentLoaded', ready, false ); window.addEventListener( 'load', ready, false ); } else { window.attachEvent( 'onload', ready ); document.attachEvent( 'onreadystatechange', function() { if ( 'complete' === document.readyState ) { settings.readyCallback(); } } ); } src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } )( window, document, window._wpemojiSettings ); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://www.kbd.com.sg/wp/wp-includes/css/dist/block-library/style.css?ver=6.0' type='text/css' media='all' /> <style id='global-styles-inline-css' type='text/css'> body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} </style> <link rel='stylesheet' id='contact-form-7-css' href='https://www.kbd.com.sg/app/plugins/contact-form-7/includes/css/styles.css?ver=5.6' type='text/css' media='all' /> <link rel='stylesheet' id='esg-plugin-settings-css' href='https://www.kbd.com.sg/app/plugins/essential-grid/public/assets/css/settings.css?ver=3.0.15' type='text/css' media='all' /> <link rel='stylesheet' id='tp-fontello-css' href='https://www.kbd.com.sg/app/plugins/essential-grid/public/assets/font/fontello/css/fontello.css?ver=3.0.15' type='text/css' media='all' /> <link rel='stylesheet' id='news-manager-front-css' href='https://www.kbd.com.sg/app/plugins/news-manager/css/front.css?ver=6.0' type='text/css' media='all' /> <link rel='stylesheet' id='yreg-estate-font-google-fonts-style-css' href='//fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,700,700italic|Montserrat:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext' type='text/css' media='all' /> <link rel='stylesheet' id='fontello-style-css' href='https://www.kbd.com.sg/app/themes/yreg-estate/css/fontello/css/fontello.css' type='text/css' media='all' /> <link rel='stylesheet' id='yreg-estate-main-style-css' href='https://www.kbd.com.sg/app/themes/yreg-estate/style.css' type='text/css' media='all' /> <link rel='stylesheet' id='yreg-estate-animation-style-css' href='https://www.kbd.com.sg/app/themes/yreg-estate/fw/css/core.animation.css' type='text/css' media='all' /> <link rel='stylesheet' id='yreg-estate-shortcodes-style-css' href='https://www.kbd.com.sg/app/plugins/trx_utils/shortcodes/theme.shortcodes.css' type='text/css' media='all' /> <link rel='stylesheet' id='yreg-estate-skin-style-css' href='https://www.kbd.com.sg/app/themes/yreg-estate/skins/no_less/skin.css' type='text/css' media='all' /> <link rel='stylesheet' id='yreg-estate-custom-style-css' href='https://www.kbd.com.sg/app/themes/yreg-estate/fw/css/custom-style.css' type='text/css' media='all' /> <style id='yreg-estate-custom-style-inline-css' type='text/css'> body{font-family:Open Sans;font-size:14px;font-weight:400;line-height:1.714em}h1{font-family:Open Sans;font-size:3.429em;font-weight:400;line-height:normal; margin-top:0.208em;margin-bottom:0.292em}h2{font-family:Open Sans;font-size:2.571em;font-weight:700;line-height:normal; margin-top:0.417em;margin-bottom:0.459em}h3{font-family:Open Sans;font-size:2.143em;font-weight:700;line-height:normal; margin-top:0.533em;margin-bottom:0.633em}h4{font-family:Montserrat;font-size:1.571em;font-weight:400;line-height:normal; margin-top:1em;margin-bottom:1em}h5{font-family:Montserrat;font-size:1em;font-weight:400;line-height:normal; margin-top:1.714em;margin-bottom:1.714em}h6{font-family:Open Sans;font-size:1em;font-weight:400;line-height:normal; margin-top:1.643em;margin-bottom:1.643em}a,.scheme_dark a,.scheme_light a{; color:}a:hover,.scheme_dark a:hover,.scheme_light a:hover{color:#185A48}.accent1{color:}.accent1_bgc{background-color:}.accent1_bg{background:}.accent1_border{border-color:}a.accent1:hover{color:#185A48}.accent1h{color:#185A48}.post_content.ih-item.circle.effect1.colored .info,.post_content.ih-item.circle.effect2.colored .info,.post_content.ih-item.circle.effect3.colored .info,.post_content.ih-item.circle.effect4.colored .info,.post_content.ih-item.circle.effect5.colored .info .info-back,.post_content.ih-item.circle.effect6.colored .info,.post_content.ih-item.circle.effect7.colored .info,.post_content.ih-item.circle.effect8.colored .info,.post_content.ih-item.circle.effect9.colored .info,.post_content.ih-item.circle.effect10.colored .info,.post_content.ih-item.circle.effect11.colored .info,.post_content.ih-item.circle.effect12.colored .info,.post_content.ih-item.circle.effect13.colored .info,.post_content.ih-item.circle.effect14.colored .info,.post_content.ih-item.circle.effect15.colored .info,.post_content.ih-item.circle.effect16.colored .info,.post_content.ih-item.circle.effect18.colored .info .info-back,.post_content.ih-item.circle.effect19.colored .info,.post_content.ih-item.circle.effect20.colored .info .info-back,.post_content.ih-item.square.effect1.colored .info,.post_content.ih-item.square.effect2.colored .info,.post_content.ih-item.square.effect3.colored .info,.post_content.ih-item.square.effect4.colored .mask1,.post_content.ih-item.square.effect4.colored .mask2,.post_content.ih-item.square.effect5.colored .info,.post_content.ih-item.square.effect6.colored .info,.post_content.ih-item.square.effect7.colored .info,.post_content.ih-item.square.effect8.colored .info,.post_content.ih-item.square.effect9.colored .info .info-back,.post_content.ih-item.square.effect10.colored .info,.post_content.ih-item.square.effect11.colored .info,.post_content.ih-item.square.effect12.colored .info,.post_content.ih-item.square.effect13.colored .info,.post_content.ih-item.square.effect14.colored .info,.post_content.ih-item.square.effect15.colored .info,.post_content.ih-item.circle.effect20.colored .info .info-back,.post_content.ih-item.square.effect_book.colored .info{background:}.post_content.ih-item.circle.effect1.colored .info,.post_content.ih-item.circle.effect2.colored .info,.post_content.ih-item.circle.effect5.colored .info .info-back,.post_content.ih-item.circle.effect19.colored .info,.post_content.ih-item.square.effect4.colored .mask1,.post_content.ih-item.square.effect4.colored .mask2,.post_content.ih-item.square.effect6.colored .info,.post_content.ih-item.square.effect7.colored .info,.post_content.ih-item.square.effect12.colored .info,.post_content.ih-item.square.effect13.colored .info,.post_content.ih-item.square.effect_more.colored .info,.post_content.ih-item.square.effect_fade.colored:hover .info,.post_content.ih-item.square.effect_dir.colored .info,.post_content.ih-item.square.effect_shift.colored .info{/*background:rgba(0,0,0,0.6);*/ background:rgba(55,53,61,0.67)}.post_content.ih-item.square.effect_fade.colored .info{background:-moz-linear-gradient(top,rgba(255,255,255,0) 70%,rgba(0,0,0,0.6) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(70%,rgba(255,255,255,0)),color-stop(100%,rgba(0,0,0,0.6))); background:-webkit-linear-gradient(top,rgba(255,255,255,0) 70%,rgba(0,0,0,0.6) 100%); background:-o-linear-gradient(top,rgba(255,255,255,0) 70%,rgba(0,0,0,0.6) 100%); background:-ms-linear-gradient(top,rgba(255,255,255,0) 70%,rgba(0,0,0,0.6) 100%); background:linear-gradient(to bottom,rgba(255,255,255,0) 70%,rgba(0,0,0,0.6) 100%)}.post_content.ih-item.circle.effect17.colored:hover .img:before{-webkit-box-shadow:inset 0 0 0 110px rgba(0,0,0,0.6),inset 0 0 0 16px rgba(255,255,255,0.8),0 1px 2px rgba(0,0,0,0.1); -moz-box-shadow:inset 0 0 0 110px rgba(0,0,0,0.6),inset 0 0 0 16px rgba(255,255,255,0.8),0 1px 2px rgba(0,0,0,0.1); box-shadow:inset 0 0 0 110px rgba(0,0,0,0.6),inset 0 0 0 16px rgba(255,255,255,0.8),0 1px 2px rgba(0,0,0,0.1)}.post_content.ih-item.circle.effect1 .spinner{border-right-color:; border-bottom-color:}pre.code,#toc .toc_item.current,#toc .toc_item:hover{border-color:}::selection,::-moz-selection{background-color:}input[type="text"],input[type="number"],input[type="email"],input[type="search"],input[type="password"],select,textarea{}.top_panel_inner_style_3 .top_panel_cart_button,.top_panel_inner_style_4 .top_panel_cart_button{background-color:rgba(0,0,0,0.2)}.top_panel_style_8 .top_panel_buttons .top_panel_cart_button:before{background-color:}.top_panel_inner_style_3 .top_panel_top,.top_panel_inner_style_4 .top_panel_top,.top_panel_inner_style_5 .top_panel_top,.top_panel_inner_style_3 .top_panel_top .sidebar_cart,.top_panel_inner_style_4 .top_panel_top .sidebar_cart{background-color:}.top_panel_top a:hover{color:#185A48}.menu_user_nav>li>a:hover{color:#185A48}.top_panel_inner_style_3 .menu_user_nav>li>ul:after,.top_panel_inner_style_4 .menu_user_nav>li>ul:after,.top_panel_inner_style_5 .menu_user_nav>li>ul:after,.top_panel_inner_style_3 .menu_user_nav>li ul,.top_panel_inner_style_4 .menu_user_nav>li ul,.top_panel_inner_style_5 .menu_user_nav>li ul{background-color:; border-color:#185A48}.top_panel_inner_style_3 .menu_user_nav>li ul li a:hover,.top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-item>a,.top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-ancestor>a,.top_panel_inner_style_4 .menu_user_nav>li ul li a:hover,.top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-item>a,.top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-ancestor>a,.top_panel_inner_style_5 .menu_user_nav>li ul li a:hover,.top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-item>a,.top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-ancestor>a{background-color:#185A48}.top_panel_middle .logo{}.logo .logo_text{font-family:Montserrat;font-size:2em;font-weight:normal;line-height:2em}.top_panel_middle .menu_main_wrap{margin-top:calc(inherit*0.75)}.top_panel_style_5 .top_panel_middle .logo{margin-bottom:calc(inherit*0.5)}.top_panel_image_hover{background-color:rgba(24,72,72,0.8)}.menu_main_nav>li>a{padding:inherit 1.5em inherit; font-family:Montserrat;font-size:0.929em}.menu_main_nav>li>a:hover,.menu_main_nav>li.sfHover>a,.menu_main_nav>li#blob,.menu_main_nav>li.current-menu-item>a,.menu_main_nav>li.current-menu-parent>a,.menu_main_nav>li.current-menu-ancestor>a{color:#185A48}.top_panel_inner_style_1 .menu_main_nav>li>a:hover,.top_panel_inner_style_2 .menu_main_nav>li>a:hover{/*background-color:#185A48;*/ border-color:}.scheme_red .top_panel_inner_style_1 .menu_main_nav>li>a:hover{border-color:#fff}.top_panel_inner_style_1 .menu_main_nav>li ul,.top_panel_inner_style_2 .menu_main_nav>li ul{}.top_panel_inner_style_1 .menu_main_nav>a:hover,.top_panel_inner_style_1 .menu_main_nav>li.sfHover>a,.top_panel_inner_style_1 .menu_main_nav>li#blob,.top_panel_inner_style_1 .menu_main_nav>li.current-menu-item>a,.top_panel_inner_style_1 .menu_main_nav>li.current-menu-parent>a,.top_panel_inner_style_1 .menu_main_nav>li.current-menu-ancestor>a,.top_panel_inner_style_2 .menu_main_nav>a:hover,.top_panel_inner_style_2 .menu_main_nav>li.sfHover>a,.top_panel_inner_style_2 .menu_main_nav>li#blob,.top_panel_inner_style_2 .menu_main_nav>li.current-menu-item>a,.top_panel_inner_style_2 .menu_main_nav>li.current-menu-parent>a,.top_panel_inner_style_2 .menu_main_nav>li.current-menu-ancestor>a{/*background-color:#185A48;*/ border-color:}.scheme_red .top_panel_inner_style_1 .menu_main_nav>a:hover,.scheme_red .top_panel_inner_style_1 .menu_main_nav>li.sfHover>a,.scheme_red .top_panel_inner_style_1 .menu_main_nav>li#blob,.scheme_red .top_panel_inner_style_1 .menu_main_nav>li.current-menu-item>a,.scheme_red .top_panel_inner_style_1 .menu_main_nav>li.current-menu-parent>a,.scheme_red .top_panel_inner_style_1 .menu_main_nav>li.current-menu-ancestor>a{border-color:#fff}.top_panel_wrap_inner a,.top_panel_wrap_inner .menu_user_nav>li>a{color:#fff}.top_panel_wrap_inner a:hover{color:#185A48}.menu_main_nav>li ul a{font-family:Montserrat;font-size:0.857em}.menu_main_nav>li>ul{top:calc(inherit+inherit+inherit)}.menu_main_nav>li ul li a{padding:inherit 1.5em inherit}.menu_main_nav>li ul li a:hover,.menu_main_nav>li ul li.current-menu-item>a,.menu_main_nav>li ul li.current-menu-ancestor>a{color:#185A48}.top_panel_inner_style_1 .menu_main_nav>li ul li a:hover,.top_panel_inner_style_1 .menu_main_nav>li ul li.current-menu-item>a,.top_panel_inner_style_1 .menu_main_nav>li ul li.current-menu-ancestor>a,.top_panel_inner_style_2 .menu_main_nav>li ul li a:hover,.top_panel_inner_style_2 .menu_main_nav>li ul li.current-menu-item>a,.top_panel_inner_style_2 .menu_main_nav>li ul li.current-menu-ancestor>a{background-color:#185A48}.menu_main_responsive_button{margin-top:inherit; margin-bottom:inherit}.menu_main_responsive_button:hover{color:#185A48}.responsive_menu .top_panel_middle .menu_main_responsive_button{top:inherit}.responsive_menu .menu_main_responsive_button{margin-top:calc(inherit*0.8); margin-bottom:calc(inherit*0.6)}.top_panel_inner_style_1 .menu_main_responsive,.top_panel_inner_style_2 .menu_main_responsive{/*background-color:;*/}.top_panel_inner_style_1 .menu_main_responsive a:hover,.top_panel_inner_style_2 .menu_main_responsive a:hover{background-color:#185A48}.top_panel_bottom .search_wrap,.top_panel_inner_style_4 .search_wrap{padding-top:calc(inherit*0.65); padding-bottom:calc(inherit*0.5)}.top_panel_inner_style_1 .search_form_wrap,.top_panel_inner_style_2 .search_form_wrap{background-color:rgba(24,90,72,0.2)}.top_panel_icon{margin:calc(inherit*0.7) 0 inherit 1em}.top_panel_icon.search_wrap,.top_panel_inner_style_5 .menu_main_responsive_button,.top_panel_inner_style_6 .menu_main_responsive_button,.top_panel_inner_style_7 .menu_main_responsive_button{color:}.top_panel_icon .contact_icon,.top_panel_icon .search_submit{color:}.top_panel_middle a:hover .contact_icon,.top_panel_icon.search_wrap:hover,.top_panel_icon:hover .contact_icon,.top_panel_icon:hover .search_submit,.top_panel_inner_style_5 .menu_main_responsive_button:hover,.top_panel_inner_style_6 .menu_main_responsive_button:hover,.top_panel_inner_style_7 .menu_main_responsive_button:hover{background-color:}.search_results .post_more,.search_results .search_results_close{color:}.search_results .post_more:hover,.search_results .search_results_close:hover{color:#185A48}.top_panel_inner_style_1 .search_results,.top_panel_inner_style_1 .search_results:after,.top_panel_inner_style_2 .search_results,.top_panel_inner_style_2 .search_results:after,.top_panel_inner_style_3 .search_results,.top_panel_inner_style_3 .search_results:after{background-color:}.top_panel_fixed .menu_main_wrap{padding-top:calc(inherit*0.3)}.top_panel_fixed .top_panel_wrap .logo{margin-top:calc(inherit*0.6); margin-bottom:calc(inherit*0.6)}.top_panel_inner_style_8 .top_panel_buttons,.top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button{padding-top:inherit; padding-bottom:inherit}.pushy_inner a{color:}.pushy_inner a:hover{color:#185A48}.top_panel_inner_style_3 .popup_wrap a,.top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.top_panel_inner_style_4 .popup_wrap a,.top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.top_panel_inner_style_5 .popup_wrap a,.top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a:hover{color:}.top_panel_inner_style_3 .popup_wrap a:hover,.top_panel_inner_style_4 .popup_wrap a:hover,.top_panel_inner_style_5 .popup_wrap a:hover{color:#185A48}.post_title .post_icon{color:}.pagination>a{border-color:}.post_format_aside.post_item_single .post_content p,.post_format_aside .post_descr{border-color:}.post_info{font-size:0.786em;}.post_info a[class*="icon-"]{color:}.post_info a:hover,.post_info a:hover>span{color:#185A48}.post_item .post_readmore:hover .post_readmore_label{color:#185A48}.post_item_related .post_info a:hover,.post_item_related .post_title a:hover{color:#185A48}.isotope_item_colored .post_featured .post_mark_new,.isotope_item_colored .post_featured .post_title,.isotope_item_colored .post_content.ih-item.square.colored .info{background-color:}.isotope_item_colored .post_category a,.isotope_item_colored .post_rating .reviews_stars_bg,.isotope_item_colored .post_rating .reviews_stars_hover,.isotope_item_colored .post_rating .reviews_value{color:}.isotope_item_colored .post_info_wrap .post_button .sc_button{color:}.isotope_wrap .isotope_item_colored_1 .post_featured{border-color:}.isotope_filters a{border-color:; background-color:}.isotope_filters a.active,.isotope_filters a:hover{border-color:#185A48; background-color:#185A48}.pagination_single>.pager_numbers,.pagination_single a,.pagination_single .current,.pagination_slider .pager_cur,.pagination_pages>a,.pagination_pages>span{border-color:; background-color:}.pagination_single>.pager_numbers,.pagination_single a:hover,.pagination_single .current,.pagination_slider .pager_cur:hover,.pagination_slider .pager_cur:focus,.pagination_pages>.active,.pagination_pages>a:hover{color:}.pagination_wrap .pager_next,.pagination_wrap .pager_prev,.pagination_wrap .pager_last,.pagination_wrap .pager_first{color:}.pagination_wrap .pager_next:hover,.pagination_wrap .pager_prev:hover,.pagination_wrap .pager_last:hover,.pagination_wrap .pager_first:hover{color:#185A48}.pagination_viewmore>a{background-color:}.pagination_viewmore>a:hover{background-color:#185A48}.viewmore_loader,.mfp-preloader span,.sc_video_frame.sc_video_active:before{background-color:#185A48}.post_featured .post_nav_item:before{background-color:}.post_featured .post_nav_item .post_nav_info{background-color:}.reviews_block .reviews_summary .reviews_item{background-color:}.reviews_block .reviews_summary,.reviews_block .reviews_max_level_100 .reviews_stars_bg{background-color:}.reviews_block .reviews_max_level_100 .reviews_stars_hover,.reviews_block .reviews_item .reviews_slider{background-color:}.reviews_block .reviews_item .reviews_stars_hover{color:}/* Summary stars in the post item (under the title) */.post_item .post_rating .reviews_stars_bg,.post_item .post_rating .reviews_stars_hover,.post_item .post_rating .reviews_value{color:}/*.post_author .post_author_title a{color:}.post_author .post_author_title a:hover{color:#185A48}.post_author .post_author_info .sc_socials a:hover{color:#185A48}*/.post_item_404 .page_title{color:#185A48}.sidebar_outer_menu .menu_side_nav>li>a,.sidebar_outer_menu .menu_side_responsive>li>a{font-family:Montserrat;font-size:0.929em}.sidebar_outer_menu .menu_side_nav>li ul,.sidebar_outer_menu .menu_side_responsive>li ul{font-family:Montserrat;font-size:0.857em}.sidebar_outer_menu .menu_side_nav>li ul li a,.sidebar_outer_menu .menu_side_responsive>li ul li a{padding:inherit 1.5em inherit}.sidebar_outer_menu .sidebar_outer_menu_buttons>a:hover,.scheme_dark .sidebar_outer_menu .sidebar_outer_menu_buttons>a:hover,.scheme_light .sidebar_outer_menu .sidebar_outer_menu_buttons>a:hover{color:}.widget_area_inner a:hover,.widget_area_inner ul li a:hover{color:}.widget_area_inner .post_info a.post_info_author{color:}.widget_area_inner .post_info a.post_info_author:hover{color:#185A48}/*.widget_area_inner a,.widget_area_inner ul li:before,.widget_area_inner ul li a:hover,.widget_area_inner button:before{color:}.widget_area_inner a:hover,.widget_area_inner ul li a,.widget_area_inner button:hover:before{color:#185A48}.widget_area_inner .widget_text a:not(.sc_button),.widget_area_inner .post_info a{color:}.widget_area_inner .widget_text a:not(.sc_button):hover,.widget_area_inner .post_info a:hover{color:#185A48}*//* Widget:Calendar */.wp-block-calendar td a:hover,.widget_area_inner .widget_calendar td a:hover{color:}/* Widget:Tag Cloud */.widget_area_inner .widget_product_tag_cloud a,.widget_area_inner .widget_tag_cloud a{}.wp-block-tag-cloud a{color:#185A48}.wp-block-tag-cloud a:hover{border-color:#185A48; background-color:#185A48}.widget_area_inner .widget_product_tag_cloud a:hover,.widget_area_inner .widget_tag_cloud a:hover{border-color:#185A48; background-color:#185A48}.testimonials_wrap_inner,.twitter_wrap_inner{background-color:}.copyright_wrap_inner .menu_footer_nav li a:hover,.scheme_dark .copyright_wrap_inner .menu_footer_nav li a:hover,.scheme_light .copyright_wrap_inner .menu_footer_nav li a:hover{color:}.contacts_wrap_inner .sc_socials.sc_socials_type_icons a:hover,.contacts_wrap_inner .scheme_dark .sc_socials.sc_socials_type_icons a:hover,.contacts_wrap_inner .scheme_light .sc_socials.sc_socials_type_icons a:hover{color:#185A48; border-color:#185A48}.copyright_wrap_inner .sc_socials.sc_socials_type_icons a:hover,.copyright_wrap_inner .scheme_dark .sc_socials.sc_socials_type_icons a:hover,.copyright_wrap_inner .scheme_light .sc_socials.sc_socials_type_icons a:hover{color:#185A48; border-color:#185A48}.scroll_to_top{background-color:}.scroll_to_top:hover{background-color:#185A48}.custom_options #co_toggle{background-color:#185A48 !important}.tribe-events-calendar thead th{background-color:}a.tribe-events-read-more,.tribe-events-button,.tribe-events-nav-previous a,.tribe-events-nav-next a,.tribe-events-widget-link a,.tribe-events-viewmore a{background-color:}a.tribe-events-read-more:hover,.tribe-events-button:hover,.tribe-events-nav-previous a:hover,.tribe-events-nav-next a:hover,.tribe-events-widget-link a:hover,.tribe-events-viewmore a:hover{background-color:#185A48}#bbpress-forums div.bbp-topic-content a,#buddypress button,#buddypress a.button,#buddypress input[type="submit"],#buddypress input[type="button"],#buddypress input[type="reset"],#buddypress ul.button-nav li a,#buddypress div.generic-button a,#buddypress .comment-reply-link,a.bp-title-button,#buddypress div.item-list-tabs ul li.selected a{background:}#bbpress-forums div.bbp-topic-content a:hover,#buddypress button:hover,#buddypress a.button:hover,#buddypress input[type="submit"]:hover,#buddypress input[type="button"]:hover,#buddypress input[type="reset"]:hover,#buddypress ul.button-nav li a:hover,#buddypress div.generic-button a:hover,#buddypress .comment-reply-link:hover,a.bp-title-button:hover,#buddypress div.item-list-tabs ul li.selected a:hover{background:#185A48}#buddypress #reply-title small a span,#buddypress a.bp-primary-action span{color:}.booking_font_custom,.booking_day_container,.booking_calendar_container_all{font-family:Open Sans}.booking_weekdays_custom{font-family:Open Sans}.booking_month_navigation_button_custom:hover{background-color:#185A48 !important}#learndash_next_prev_link>a{background-color:}#learndash_next_prev_link>a:hover{background-color:#185A48}.widget_area dd.course_progress div.course_progress_blue{background-color:#185A48}.sc_accordion .sc_accordion_item.sc_active .sc_accordion_title .sc_accordion_icon{background-color:}.sc_audio .sc_audio_author_name,.sc_audio .sc_audio_title{/*color:;*/}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-current{/*background:!important;*/}.wp-block-button .wp-block-button__link,input[type="submit"],input[type="reset"],input[type="button"],button,.sc_button{font-family:Montserrat}/*input[type="submit"],input[type="reset"],input[type="button"],button,.sc_button.sc_button_style_filled{background-color:}input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover,button:hover,.sc_button.sc_button_style_filled:hover{background-color:#185A48}.sc_button.sc_button_style_border{border-color:; color:}.sc_button.sc_button_style_border:hover{border-color:#185A48 !important}*/.sc_blogger.layout_date .sc_blogger_item .sc_blogger_date{background-color:; border-color:}.sc_blogger.layout_polaroid .photostack nav span.current{background-color:}.sc_blogger.layout_polaroid .photostack nav span.current.flip{background-color:#185A48}.sc_call_to_action_style_1 .sc_call_to_action_icon{color:#185A48}.sc_call_to_action_accented{background-color:}.sc_call_to_action_accented .sc_item_button>a{color:}.sc_call_to_action_accented .sc_item_button>a:before{background-color:}.sc_chat_inner a{color:}.sc_chat_inner a:hover{color:#185A48}.sc_clients_style_clients-2 .sc_client_title a:hover{color:}.sc_clients_style_clients-2 .sc_client_description:before,.sc_clients_style_clients-2 .sc_client_position{color:}.sc_form .sc_form_item.sc_form_button button{/*color:;*/ /*border-color:;*/}.sc_form .sc_form_item.sc_form_button button:hover{/*background-color:;*/}.sc_form table.picker__table th{background-color:}.sc_form .picker__day--today:before,.sc_form .picker__button--today:before,.sc_form .picker__button--clear:before,.sc_form button:focus{border-color:}.sc_form .picker__button--close:before{color:}.sc_form .picker--time .picker__button--clear:hover,.sc_form .picker--time .picker__button--clear:focus{background-color:#185A48}.sc_countdown.sc_countdown_style_1 .sc_countdown_digits,.sc_countdown.sc_countdown_style_1 .sc_countdown_separator{color:}.sc_countdown.sc_countdown_style_1 .sc_countdown_label{color:}.sc_countdown.sc_countdown_style_2 .sc_countdown_separator{color:}.sc_countdown.sc_countdown_style_2 .sc_countdown_digits span{background-color:}.sc_countdown.sc_countdown_style_2 .sc_countdown_label{color:}.sc_dropcaps .sc_dropcaps_item{background-color:}.sc_events_style_events-2 .sc_events_item_date{background-color:}.sc_highlight_style_1{background-color:}.sc_highlight_style_2{background-color:#185A48}.sc_icon_hover:hover,a:hover .sc_icon_hover{background-color:!important}.sc_icon_shape_round.sc_icon,.sc_icon_shape_square.sc_icon{background-color:; border-color:}.sc_icon_shape_round.sc_icon:hover,.sc_icon_shape_square.sc_icon:hover,a:hover .sc_icon_shape_round.sc_icon,a:hover .sc_icon_shape_square.sc_icon{color:}figure figcaption,.sc_image figcaption{background-color:rgba(0,0,0,0.6)}.sc_list_style_iconed li:before,.sc_list_style_iconed .sc_list_icon{color:}.sc_list_style_iconed li a:hover .sc_list_title{color:#185A48}.sc_popup:before{background-color:}.sc_price_block.sc_price_block_style_1{background-color:}.sc_price_block.sc_price_block_style_2{background-color:#185A48}.sc_recent_news_header_category_item_more{color:}.sc_recent_news_header_more_categories>a{color:}.sc_recent_news_header_more_categories>a:hover{color:#185A48}.sc_scroll_controls_wrap a{background-color:}.sc_scroll_controls_type_side .sc_scroll_controls_wrap a{background-color:rgba(0,0,0,0.8)}.sc_scroll_controls_wrap a:hover{background-color:#185A48}.sc_scroll_bar .swiper-scrollbar-drag:before{background-color:}.sc_skills_counter .sc_skills_item .sc_skills_icon{color:}.sc_skills_counter .sc_skills_item:hover .sc_skills_icon{color:#185A48}.sc_skills_bar .sc_skills_item .sc_skills_count{border-color:}.sc_skills_bar .sc_skills_item .sc_skills_count,.sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count,.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_count,.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info{background-color:}.sc_slider_swiper .sc_slider_info{background-color:rgba(0,0,0,0.8) !important}.sc_slider_pagination_over .sc_slider_pagination_wrap span:hover,.sc_slider_pagination_over .sc_slider_pagination_wrap .swiper-pagination-bullet-active{border-color:; background-color:}.sc_socials.sc_socials_type_icons a,.scheme_dark .sc_socials.sc_socials_type_icons a,.scheme_light .sc_socials.sc_socials_type_icons a{color:#185A48; border-color:#185A48}.sc_socials.sc_socials_type_icons a:hover,.scheme_dark .sc_socials.sc_socials_type_icons a:hover,.scheme_light .sc_socials.sc_socials_type_icons a:hover{color:; border-color:}.sc_socials a,.sc_socials a span{color:#185A48; border-color:#185A48}.contacts_wrap_inner .sc_socials.sc_socials_type_icons a span{color:#999ca9; border-color:#999ca9}.sc_socials a:hover,.sc_socials a:hover span{color:; border-color:}.contacts_wrap_inner .sc_socials.sc_socials_type_icons a:hover span{color:#185A48; border-color:#185A48}.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a,.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a{border-top-color:}.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.ui-state-active a,.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.sc_tabs_active a{border-left-color:}/*.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a,.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a,.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a:hover{color:}.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a:after,.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a:after{background-color:}.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a{border-color:; background-color:}.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a:hover,.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.ui-state-active a,.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.sc_tabs_active a{color:}*//*.sc_team_item .sc_team_item_info .sc_team_item_title a:hover{color:#185A48}.sc_team_item .sc_team_item_info .sc_team_item_position{color:}.sc_team_style_team-1 .sc_team_item_info,.sc_team_style_team-3 .sc_team_item_info{border-color:}.sc_team.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover{background-color:rgba(0,0,0,0.8)}.sc_team.sc_team_style_team-4 .sc_socials_item a:hover{color:; border-color:}.sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a:hover{color:}*/.sc_testimonials{}.scheme_dark .sc_testimonials_style_testimonials-1{background-color:#185A48}.sc_title_icon{color:#185A48}.sc_title_underline::after{border-color:}.sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active{color:; border-color:}.sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active .sc_toggles_icon_opened{background-color:}.sc_toggles .sc_toggles_item .sc_toggles_title:hover{color:#185A48; border-color:#185A48}.sc_toggles .sc_toggles_item .sc_toggles_title:hover .sc_toggles_icon_opened{background-color:#185A48}.sc_tooltip_parent .sc_tooltip,.sc_tooltip_parent .sc_tooltip:before{background-color:}/* Common styles (title,subtitle and description for some shortcodes) */.sc_item_subtitle{color:}.sc_item_title:after{background-color:}.sc_item_button>a:before{color:}.sc_item_button>a:hover:before{color:#185A48}.wp-block-button__link:hover{color:#185A48}.scheme_white .top_panel_contacts a{; color:}.scheme_white .top_panel_wrap_inner a:hover{color:#185A48} </style> <link rel='stylesheet' id='yreg-estate-responsive-style-css' href='https://www.kbd.com.sg/app/themes/yreg-estate/css/responsive.css' type='text/css' media='all' /> <link rel='stylesheet' id='yreg-estate-skin-responsive-style-css' href='https://www.kbd.com.sg/app/themes/yreg-estate/skins/no_less/skin.responsive.css' type='text/css' media='all' /> <link rel='stylesheet' id='mediaelement-css' href='https://www.kbd.com.sg/wp/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css?ver=4.2.16' type='text/css' media='all' /> <link rel='stylesheet' id='wp-mediaelement-css' href='https://www.kbd.com.sg/wp/wp-includes/js/mediaelement/wp-mediaelement.css?ver=6.0' type='text/css' media='all' /> <script type='text/javascript' src='https://www.kbd.com.sg/wp/wp-includes/js/jquery/jquery.js?ver=3.6.0' id='jquery-core-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/wp/wp-includes/js/jquery/jquery-migrate.js?ver=3.3.2' id='jquery-migrate-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/app/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.5.18' async id='tp-tools-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/app/plugins/revslider/public/assets/js/rs6.min.js?ver=6.5.25' async id='revmin-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/app/themes/yreg-estate/fw/js/photostack/modernizr.min.js' id='modernizr-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/app/themes/yreg-estate/skins/no_less/jquery-ui.min.js' id='jquery-ui-js'></script> <link rel="https://api.w.org/" href="https://www.kbd.com.sg/wp-json/" /><link rel="alternate" type="application/json" href="https://www.kbd.com.sg/wp-json/wp/v2/tags/44" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.kbd.com.sg/wp/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.kbd.com.sg/wp/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> <meta name="generator" content="Powered by Slider Revolution 6.5.25 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <link rel="icon" href="https://www.kbd.com.sg/app/uploads/2017/12/map_logo.png" sizes="32x32" /> <link rel="icon" href="https://www.kbd.com.sg/app/uploads/2017/12/map_logo.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.kbd.com.sg/app/uploads/2017/12/map_logo.png" /> <meta name="msapplication-TileImage" content="https://www.kbd.com.sg/app/uploads/2017/12/map_logo.png" /> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> <noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> </head> <body class="archive tag tag-popular tag-44 yreg_estate_body body_style_wide body_filled article_style_stretch layout_excerpt template_excerpt scheme_original top_panel_show top_panel_above sidebar_show sidebar_right sidebar_outer_hide wpb-js-composer js-comp-ver-6.9.0 vc_responsive"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" > <defs> <filter id="wp-duotone-dark-grayscale"> <feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /> <feComponentTransfer color-interpolation-filters="sRGB" > <feFuncR type="table" tableValues="0 0.49803921568627" /> <feFuncG type="table" tableValues="0 0.49803921568627" /> <feFuncB type="table" tableValues="0 0.49803921568627" /> <feFuncA type="table" tableValues="1 1" /> </feComponentTransfer> <feComposite in2="SourceGraphic" operator="in" /> </filter> </defs> </svg> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" > <defs> <filter id="wp-duotone-grayscale"> <feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /> <feComponentTransfer color-interpolation-filters="sRGB" > <feFuncR type="table" tableValues="0 1" /> <feFuncG type="table" tableValues="0 1" /> <feFuncB type="table" tableValues="0 1" /> <feFuncA type="table" tableValues="1 1" /> </feComponentTransfer> <feComposite in2="SourceGraphic" operator="in" /> </filter> </defs> </svg> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" > <defs> <filter id="wp-duotone-purple-yellow"> <feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /> <feComponentTransfer color-interpolation-filters="sRGB" > <feFuncR type="table" tableValues="0.54901960784314 0.98823529411765" /> <feFuncG type="table" tableValues="0 1" /> <feFuncB type="table" tableValues="0.71764705882353 0.25490196078431" /> <feFuncA type="table" tableValues="1 1" /> </feComponentTransfer> <feComposite in2="SourceGraphic" operator="in" /> </filter> </defs> </svg> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" > <defs> <filter id="wp-duotone-blue-red"> <feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /> <feComponentTransfer color-interpolation-filters="sRGB" > <feFuncR type="table" tableValues="0 1" /> <feFuncG type="table" tableValues="0 0.27843137254902" /> <feFuncB type="table" tableValues="0.5921568627451 0.27843137254902" /> <feFuncA type="table" tableValues="1 1" /> </feComponentTransfer> <feComposite in2="SourceGraphic" operator="in" /> </filter> </defs> </svg> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" > <defs> <filter id="wp-duotone-midnight"> <feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /> <feComponentTransfer color-interpolation-filters="sRGB" > <feFuncR type="table" tableValues="0 0" /> <feFuncG type="table" tableValues="0 0.64705882352941" /> <feFuncB type="table" tableValues="0 1" /> <feFuncA type="table" tableValues="1 1" /> </feComponentTransfer> <feComposite in2="SourceGraphic" operator="in" /> </filter> </defs> </svg> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" > <defs> <filter id="wp-duotone-magenta-yellow"> <feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /> <feComponentTransfer color-interpolation-filters="sRGB" > <feFuncR type="table" tableValues="0.78039215686275 1" /> <feFuncG type="table" tableValues="0 0.94901960784314" /> <feFuncB type="table" tableValues="0.35294117647059 0.47058823529412" /> <feFuncA type="table" tableValues="1 1" /> </feComponentTransfer> <feComposite in2="SourceGraphic" operator="in" /> </filter> </defs> </svg> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" > <defs> <filter id="wp-duotone-purple-green"> <feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /> <feComponentTransfer color-interpolation-filters="sRGB" > <feFuncR type="table" tableValues="0.65098039215686 0.40392156862745" /> <feFuncG type="table" tableValues="0 1" /> <feFuncB type="table" tableValues="0.44705882352941 0.4" /> <feFuncA type="table" tableValues="1 1" /> </feComponentTransfer> <feComposite in2="SourceGraphic" operator="in" /> </filter> </defs> </svg> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" > <defs> <filter id="wp-duotone-blue-orange"> <feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /> <feComponentTransfer color-interpolation-filters="sRGB" > <feFuncR type="table" tableValues="0.098039215686275 1" /> <feFuncG type="table" tableValues="0 0.66274509803922" /> <feFuncB type="table" tableValues="0.84705882352941 0.41960784313725" /> <feFuncA type="table" tableValues="1 1" /> </feComponentTransfer> <feComposite in2="SourceGraphic" operator="in" /> </filter> </defs> </svg> <div class="body_wrap"> <div class="page_wrap"> <div class="top_panel_fixed_wrap"></div> <header class="top_panel_wrap top_panel_style_1 scheme_original" > <div class="header-bg"> <div class="top_panel_wrap_inner top_panel_inner_style_1 top_panel_position_above"> <div class="content_wrap clearfix"> <div class="top_panel_logo"> <div class="logo"> <a href="https://www.kbd.com.sg/"><img src="http://www.kbd.com.sg/app/uploads/2018/01/KDB_Logo_New_190118_v6-1.png" class="logo_main" alt="img" width="540" height="330"></a> </div> </div> <div class="top_panel_contacts"> <div class="top_panel_contacts_left"> <div class="contact_phone">11 Lor Pendek, Singapore</div> <div class="contact_email"><a href="mailto:general@kbd.com.sg">general@kbd.com.sg</a></div> </div> <div class="top_panel_contacts_right ">call us: <strong><a href="tel:+<i>65</i> 6289 8889">+<i>65</i> 6289 8889</a></strong></div> <div class="cL"></div> </div> <div class="top_panel_menu"> <a href="#" class="menu_main_responsive_button icon-down">Select menu item</a> <nav class="menu_main_nav_area"> <ul id="menu_main" class="menu_main_nav"><li id="menu-item-4" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-has-children menu-item-4"><a href="http://www.kbd.com.sg/">Home</a> <ul class="sub-menu"> <li id="menu-item-155" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-155"><a href="https://www.kbd.com.sg/about/">Corporate Profile</a></li> <li id="menu-item-1698" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1698"><a href="https://www.kbd.com.sg/our-team/">Our Team</a></li> </ul> </li> <li id="menu-item-388" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-388"><a href="https://www.kbd.com.sg/all-projects/">Projects</a></li> <li id="menu-item-1117" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1117"><a href="#">News Room</a> <ul class="sub-menu"> <li id="menu-item-1193" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1193"><a href="https://www.kbd.com.sg/ceo-quotes/">CEO Quotes</a></li> <li id="menu-item-1194" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1194"><a href="https://www.kbd.com.sg/press-releases/">Press Releases</a></li> </ul> </li> <li id="menu-item-1122" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1122"><a href="https://www.kbd.com.sg/testimonials/">Testimonials</a></li> <li id="menu-item-844" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-844"><a href="https://www.kbd.com.sg/gallery/">Gallery</a></li> <li id="menu-item-1123" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1123"><a href="https://www.kbd.com.sg/our-agents/">Agents</a></li> <li id="menu-item-530" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-530"><a href="https://www.kbd.com.sg/contacts/">Contact Us</a></li> </ul> </nav> </div> <div class="cL"></div> </div> </div> <!--</header>--> <div class="top_panel_title top_panel_style_1 title_present breadcrumbs_present scheme_original"> <div class="top_panel_title_inner top_panel_inner_style_1 title_present_inner breadcrumbs_present_inner"> <div class="content_wrap"> <h1 class="page_title">Where to Find Removable Wallpaper</h1> <div class="breadcrumbs"><a class="breadcrumbs_item home" href="https://www.kbd.com.sg/">Home</a><span class="breadcrumbs_delimiter"></span><a class="breadcrumbs_item all" href="https://www.kbd.com.sg/blog-streampage/">Blog</a><span class="breadcrumbs_delimiter"></span><span class="breadcrumbs_item current">Tag: Popular</span></div> </div> </div> </div> </div></header> <div class="page_content_wrap page_paddings_yes"> <div class="content_wrap where-to-find-removable-wallpaper"> <div class="content"> <article class="post_item post_item_excerpt post_featured_default post_format_standard odd post-582 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-popular"> <div class="post_featured"> <div class="post_thumb" data-image="https://www.kbd.com.sg/app/uploads/image-3.jpg" data-title="Where to Find Removable Wallpaper"> <a class="hover_icon hover_icon_link" href="https://www.kbd.com.sg/where-to-find-removable-wallpaper/"><img class="wp-post-image" width="1170" height="659" alt="Where to Find Removable Wallpaper" src="https://www.kbd.com.sg/app/uploads/image-3-1170x659.jpg"></a> </div> </div> <div class="post_content clearfix"> <div class="post_info"> <span class="post_info_item post_info_tags">in <a class="category_link" href="https://www.kbd.com.sg/category/uncategorized/">Uncategorized</a></span> <span class="post_info_item post_info_posted_by">by <a href="https://www.kbd.com.sg/author/" class="post_info_author"></a></span> <span class="post_info_item post_info_posted">On <a href="https://www.kbd.com.sg/where-to-find-removable-wallpaper/" class="post_info_date">February 16, 2016</a></span> <span class="post_info_item post_info_counters"> <a class="post_counters_item post_counters_views" title="Views - 863" href="https://www.kbd.com.sg/where-to-find-removable-wallpaper/"><span class="post_counters_number">863</span> Views</a> </span> </div><h3 class="post_title"><a href="https://www.kbd.com.sg/where-to-find-removable-wallpaper/">Where to Find Removable Wallpaper</a></h3> <div class="post_descr"> <p>Lorem ipsum dolor sit amet, quis tation ius ut, sea paulo civibus efficiendi at. Per ei essent discere vituperatoribus, cum ei ornatus adversarium, vix alia ignota ei. Sea te veri mentitum necessitatibus, ut falli dicunt hendrerit ius. Ei novum...</p><a href="https://www.kbd.com.sg/where-to-find-removable-wallpaper/" class="sc_button sc_button_text sc_button_style_style1 sc_button_size_small sc_button_iconed icon-right-dir">View details</a> </div> </div> <!-- /.post_content --> </article> <!-- /.post_item --> <article class="post_item post_item_excerpt post_featured_default post_format_standard even post-574 post type-post status-publish format-standard hentry category-uncategorized tag-attic tag-popular tag-studio"> <div class="post_content clearfix"> <div class="post_info"> <span class="post_info_item post_info_tags">in <a class="category_link" href="https://www.kbd.com.sg/category/uncategorized/">Uncategorized</a></span> <span class="post_info_item post_info_posted_by">by <a href="https://www.kbd.com.sg/author/beheerder/" class="post_info_author">beheerder</a></span> <span class="post_info_item post_info_posted">On <a href="https://www.kbd.com.sg/our-homes-and-hearth-how-life-has-changed/" class="post_info_date">February 16, 2016</a></span> <span class="post_info_item post_info_counters"> <a class="post_counters_item post_counters_views" title="Views - 807" href="https://www.kbd.com.sg/our-homes-and-hearth-how-life-has-changed/"><span class="post_counters_number">807</span> Views</a> </span> </div><h3 class="post_title"><a href="https://www.kbd.com.sg/our-homes-and-hearth-how-life-has-changed/">Our homes and hearth – how life has changed</a></h3> <div class="post_descr"> <p>Lorem ipsum dolor sit amet, quis tation ius ut, sea paulo civibus efficiendi at. Per ei essent discere vituperatoribus, cum ei ornatus adversarium, vix alia ignota ei. Sea te veri mentitum necessitatibus, ut falli dicunt hendrerit ius. Ei novum...</p><a href="https://www.kbd.com.sg/our-homes-and-hearth-how-life-has-changed/" class="sc_button sc_button_text sc_button_style_style1 sc_button_size_small sc_button_iconed icon-right-dir">View details</a> </div> </div> <!-- /.post_content --> </article> <!-- /.post_item --> <article class="post_item post_item_excerpt post_featured_default post_format_standard odd last post-570 post type-post status-publish format-standard hentry category-uncategorized tag-popular tag-studio"> <div class="post_content clearfix"> <div class="post_info"> <span class="post_info_item post_info_tags">in <a class="category_link" href="https://www.kbd.com.sg/category/uncategorized/">Uncategorized</a></span> <span class="post_info_item post_info_posted_by">by <a href="https://www.kbd.com.sg/author/" class="post_info_author"></a></span> <span class="post_info_item post_info_posted">On <a href="https://www.kbd.com.sg/25-amazing-bathroom-designs/" class="post_info_date">December 16, 2015</a></span> <span class="post_info_item post_info_counters"> <a class="post_counters_item post_counters_views" title="Views - 744" href="https://www.kbd.com.sg/25-amazing-bathroom-designs/"><span class="post_counters_number">744</span> Views</a> </span> </div><h3 class="post_title"><a href="https://www.kbd.com.sg/25-amazing-bathroom-designs/">25 Amazing Bathroom Designs</a></h3> <div class="post_descr"> <p>Lorem ipsum dolor sit amet, quis tation ius ut, sea paulo civibus efficiendi at. Per ei essent discere vituperatoribus, cum ei ornatus adversarium, vix alia ignota ei. Sea te veri mentitum necessitatibus, ut falli dicunt hendrerit ius. Ei novum...</p><a href="https://www.kbd.com.sg/25-amazing-bathroom-designs/" class="sc_button sc_button_text sc_button_style_style1 sc_button_size_small sc_button_iconed icon-right-dir">View details</a> </div> </div> <!-- /.post_content --> </article> <!-- /.post_item --> </div> <!-- </div> class="content"> --> <div class="sidebar widget_area scheme_original" role="complementary"> <div class="sidebar_inner widget_area_inner"> <aside id="search-2" class="widget_number_1 widget widget_search"><form role="search" method="get" class="search_form" action="https://www.kbd.com.sg/"><input type="text" class="search_field" placeholder="Search …" value="" name="s" title="Search for:" /><button type="submit" class="search_button icon-search"></button></form></aside><aside id="categories-2" class="widget_number_2 widget widget_categories"><h5 class="widget_title">categories</h5> <ul> <li class="cat-item cat-item-88"><a href="https://www.kbd.com.sg/category/caldecott/">Caldecott</a> (8) </li> <li class="cat-item cat-item-87"><a href="https://www.kbd.com.sg/category/fiorenza/">Fiorenza</a> (23) </li> <li class="cat-item cat-item-15"><a href="https://www.kbd.com.sg/category/gallery/">Gallery</a> (2) </li> <li class="cat-item cat-item-85"><a href="https://www.kbd.com.sg/category/lincoln/">Lincoln</a> (13) </li> <li class="cat-item cat-item-86"><a href="https://www.kbd.com.sg/category/lumos/">Lumos</a> (26) </li> <li class="cat-item cat-item-90"><a href="https://www.kbd.com.sg/category/montana/">Montana</a> (9) </li> <li class="cat-item cat-item-84"><a href="https://www.kbd.com.sg/category/parc-olympia/">Parc Olympia</a> (16) </li> <li class="cat-item cat-item-20"><a href="https://www.kbd.com.sg/category/post-formats/">Post Formats</a> (10) </li> <li class="cat-item cat-item-89"><a href="https://www.kbd.com.sg/category/starville/">Starville</a> (14) </li> <li class="cat-item cat-item-91"><a href="https://www.kbd.com.sg/category/sun-plaza/">Sun Plaza</a> (8) </li> <li class="cat-item cat-item-1"><a href="https://www.kbd.com.sg/category/uncategorized/">Uncategorized</a> (82) </li> <li class="cat-item cat-item-83"><a href="https://www.kbd.com.sg/category/westwood-residences/">Westwood Residences</a> (12) </li> </ul> </aside><aside id="archives-3" class="widget_number_3 widget widget_archive"><h5 class="widget_title">Archives</h5> <ul> <li><a href='https://www.kbd.com.sg/2018/01/'>January 2018</a> (129)</li> <li><a href='https://www.kbd.com.sg/2017/12/'>December 2017</a> (1)</li> <li><a href='https://www.kbd.com.sg/2016/02/'>February 2016</a> (92)</li> <li><a href='https://www.kbd.com.sg/2015/12/'>December 2015</a> (1)</li> </ul> </aside><aside id="calendar-2" class="widget_number_4 widget widget_calendar"><div id="calendar_wrap" class="calendar_wrap"><table id="wp-calendar-1515923207" class="wp-calendar"><thead><tr><th class="month_prev"><a href="#" data-type="post" data-year="2018" data-month="01" title="View posts for January 2018"></a></th><th class="month_cur" colspan="5">November <span>2024</span></th><th class="month_next"> </th></tr><tr><th class="weekday" scope="col" title="Monday">M</th><th class="weekday" scope="col" title="Tuesday">T</th><th class="weekday" scope="col" title="Wednesday">W</th><th class="weekday" scope="col" title="Thursday">T</th><th class="weekday" scope="col" title="Friday">F</th><th class="weekday" scope="col" title="Saturday">S</th><th class="weekday" scope="col" title="Sunday">S</th></tr></thead><tbody><tr><td colspan="4" class="pad"><span class="day_wrap"> </span></td><td class="day"><span class="day_wrap">1</span></td><td class="day"><span class="day_wrap">2</span></td><td class="day"><span class="day_wrap">3</span></td></tr><tr><td class="day"><span class="day_wrap">4</span></td><td class="day"><span class="day_wrap">5</span></td><td class="day"><span class="day_wrap">6</span></td><td class="day"><span class="day_wrap">7</span></td><td class="day"><span class="day_wrap">8</span></td><td class="day"><span class="day_wrap">9</span></td><td class="day"><span class="day_wrap">10</span></td></tr><tr><td class="day"><span class="day_wrap">11</span></td><td class="day"><span class="day_wrap">12</span></td><td class="day"><span class="day_wrap">13</span></td><td class="day"><span class="day_wrap">14</span></td><td class="day"><span class="day_wrap">15</span></td><td class="day"><span class="day_wrap">16</span></td><td class="day"><span class="day_wrap">17</span></td></tr><tr><td class="day"><span class="day_wrap">18</span></td><td class="day"><span class="day_wrap">19</span></td><td class="day"><span class="day_wrap">20</span></td><td class="day"><span class="day_wrap">21</span></td><td class="day"><span class="day_wrap">22</span></td><td class="today"><span class="day_wrap">23</span></td><td class="day"><span class="day_wrap">24</span></td></tr><tr><td class="day"><span class="day_wrap">25</span></td><td class="day"><span class="day_wrap">26</span></td><td class="day"><span class="day_wrap">27</span></td><td class="day"><span class="day_wrap">28</span></td><td class="day"><span class="day_wrap">29</span></td><td class="day"><span class="day_wrap">30</span></td><td class="pad" colspan="1"><span class="day_wrap"> </span></td></tr></tbody></table></div></aside><aside id="tag_cloud-2" class="widget_number_5 widget widget_tag_cloud"><h5 class="widget_title">Tags</h5><div class="tagcloud"><a href="https://www.kbd.com.sg/tag/attic/" class="tag-cloud-link tag-link-40 tag-link-position-1" style="font-size: 11.405405405405pt;" aria-label="Attic (2 items)">Attic</a> <a href="https://www.kbd.com.sg/tag/basement/" class="tag-cloud-link tag-link-47 tag-link-position-2" style="font-size: 8pt;" aria-label="Basement (1 item)">Basement</a> <a href="https://www.kbd.com.sg/tag/bedroom/" class="tag-cloud-link tag-link-50 tag-link-position-3" style="font-size: 8pt;" aria-label="Bedroom (1 item)">Bedroom</a> <a href="https://www.kbd.com.sg/tag/commute/" class="tag-cloud-link tag-link-42 tag-link-position-4" style="font-size: 11.405405405405pt;" aria-label="Commute (2 items)">Commute</a> <a href="https://www.kbd.com.sg/tag/facade/" class="tag-cloud-link tag-link-57 tag-link-position-5" style="font-size: 11.405405405405pt;" aria-label="Facade (2 items)">Facade</a> <a href="https://www.kbd.com.sg/tag/facilities/" class="tag-cloud-link tag-link-58 tag-link-position-6" style="font-size: 22pt;" aria-label="Facilities (10 items)">Facilities</a> <a href="https://www.kbd.com.sg/tag/fitness/" class="tag-cloud-link tag-link-56 tag-link-position-7" style="font-size: 8pt;" aria-label="Fitness (1 item)">Fitness</a> <a href="https://www.kbd.com.sg/tag/living-room/" class="tag-cloud-link tag-link-46 tag-link-position-8" style="font-size: 13.675675675676pt;" aria-label="Living room (3 items)">Living room</a> <a href="https://www.kbd.com.sg/tag/popular/" class="tag-cloud-link tag-link-44 tag-link-position-9" style="font-size: 13.675675675676pt;" aria-label="Popular (3 items)">Popular</a> <a href="https://www.kbd.com.sg/tag/premium/" class="tag-cloud-link tag-link-43 tag-link-position-10" style="font-size: 11.405405405405pt;" aria-label="Premium (2 items)">Premium</a> <a href="https://www.kbd.com.sg/tag/studio/" class="tag-cloud-link tag-link-45 tag-link-position-11" style="font-size: 13.675675675676pt;" aria-label="Studio (3 items)">Studio</a></div> </aside><aside id="null-instagram-feed-2" class="widget_number_6 widget null-instagram-feed"><h5 class="widget_title">Instagram</h5>Instagram has returned invalid data.</aside><aside id="yreg_estate_widget_property_search-8" class="widget_number_7 widget widget_property_search scheme_dark scps"><form method="get" action="https://www.kbd.com.sg/all-projects/"><input type="text" class="mb" name="ps_keyword" placeholder="Keyword" value="" ><select class="mb" name="ps_status"><option value="-1">Property Status</option><option value="sale">For sale</option><option value="rent">For rent</option></select><select class="mb" name="ps_location"><option value="-1">Property Location</option><option value="Upper East Side">Upper East Side</option><option value="Upper West Side">Upper West Side</option><option value="Midtown East">Midtown East</option><option value="Midtown West">Midtown West</option><option value="Downtown">Downtown</option><option value="Upper Manhattan">Upper Manhattan</option><option value="Brooklyn">Brooklyn</option><option value="Queens">Queens</option><option value="Bronx">Bronx</option><option value="Staten Island">Staten Island</option></select><select class="mb" name="ps_type"><option value="-1">Property Type</option><option value="Cooperative">Cooperative</option><option value="Condominium">Condominium</option><option value="Cond-op">Cond-op</option><option value="House">House</option><option value="Investment">Investment</option><option value="Commercial">Commercial</option><option value="Professional / Medical">Professional / Medical</option><option value="New Development">New Development</option><option value="Townhouse">Townhouse</option><option value="Vacant Lot / Land">Vacant Lot / Land</option></select><select class="mb" name="ps_style"><option value="-1">Property Style</option><option value="Pre-war">Pre-war</option><option value="Post-war">Post-war</option><option value="Loft">Loft</option><option value="Townhouse Apartment">Townhouse Apartment</option><option value="Penthouse">Penthouse</option></select><select class="mb" name="ps_rooms"><option value="-1">Total Rooms</option><option value="1">Rooms at least 1</option><option value="2">Rooms at least 2</option><option value="3">Rooms at least 3</option><option value="4">Rooms at least 4</option><option value="5">Rooms 5 or more</option></select><select class="mb" name="ps_bedrooms"><option value="-1">Bedrooms</option><option value="1">Bedrooms at least 1</option><option value="2">Bedrooms at least 2</option><option value="3">Bedrooms at least 3</option><option value="4">Bedrooms at least 4</option><option value="5">Bedrooms 5 or more</option></select><select class="mb" name="ps_bathrooms"><option value="-1">Bathrooms</option><option value="1">Bathrooms at least 1</option><option value="2">Bathrooms at least 2</option><option value="3">Bathrooms at least 3</option><option value="4">Bathrooms at least 4</option><option value="5">Bathrooms 5 or more</option></select><select class="mb" name="ps_garages"><option value="-1">Car Parking</option><option value="1">Car Parking at least 1</option><option value="2">Car Parking at least 2</option><option value="3">Car Parking at least 3</option><option value="4">Car Parking at least 4</option><option value="5">Car Parking 5 or more</option></select><div class="ps_area ps_range_slider"><div class="ps_area_info"><div class="ps_area_info_title"> Area </div><div class="ps_area_info_value"></div><div class="cL"></div></div><div id="slider-range-area"></div><input type="hidden" class="mb ps_area_min" name="ps_area_min" value="0" ><input type="hidden" class="mb ps_area_max" name="ps_area_max" value="10000" ><input type="hidden" class="mb ps_area_big" name="ps_area_big" value="10000" ></div><div class="ps_price ps_range_slider"><div class="ps_price_info"><div class="ps_price_info_title"> Price </div><div class="ps_price_info_value"></div><div class="cL"></div></div><div id="slider-range-price"></div><input type="hidden" class="mb ps_price_min" name="ps_price_min" value="0" ><input type="hidden" class="mb ps_price_max" name="ps_price_max" value="10000000" ><input type="hidden" class="mb ps_price_big" name="ps_price_big" value="10000000" ></div><div class="ps_amenities"><div class="accent1h">Amenities</div><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_amenities[Attended_Lobby]" value="1">Attended Lobby</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_amenities[Concierge]" value="1">Concierge</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_amenities[Fireplace]" value="1">Fireplace</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_amenities[Gym]" value="1">Gym</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_amenities[Outdoor_Space]" value="1">Outdoor Space</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_amenities[Parking]" value="1">Parking</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_amenities[Pet_Friendly]" value="1">Pet Friendly</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_amenities[Pool]" value="1">Pool</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_amenities[Views]" value="1">Views</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_amenities[Washer_/_Drye]" value="1">Washer / Drye</label></div><div class="ps_options"><div class="accent1h">Options</div><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_options[New_Listings_Only]" value="1">New Listings Only</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_options[Open_Houses]" value="1">Open Houses</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_options[Sponsor_Units]" value="1">Sponsor Units</label><label class="estateLabelCheckBox"><input class="estateCheckBox" type="checkbox" name="ps_options[Show_Listings_In_Contract]" value="1">Show Listings In Contract</label></div><input type="submit" class="sc_button sc_button_box sc_button_style_style2 sc_button_size_small aligncenter ps" value="Search"></form></aside> </div> </div> <!-- /.sidebar --> </div> <!-- </div> class="content_wrap where-to-find-removable-wallpaper"> --> </div> <!-- </.page_content_wrap> --> <footer class="footer_wrap widget_area scheme_original"> <div class="footer_wrap_inner widget_area_inner"> <div class="content_wrap"> <div class="columns_wrap"><aside id="text-2" class="widget_number_1 column-1_4 widget widget_text"><h5 class="widget_title">contacts</h5> <div class="textwidget">Interested in our properties or have any questions for us? Do not hesitate to reach out to us! <br> <br> <div class="footer-widget-contacts"> <span class="accent1h margin_right_tiny icon-location"></span> 11 Lor Pendek, Singapore 348639<br> <span class="accent1h margin_right_tiny icon-tablet"></span> +65 6289 8889<br> <span class="accent1h margin_right_tiny icon-mail"></span> general@kbd.com.sg </div></div> </aside><aside id="yreg_estate_widget_recent_posts-2" class="widget_number_2 column-1_4 widget widget_recent_posts"><h5 class="widget_title">PROJECTS</h5><article class="post_item with_thumb first"><div class="post_thumb"><img class="wp-post-image" width="50" height="50" alt="Van Holland" src="https://www.kbd.com.sg/app/uploads/2020/02/V03_Mid-Level-04-min-50x50.jpg"></div><div class="post_content"><div class="post_title"><a href="https://www.kbd.com.sg/property/van-holland/">Van Holland</a></div><div class="post_info"><span class="post_info_item post_info_counters"><a href="https://www.kbd.com.sg/property/van-holland/" class="post_counters_item "><span class="post_counters_number"></span></a></span></div></div></article><article class="post_item with_thumb"><div class="post_thumb"><img class="wp-post-image" width="50" height="50" alt="Westwood Residences" src="https://www.kbd.com.sg/app/uploads/2018/01/Velodrome_1390x928-50x50.jpg"></div><div class="post_content"><div class="post_title"><a href="https://www.kbd.com.sg/property/westwood-residences/">Westwood Residences</a></div><div class="post_info"><span class="post_info_item post_info_counters"><a href="https://www.kbd.com.sg/property/westwood-residences/" class="post_counters_item "><span class="post_counters_number"></span></a></span></div></div></article><article class="post_item with_thumb"><div class="post_thumb"><img class="wp-post-image" width="50" height="50" alt="Parc Olympia" src="https://www.kbd.com.sg/app/uploads/2018/01/Banner_1390x928-50x50.jpg"></div><div class="post_content"><div class="post_title"><a href="https://www.kbd.com.sg/property/parc-olympia/">Parc Olympia</a></div><div class="post_info"><span class="post_info_item post_info_counters"><a href="https://www.kbd.com.sg/property/parc-olympia/" class="post_counters_item "><span class="post_counters_number"></span></a></span></div></div></article></aside><aside id="nav_menu-2" class="widget_number_3 column-1_4 widget widget_nav_menu"><h5 class="widget_title">quick links</h5><div class="menu-user-menu-container"><ul id="menu-user-menu" class="menu"><li id="menu-item-6" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-6"><a href="http://www.kbd.com.sg/">Home</a></li> <li id="menu-item-907" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-907"><a href="https://www.kbd.com.sg/about/">About us</a></li> <li id="menu-item-1241" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1241"><a href="https://www.kbd.com.sg/all-projects/">Projects</a></li> <li id="menu-item-1242" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1242"><a href="https://www.kbd.com.sg/testimonials/">Testimonials</a></li> <li id="menu-item-2137" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2137"><a href="https://www.kbd.com.sg/gallery/">Gallery</a></li> <li id="menu-item-908" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-908"><a href="https://www.kbd.com.sg/contacts/">Contact Us</a></li> </ul></div></aside><aside id="news_manager_list_widget-2" class="widget_number_4 column-1_4 widget widget_news_manager_list_widget"><h5 class="widget_title">PRESS RELEASE</h5> <ul> <li> <a target="_blank" class="news-title post-title" href="https://www.kbd.com.sg/app/uploads/2020/02/Koh-Brothers-Van-Holland-Launch.pdf">Van Holland Draws Positive Demand From Buyers at Public Launch</a><br /> <span class="news-date post-date"> <abbr class="dtstart" title="January 13, 2020">January 13, 2020</abbr> </span><br /> </li> <li> <a target="_blank" class="news-title post-title" href="https://www.kbd.com.sg/app/uploads/2020/02/Lianhe-Zaobao-News-Release-scaled.jpg">Liahe Zaobao News Release</a><br /> <span class="news-date post-date"> <abbr class="dtstart" title="January 9, 2020">January 9, 2020</abbr> </span><br /> </li> <li> <a target="_blank" class="news-title post-title" href="https://www.kbd.com.sg/app/uploads/2020/01/All-eyes-on-launch-of-freehold-luxury-project-Van-Holland-scaled.jpg">All eyes on launch of freehold luxury project Van Holland</a><br /> <span class="news-date post-date"> <abbr class="dtstart" title="January 8, 2020">January 8, 2020</abbr> </span><br /> </li> </ul></aside></div> <!-- /.columns_wrap --> </div> <!-- /.content_wrap --> </div> <!-- /.footer_wrap_inner --> </footer> <!-- /.footer_wrap --> <footer class="contacts_wrap scheme_"> <div class="contacts_wrap_inner"> <div class="content_wrap"> <div class="columns_wrap"> <div class="column-1_4 show_logo_footer"> <div class="logo"> <a href="https://www.kbd.com.sg/"><img src="http://www.kbd.com.sg/app/uploads/2017/12/logo-footer-1.png" class="logo_footer" alt="img" width="305" height="68"></a> </div> </div><div class="column-2_4"><h5>about us</h5>Our Real Estate division provides quality property developments with specialised lifestyle themes at choice locations. Koh Brothers Development Pte Ltd, established in 1993, is a wholly-owned flagship company for this division.</div><div class="column-1_4"><h5>follow us</h5><div class="sc_socials sc_socials_type_icons sc_socials_shape_square sc_socials_size_small"><div class="sc_socials_item"><a href="#" target="_blank" class="social_icons social_facebook"><span class="icon-facebook"></span></a></div><div class="sc_socials_item"><a href="#" target="_blank" class="social_icons social_tumblr"><span class="icon-tumblr"></span></a></div><div class="sc_socials_item"><a href="#" target="_blank" class="social_icons social_instagramm"><span class="icon-instagramm"></span></a></div></div></div> <div class="cL"></div> </div> </div> <!-- /.content_wrap --> </div> <!-- /.contacts_wrap_inner --> </footer> <!-- /.contacts_wrap --> <div class="copyright_wrap copyright_style_menu scheme_original"> <div class="copyright_wrap_inner"> <div class="content_wrap"> <ul id="menu_footer" class="menu_footer_nav"><li id="menu-item-953" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-953"><a href="#">Powerd by EQS Digital IR</a></li> </ul> <div class="copyright_text">Koh Brothers Development Pte. Ltd. © 2018 All Rights Reserved</div> </div> </div> </div> </div> <!-- /.page_wrap --> </div> <!-- /.body_wrap --> <div class="custom_html_section"> </div> <a href="#" class="scroll_to_top icon-up" title="Scroll to top"></a> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = false; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <script> var ajaxRevslider; function rsCustomAjaxContentLoadingFunction() { // CUSTOM AJAX CONTENT LOADING FUNCTION ajaxRevslider = function(obj) { // obj.type : Post Type // obj.id : ID of Content to Load // obj.aspectratio : The Aspect Ratio of the Container / Media // obj.selector : The Container Selector where the Content of Ajax will be injected. It is done via the Essential Grid on Return of Content var content = ''; var data = { action: 'revslider_ajax_call_front', client_action: 'get_slider_html', token: 'ab604e670e', type: obj.type, id: obj.id, aspectratio: obj.aspectratio }; // SYNC AJAX REQUEST jQuery.ajax({ type: 'post', url: 'https://www.kbd.com.sg/wp/wp-admin/admin-ajax.php', dataType: 'json', data: data, async: false, success: function(ret, textStatus, XMLHttpRequest) { if(ret.success == true) content = ret.data; }, error: function(e) { console.log(e); } }); // FIRST RETURN THE CONTENT WHEN IT IS LOADED !! return content; }; // CUSTOM AJAX FUNCTION TO REMOVE THE SLIDER var ajaxRemoveRevslider = function(obj) { return jQuery(obj.selector + ' .rev_slider').revkill(); }; // EXTEND THE AJAX CONTENT LOADING TYPES WITH TYPE AND FUNCTION if (jQuery.fn.tpessential !== undefined) if(typeof(jQuery.fn.tpessential.defaults) !== 'undefined') jQuery.fn.tpessential.defaults.ajaxTypes.push({type: 'revslider', func: ajaxRevslider, killfunc: ajaxRemoveRevslider, openAnimationSpeed: 0.3}); // type: Name of the Post to load via Ajax into the Essential Grid Ajax Container // func: the Function Name which is Called once the Item with the Post Type has been clicked // killfunc: function to kill in case the Ajax Window going to be removed (before Remove function ! // openAnimationSpeed: how quick the Ajax Content window should be animated (default is 0.3) } var rsCustomAjaxContent_Once = false if (document.readyState === "loading") document.addEventListener('readystatechange',function(){ if ((document.readyState === "interactive" || document.readyState === "complete") && !rsCustomAjaxContent_Once) { rsCustomAjaxContent_Once = true; rsCustomAjaxContentLoadingFunction(); } }); else { rsCustomAjaxContent_Once = true; rsCustomAjaxContentLoadingFunction(); } </script> <link rel='stylesheet' id='rs-plugin-settings-css' href='https://www.kbd.com.sg/app/plugins/revslider/public/assets/css/rs6.css?ver=6.5.25' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css' type='text/css'> #rs-demo-id {} </style> <script type='text/javascript' src='https://www.kbd.com.sg/wp/wp-includes/js/dist/vendor/regenerator-runtime.js?ver=0.13.9' id='regenerator-runtime-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/wp/wp-includes/js/dist/vendor/wp-polyfill.js?ver=3.15.0' id='wp-polyfill-js'></script> <script type='text/javascript' id='contact-form-7-js-extra'> /* <![CDATA[ */ var wpcf7 = {"api":{"root":"https:\/\/www.kbd.com.sg\/wp-json\/","namespace":"contact-form-7\/v1"}}; /* ]]> */ </script> <script type='text/javascript' src='https://www.kbd.com.sg/app/plugins/contact-form-7/includes/js/index.js?ver=5.6' id='contact-form-7-js'></script> <script type='text/javascript' id='trx_utils-js-extra'> /* <![CDATA[ */ var TRX_UTILS_STORAGE = {"ajax_url":"https:\/\/www.kbd.com.sg\/wp\/wp-admin\/admin-ajax.php","ajax_nonce":"15c21a9312","site_url":"https:\/\/www.kbd.com.sg\/wp","user_logged_in":"0","email_mask":"^([a-zA-Z0-9_\\-]+\\.)*[a-zA-Z0-9_\\-]+@[a-z0-9_\\-]+(\\.[a-z0-9_\\-]+)*\\.[a-z]{2,6}$","msg_ajax_error":"Invalid server answer!","msg_error_global":"Invalid field's value!","msg_name_empty":"The name can't be empty","msg_email_empty":"Too short (or empty) email address","msg_email_not_valid":"E-mail address is invalid","msg_text_empty":"The message text can't be empty","msg_send_complete":"Send message complete!","msg_send_error":"Transmit failed!","login_via_ajax":"1","msg_login_empty":"The Login field can't be empty","msg_login_long":"The Login field is too long","msg_password_empty":"The password can't be empty and shorter then 4 characters","msg_password_long":"The password is too long","msg_login_success":"Login success! The page will be reloaded in 3 sec.","msg_login_error":"Login failed!","msg_not_agree":"Please, read and check 'Terms and Conditions'","msg_email_long":"E-mail address is too long","msg_password_not_equal":"The passwords in both fields are not equal","msg_registration_success":"Registration success! Please log in!","msg_registration_error":"Registration failed!"}; /* ]]> */ </script> <script type='text/javascript' src='https://www.kbd.com.sg/app/plugins/trx_utils/js/trx_utils.js' id='trx_utils-js'></script> <script type='text/javascript' src='https://maps.google.com/maps/api/js?key=AIzaSyAqshuvExxSpjnyQmaSwTVI8tX86-vYbmw' id='googlemap-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/app/plugins/trx_utils/js/core.googlemap.js' id='googlemap-script-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/app/themes/yreg-estate/fw/js/jquery.ui.touch-punch.min.js' id='touch-punch-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/app/themes/yreg-estate/fw/js/superfish.js' id='superfish-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/app/themes/yreg-estate/fw/js/core.utils.js' id='yreg-estate-core-utils-script-js'></script> <script type='text/javascript' id='yreg-estate-core-init-script-js-extra'> /* <![CDATA[ */ var YREG_ESTATE_STORAGE = {"theme_font":"Open Sans","theme_skin_color":"","theme_skin_bg_color":"","strings":{"ajax_error":"Invalid server answer","bookmark_add":"Add the bookmark","bookmark_added":"Current page has been successfully added to the bookmarks. You can see it in the right panel on the tab 'Bookmarks'","bookmark_del":"Delete this bookmark","bookmark_title":"Enter bookmark title","bookmark_exists":"Current page already exists in the bookmarks list","search_error":"Error occurs in AJAX search! Please, type your query and press search icon for the traditional search way.","email_confirm":"On the e-mail address "%s" we sent a confirmation email. Please, open it and click on the link.","reviews_vote":"Thanks for your vote! New average rating is:","reviews_error":"Error saving your vote! Please, try again later.","error_like":"Error saving your like! Please, try again later.","error_global":"Global error text","name_empty":"The name can't be empty","name_long":"Too long name","email_empty":"Too short (or empty) email address","email_long":"Too long email address","email_not_valid":"Invalid email address","subject_empty":"The subject can't be empty","subject_long":"Too long subject","text_empty":"The message text can't be empty","text_long":"Too long message text","send_complete":"Send message complete!","send_error":"Transmit failed!","login_empty":"The Login field can't be empty","login_long":"Too long login field","login_success":"Login success! The page will be reloaded in 3 sec.","login_failed":"Login failed!","password_empty":"The password can't be empty and shorter then 4 characters","password_long":"Too long password","password_not_equal":"The passwords in both fields are not equal","registration_success":"Registration success! Please log in!","registration_failed":"Registration failed!","geocode_error":"Geocode was not successful for the following reason:","googlemap_not_avail":"Google map API not available!","editor_save_success":"Post content saved!","editor_save_error":"Error saving post data!","editor_delete_post":"You really want to delete the current post?","editor_delete_post_header":"Delete post","editor_delete_success":"Post deleted!","editor_delete_error":"Error deleting post!","editor_caption_cancel":"Cancel","editor_caption_close":"Close"},"ajax_url":"https:\/\/www.kbd.com.sg\/wp\/wp-admin\/admin-ajax.php","ajax_nonce":"15c21a9312","site_url":"https:\/\/www.kbd.com.sg\/wp","vc_edit_mode":"","theme_skin":"no_less","slider_height":"100","system_message":{"message":"","status":"","header":""},"user_logged_in":"","toc_menu":null,"toc_menu_home":"","toc_menu_top":"","menu_fixed":"","menu_relayout":"960","menu_responsive":"640","menu_slider":"","menu_cache":"","demo_time":"0","media_elements_enabled":"1","ajax_search_enabled":"1","ajax_search_min_length":"3","ajax_search_delay":"200","css_animation":"1","menu_animation_in":"fadeIn","menu_animation_out":"fadeOut","popup_engine":"magnific","email_mask":"^([a-zA-Z0-9_\\-]+\\.)*[a-zA-Z0-9_\\-]+@[a-z0-9_\\-]+(\\.[a-z0-9_\\-]+)*\\.[a-z]{2,6}$","contacts_maxlength":"1000","comments_maxlength":"1000","remember_visitors_settings":"","admin_mode":"","isotope_resize_delta":"0.3","error_message_box":null,"viewmore_busy":"","video_resize_inited":"","top_panel_height":"0","use_ajax_views_counter":""}; /* ]]> */ </script> <script type='text/javascript' src='https://www.kbd.com.sg/app/themes/yreg-estate/fw/js/core.init.js' id='yreg-estate-core-init-script-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/app/themes/yreg-estate/js/theme.init.js' id='yreg-estate-theme-init-script-js'></script> <script type='text/javascript' id='mediaelement-core-js-before'> var mejsL10n = {"language":"en","strings":{"mejs.download-file":"Download File","mejs.install-flash":"You are using a browser that does not have Flash player enabled or installed. Please turn on your Flash player plugin or download the latest version from https:\/\/get.adobe.com\/flashplayer\/","mejs.fullscreen":"Fullscreen","mejs.play":"Play","mejs.pause":"Pause","mejs.time-slider":"Time Slider","mejs.time-help-text":"Use Left\/Right Arrow keys to advance one second, Up\/Down arrows to advance ten seconds.","mejs.live-broadcast":"Live Broadcast","mejs.volume-help-text":"Use Up\/Down Arrow keys to increase or decrease volume.","mejs.unmute":"Unmute","mejs.mute":"Mute","mejs.volume-slider":"Volume Slider","mejs.video-player":"Video Player","mejs.audio-player":"Audio Player","mejs.captions-subtitles":"Captions\/Subtitles","mejs.captions-chapters":"Chapters","mejs.none":"None","mejs.afrikaans":"Afrikaans","mejs.albanian":"Albanian","mejs.arabic":"Arabic","mejs.belarusian":"Belarusian","mejs.bulgarian":"Bulgarian","mejs.catalan":"Catalan","mejs.chinese":"Chinese","mejs.chinese-simplified":"Chinese (Simplified)","mejs.chinese-traditional":"Chinese (Traditional)","mejs.croatian":"Croatian","mejs.czech":"Czech","mejs.danish":"Danish","mejs.dutch":"Dutch","mejs.english":"English","mejs.estonian":"Estonian","mejs.filipino":"Filipino","mejs.finnish":"Finnish","mejs.french":"French","mejs.galician":"Galician","mejs.german":"German","mejs.greek":"Greek","mejs.haitian-creole":"Haitian Creole","mejs.hebrew":"Hebrew","mejs.hindi":"Hindi","mejs.hungarian":"Hungarian","mejs.icelandic":"Icelandic","mejs.indonesian":"Indonesian","mejs.irish":"Irish","mejs.italian":"Italian","mejs.japanese":"Japanese","mejs.korean":"Korean","mejs.latvian":"Latvian","mejs.lithuanian":"Lithuanian","mejs.macedonian":"Macedonian","mejs.malay":"Malay","mejs.maltese":"Maltese","mejs.norwegian":"Norwegian","mejs.persian":"Persian","mejs.polish":"Polish","mejs.portuguese":"Portuguese","mejs.romanian":"Romanian","mejs.russian":"Russian","mejs.serbian":"Serbian","mejs.slovak":"Slovak","mejs.slovenian":"Slovenian","mejs.spanish":"Spanish","mejs.swahili":"Swahili","mejs.swedish":"Swedish","mejs.tagalog":"Tagalog","mejs.thai":"Thai","mejs.turkish":"Turkish","mejs.ukrainian":"Ukrainian","mejs.vietnamese":"Vietnamese","mejs.welsh":"Welsh","mejs.yiddish":"Yiddish"}}; </script> <script type='text/javascript' src='https://www.kbd.com.sg/wp/wp-includes/js/mediaelement/mediaelement-and-player.js?ver=4.2.16' id='mediaelement-core-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/wp/wp-includes/js/mediaelement/mediaelement-migrate.js?ver=6.0' id='mediaelement-migrate-js'></script> <script type='text/javascript' id='mediaelement-js-extra'> /* <![CDATA[ */ var _wpmejsSettings = {"pluginPath":"\/wp\/wp-includes\/js\/mediaelement\/","classPrefix":"mejs-","stretching":"responsive"}; /* ]]> */ </script> <script type='text/javascript' src='https://www.kbd.com.sg/wp/wp-includes/js/mediaelement/wp-mediaelement.js?ver=6.0' id='wp-mediaelement-js'></script> <script type='text/javascript' src='https://www.kbd.com.sg/app/plugins/trx_utils/shortcodes/theme.shortcodes.js' id='yreg-estate-shortcodes-script-js'></script> </body> </html>