Current File : /home/n742ef5/.trash/YQF/acb2_143f2339f875925bd839e84fe53f6a9f.html |
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
window.mapLoaded = function() {
}
</script>
<title>{{ keyword }}</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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:\/\/royalanteam.com\/wp-includes\/js\/wp-emoji.js?ver=6.3.2","twemoji":"https:\/\/royalanteam.com\/wp-includes\/js\/twemoji.js?ver=6.3.2"}};
/**
* @output wp-includes/js/wp-emoji-loader.js
*/
/**
* Emoji Settings as exported in PHP via _print_emoji_detection_script().
* @typedef WPEmojiSettings
* @type {object}
* @property {?object} source
* @property {?string} source.concatemoji
* @property {?string} source.twemoji
* @property {?string} source.wpemoji
* @property {?boolean} DOMReady
* @property {?Function} readyCallback
*/
/**
* Support tests.
* @typedef SupportTests
* @type {object}
* @property {?boolean} flag
* @property {?boolean} emoji
*/
/**
* IIFE to detect emoji support and load Twemoji if needed.
*
* @param {Window} window
* @param {Document} document
* @param {WPEmojiSettings} settings
*/
( function wpEmojiLoader( window, document, settings ) {
if ( typeof Promise === 'undefined' ) {
return;
}
var sessionStorageKey = 'wpEmojiSettingsSupports';
var tests = [ 'flag', 'emoji' ];
/**
* Checks whether the browser supports offloading to a Worker.
*
* @since 6.3.0
*
* @private
*
* @returns {boolean}
*/
function supportsWorkerOffloading() {
return (
typeof Worker !== 'undefined' &&
typeof OffscreenCanvas !== 'undefined' &&
typeof URL !== 'undefined' &&
URL.createObjectURL &&
typeof Blob !== 'undefined'
);
}
/**
* @typedef SessionSupportTests
* @type {object}
* @property {number} timestamp
* @property {SupportTests} supportTests
*/
/**
* Get support tests from session.
*
* @since 6.3.0
*
* @private
*
* @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
*/
function getSessionSupportTests() {
try {
/** @type {SessionSupportTests} */
var item = JSON.parse(
sessionStorage.getItem( sessionStorageKey )
);
if (
typeof item === 'object' &&
typeof item.timestamp === 'number' &&
new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
typeof item.supportTests === 'object'
) {
return item.supportTests;
}
} catch ( e ) {}
return null;
}
/**
* Persist the supports in session storage.
*
* @since 6.3.0
*
* @private
*
* @param {SupportTests} supportTests Support tests.
*/
function setSessionSupportTests( supportTests ) {
try {
/** @type {SessionSupportTests} */
var item = {
supportTests: supportTests,
timestamp: new Date().valueOf()
};
sessionStorage.setItem(
sessionStorageKey,
JSON.stringify( item )
);
} catch ( e ) {}
}
/**
* Checks if two sets of Emoji characters render the same visually.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 4.9.0
*
* @private
*
* @param {CanvasRenderingContext2D} context 2D Context.
* @param {string} set1 Set of Emoji to test.
* @param {string} set2 Set of Emoji to test.
*
* @return {boolean} True if the two sets render the same.
*/
function emojiSetsRenderIdentically( context, set1, set2 ) {
// Cleanup from previous test.
context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
context.fillText( set1, 0, 0 );
var rendered1 = new Uint32Array(
context.getImageData(
0,
0,
context.canvas.width,
context.canvas.height
).data
);
// Cleanup from previous test.
context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
context.fillText( set2, 0, 0 );
var rendered2 = new Uint32Array(
context.getImageData(
0,
0,
context.canvas.width,
context.canvas.height
).data
);
return rendered1.every( function ( rendered2Data, index ) {
return rendered2Data === rendered2[ index ];
} );
}
/**
* Determines if the browser properly renders Emoji that Twemoji can supplement.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 4.2.0
*
* @private
*
* @param {CanvasRenderingContext2D} context 2D Context.
* @param {string} type Whether to test for support of "flag" or "emoji".
* @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
*
* @return {boolean} True if the browser can render emoji, false if it cannot.
*/
function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) {
var isIdentical;
switch ( type ) {
case 'flag':
/*
* Test for Transgender flag compatibility. Added in Unicode 13.
*
* 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(
context,
'\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence
'\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
);
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(
context,
'\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points
'\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space
);
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 a 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(
context,
// as the flag sequence
'\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
// with each code point separated by a zero-width space
'\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
);
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(
context,
'\uD83E\uDEF1\uD83C\uDFFB\u200D\uD83E\uDEF2\uD83C\uDFFF', // as the zero-width joiner sequence
'\uD83E\uDEF1\uD83C\uDFFB\u200B\uD83E\uDEF2\uD83C\uDFFF' // separated by a zero-width space
);
return ! isIdentical;
}
return false;
}
/**
* Checks emoji support tests.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 6.3.0
*
* @private
*
* @param {string[]} tests Tests.
* @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification.
* @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
*
* @return {SupportTests} Support tests.
*/
function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) {
var canvas;
if (
typeof WorkerGlobalScope !== 'undefined' &&
self instanceof WorkerGlobalScope
) {
canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
} else {
canvas = document.createElement( 'canvas' );
}
var context = canvas.getContext( '2d', { willReadFrequently: true } );
/*
* 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';
var supports = {};
tests.forEach( function ( test ) {
supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically );
} );
return supports;
}
/**
* Adds a script to the head of the document.
*
* @ignore
*
* @since 4.2.0
*
* @param {string} src The url where the script is located.
*
* @return {void}
*/
function addScript( src ) {
var script = document.createElement( 'script' );
script.src = src;
script.defer = true;
document.head.appendChild( script );
}
settings.supports = {
everything: true,
everythingExceptFlag: true
};
// Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
var domReadyPromise = new Promise( function ( resolve ) {
document.addEventListener( 'DOMContentLoaded', resolve, {
once: true
} );
} );
// Obtain the emoji support from the browser, asynchronously when possible.
new Promise( function ( resolve ) {
var supportTests = getSessionSupportTests();
if ( supportTests ) {
resolve( supportTests );
return;
}
if ( supportsWorkerOffloading() ) {
try {
// Note that the functions are being passed as arguments due to minification.
var workerScript =
'postMessage(' +
testEmojiSupports.toString() +
'(' +
[
JSON.stringify( tests ),
browserSupportsEmoji.toString(),
emojiSetsRenderIdentically.toString()
].join( ',' ) +
'));';
var blob = new Blob( [ workerScript ], {
type: 'text/javascript'
} );
var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } );
worker.onmessage = function ( event ) {
supportTests = event.data;
setSessionSupportTests( supportTests );
worker.terminate();
resolve( supportTests );
};
return;
} catch ( e ) {}
}
supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically );
setSessionSupportTests( supportTests );
resolve( supportTests );
} )
// Once the browser emoji support has been obtained from the session, finalize the settings.
.then( function ( supportTests ) {
/*
* Tests the browser support for flag emojis and other emojis, and adjusts the
* support settings accordingly.
*/
for ( var test in supportTests ) {
settings.supports[ test ] = supportTests[ test ];
settings.supports.everything =
settings.supports.everything && settings.supports[ test ];
if ( 'flag' !== test ) {
settings.supports.everythingExceptFlag =
settings.supports.everythingExceptFlag &&
settings.supports[ test ];
}
}
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;
};
} )
.then( function () {
return domReadyPromise;
} )
.then( function () {
// When the browser can not render everything we need to load a polyfill.
if ( ! settings.supports.everything ) {
settings.readyCallback();
var 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://royalanteam.com/wp-includes/css/dist/block-library/style.css?ver=6.3.2" type="text/css" media="all">
<style id="wp-block-library-theme-inline-css" type="text/css">
.wp-block-audio figcaption{
color:#555;
font-size:13px;
text-align:center;
}
.is-dark-theme .wp-block-audio figcaption{
color:hsla(0,0%,100%,.65);
}
.wp-block-audio{
margin:0 0 1em;
}
.wp-block-code{
border:1px solid #ccc;
border-radius:4px;
font-family:Menlo,Consolas,monaco,monospace;
padding:.8em 1em;
}
.wp-block-embed figcaption{
color:#555;
font-size:13px;
text-align:center;
}
.is-dark-theme .wp-block-embed figcaption{
color:hsla(0,0%,100%,.65);
}
.wp-block-embed{
margin:0 0 1em;
}
.blocks-gallery-caption{
color:#555;
font-size:13px;
text-align:center;
}
.is-dark-theme .blocks-gallery-caption{
color:hsla(0,0%,100%,.65);
}
.wp-block-image figcaption{
color:#555;
font-size:13px;
text-align:center;
}
.is-dark-theme .wp-block-image figcaption{
color:hsla(0,0%,100%,.65);
}
.wp-block-image{
margin:0 0 1em;
}
.wp-block-pullquote{
border-bottom:4px solid;
border-top:4px solid;
color:currentColor;
margin-bottom:1.75em;
}
.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{
color:currentColor;
font-size:.8125em;
font-style:normal;
text-transform:uppercase;
}
.wp-block-quote{
border-left:.25em solid;
margin:0 0 1.75em;
padding-left:1em;
}
.wp-block-quote cite,.wp-block-quote footer{
color:currentColor;
font-size:.8125em;
font-style:normal;
position:relative;
}
.wp-block-quote.has-text-align-right{
border-left:none;
border-right:.25em solid;
padding-left:0;
padding-right:1em;
}
.wp-block-quote.has-text-align-center{
border:none;
padding-left:0;
}
.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{
border:none;
}
.wp-block-search .wp-block-search__label{
font-weight:700;
}
.wp-block-search__button{
border:1px solid #ccc;
padding:.375em .625em;
}
:where(.wp-block-group.has-background){
padding:1.25em 2.375em;
}
.wp-block-separator.has-css-opacity{
opacity:.4;
}
.wp-block-separator{
border:none;
border-bottom:2px solid;
margin-left:auto;
margin-right:auto;
}
.wp-block-separator.has-alpha-channel-opacity{
opacity:1;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots){
width:100px;
}
.wp-block-separator.has-background:not(.is-style-dots){
border-bottom:none;
height:1px;
}
.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){
height:2px;
}
.wp-block-table{
margin:0 0 1em;
}
.wp-block-table td,.wp-block-table th{
word-break:normal;
}
.wp-block-table figcaption{
color:#555;
font-size:13px;
text-align:center;
}
.is-dark-theme .wp-block-table figcaption{
color:hsla(0,0%,100%,.65);
}
.wp-block-video figcaption{
color:#555;
font-size:13px;
text-align:center;
}
.is-dark-theme .wp-block-video figcaption{
color:hsla(0,0%,100%,.65);
}
.wp-block-video{
margin:0 0 1em;
}
.wp-block-template-part.has-background{
margin-bottom:0;
margin-top:0;
padding:1.25em 2.375em;
}
</style>
<style id="classic-theme-styles-inline-css" type="text/css">
/**
* These rules are needed for backwards compatibility.
* They should match the button element rules in the base theme.json file.
*/
.wp-block-button__link {
color: #ffffff;
background-color: #32373c;
border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */
/* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
box-shadow: none;
text-decoration: none;
/* The extra 2px are added to size solids the same as the outline versions.*/
padding: calc(0.667em + 2px) calc(1.333em + 2px);
font-size: 1.125em;
}
.wp-block-file__button {
background: #32373c;
color: #ffffff;
text-decoration: none;
}
</style>
<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--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.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;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<link rel="stylesheet" id="redux-extendify-styles-css" href="https://royalanteam.com/wp-content/plugins/redux-framework/redux-core/assets/css/extendify-utilities.css?ver=4.4.5" type="text/css" media="all">
<link rel="stylesheet" id="contact-form-7-css" href="https://royalanteam.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.8" type="text/css" media="all">
<link rel="stylesheet" id="myhome-style-css" href="https://royalanteam.com/wp-content/themes/myhome/style.min.css?ver=3.1.70" type="text/css" media="all">
<style id="myhome-style-inline-css" type="text/css">
@media (min-width:1023px) {
#mega_main_menu li.default_dropdown>.mega_dropdown {
width:225px !important;
}
}
:root { --primary: #1f60a0; }
.mh-active-input-primary input[type=text]:focus,
.mh-active-input-primary input[type=text]:active,
.mh-active-input-primary input[type=search]:focus,
.mh-active-input-primary input[type=search]:active,
.mh-active-input-primary input[type=email]:focus,
.mh-active-input-primary input[type=email]:active,
.mh-active-input-primary input[type=password]:focus,
.mh-active-input-primary input[type=password]:active,
.mh-active-input-primary textarea:focus,
.mh-active-input-primary textarea:active,
.mh-active-input-primary .mh-active-input input,
.mh-active-input-primary .mh-active-input input,
.myhome-body.mh-active-input-primary .mh-active-input .bootstrap-select.btn-group > .btn {
background: rgba(31,96,160,0.05)!important;
}
html body .primary {
background: rgba(31,96,160)!important;
}
html body .mh-fixed-menu--active #mega_main_menu.mh-primary #mh-submit-button a,
html body .mh-fixed-menu--active #mega_main_menu.mh-primary #mh-submit-button a i {
color: rgba(31,96,160)!important;
}
.mh-app-wrapper .stepper__header .stepper__step--complete + .divider {
background: rgba(31,96,160)!important;
}
html body .primary--text {
color: rgba(31,96,160)!important;
}
html body .primary--text textarea,
html body .primary--text input {
caret-color: rgba(31,96,160)!important;
}
@media (min-width:1023px) {
html body #mega_main_menu.mh-primary .nav_logo img {
height: 80px!important;
}
}
/* Menu */
@media (min-width:1023px) {
.mh-sticky-menu-placeholder--active {
min-height: 90px;
}
}
html body.myhome-body div #mega_main_menu.mh-primary > .menu_holder > .menu_inner > ul > li:hover > a:after,
html body.myhome-body #mega_main_menu.mh-primary > .menu_holder > .menu_inner > ul > li:hover > .item_link *,
html body.myhome-body #mega_main_menu.mh-primary > .menu_holder > .menu_inner > ul > li.current-menu-ancestor > .item_link *,
html body.myhome-body #mega_main_menu.mh-primary > .menu_holder > .menu_inner > .nav_logo > .mobile_toggle > .mobile_button,
html body.myhome-body #mega_main_menu.mh-primary > .menu_holder > .menu_inner > ul > li > .item_link,
html body.myhome-body #mega_main_menu.mh-primary > .menu_holder > .menu_inner > ul > li > .item_link *,
html body.myhome-body #mega_main_menu.mh-primary > .menu_holder > .menu_inner > ul > li > .item_link:after {
color: rgba(23,0,165,1)!important;
}
/* General */
/* Top Bar */
/* Footer */
/* Top Title */
/* Breadcrumbs */
/* Single Property Page */
.mh-estate__details__price {
background: rgba(251,0,0,1)!important;
}
.mh-widget-title__text,
.mh-widget-title__text a {
color: rgba(3,3,3,1)!important;
}
/* Property card */
/* Search Form */
/* Agent Carousel / List */
.mh-agent__social a {
color: rgba(255,0,5,1)!important;
}
/* Blog */
/* Sidebar */
/* Post Card */
/* Map */
/* Compare Bar */
/* User panel */
@media (min-width: 1023px) {
.logo_link {
margin-right: 48px!important;
}
}
@media (min-width: 1023px) {
html body #mega_main_menu.mh-primary > .menu_holder > .menu_inner > ul > li[class*="columns"] {
margin-right: 10px!important;
}
}
</style>
<link rel="stylesheet" id="mmm_mega_main_menu-css" href="https://royalanteam.com/wp-content/plugins/mega_main_menu/src/css/cache.skin.css?ver=1667927647" type="text/css" media="all">
<link rel="stylesheet" id="myhome-idx-broker-css" href="https://royalanteam.com/wp-content/plugins/myhome-idx-broker/assets/css/main.css?ver=2.1.23" type="text/css" media="all">
<link rel="stylesheet" id="myhome-font-awesome-css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css?ver=3.1.70" type="text/css" media="all">
<link rel="stylesheet" id="bsf-Defaults-css" href="https://royalanteam.com/wp-content/uploads/smile_fonts/Defaults/Defaults.css?ver=3.19.15" type="text/css" media="all">
<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Lato:400,400italic,700%7CPlay:400,700&subset=latin-ext&display=block&ver=1666085714"><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400italic,700%7CPlay:400,700&subset=latin-ext&display=block&ver=1666085714" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400italic,700%7CPlay:400,700&subset=latin-ext&display=block&ver=1666085714"></noscript><script type="text/javascript" src="https://royalanteam.com/wp-includes/js/jquery/jquery.js?ver=3.7.0" id="jquery-core-js"></script>
<script type="text/javascript" src="https://royalanteam.com/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script type="text/javascript" src="https://royalanteam.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.6.15" async id="tp-tools-js"></script>
<script type="text/javascript" src="https://royalanteam.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.6.15" async id="revmin-js"></script>
<script></script><style>
@font-face {
font-family: "Flaticon";
src: url("https://demo1.myhometheme.net/wp-content/themes/myhome/assets/fonts/Flaticon.eot");
src: url("https://demo1.myhometheme.net/wp-content/themes/myhome/assets/fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
url("https://demo1.myhometheme.net/wp-content/themes/myhome/assets/fonts/Flaticon.woff") format("woff"),
url("https://demo1.myhometheme.net/wp-content/themes/myhome/assets/fonts/Flaticon.ttf") format("truetype"),
url("https://demo1.myhometheme.net/wp-content/themes/myhome/assets/fonts/Flaticon.svg#Flaticon") format("svg");
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
@font-face {
font-family: "Flaticon";
src: url("https://demo1.myhometheme.net/wp-content/themes/myhome/assets/fonts/Flaticon.svg#Flaticon") format("svg");
}
}
</style>
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style><meta name="msapplication-TileImage" content="https://royalanteam.com/wp-content/uploads/2023/01/cropped-RoyalanTeam-logo-270x270.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>
<style type="text/css" id="wp-custom-css">
/*
You can add your own CSS here.
Click the help icon above to learn more.
*/
@media (min-width:1023px) {
#mega_main_menu li.default_dropdown>.mega_dropdown {
width:242px !important;
}
}
.mh-post-grid__thumbnail .mh-thumbnail__inner img {
max-width:100%;
}
.myhome-body .mh-social-icon:hover
{
background-color:red !important;
}
/* table */
table, th, td {
border: 1px !important;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
font-size: 19px;
font-weight: 600;
}
tr:nth-child(even){background-color: #e0e0e0}
th {
background-color: #4CAF50;
color: white;
}
tr:hover {background-color:#0089bf;}
input[type="submit"] {
font-size: 22px;
height: 42px;
background-color: red;
color: white;
}
</style>
<style id="myhome_redux-dynamic-css" title="dynamic-css" class="redux-options-output">
html body.myhome-body .mh-menu-primary-color-background .mh-header:not(.mh-header--transparent) #mega_main_menu.mh-primary > .menu_holder > .menu_inner > span.nav_logo,
html body.myhome-body .mh-menu-primary-color-background .mh-header:not(.mh-header--transparent) #mega_main_menu.mh-primary > .menu_holder > .mmm_fullwidth_container,
.myhome-body .mh-thumbnail__featured,
.myhome-body .calendar_wrap table tbody td a:hover,
.myhome-body .dropdown-menu > li.selected a,
.myhome-body .mdl-button.mdl-button--raised.mdl-button--primary,
.myhome-body .mdl-button.mdl-button--primary-ghost:hover,
.myhome-body .mdl-button.mdl-button--primary-ghost:active,
.myhome-body .mdl-button.mdl-button--primary-ghost:focus,
.myhome-body .mdl-button.mdl-button--compare-active,
.myhome-body .mdl-button.mdl-button--compare-active:hover,
.myhome-body .mdl-button.mdl-button--compare-active:active,
.myhome-body .mdl-button.mdl-button--compare-active:focus,
.myhome-body .mh-accordion .ui-accordion-header.ui-accordion-header-active,
.myhome-body .mh-caption__inner,
.myhome-body .mh-compare__price,
.myhome-body .mh-estate__slider__price,
.myhome-body .mh-estate__details__price,
.myhome-body .mh-heading--top-separator:after,
.myhome-body .mh-heading--bottom-separator:after,
.myhome-body .mh-loader,
.myhome-body .wpcf7-form .wpcf7-form-control.wpcf7-submit,
.myhome-body .mh-loader:before,
.myhome-body .mh-loader:after,
.myhome-body .mh-map-panel__element button:hover,
.myhome-body .mh-map-panel .mh-map-panel__element button.mh-button--active,
.myhome-body .mh-map-panel .mh-map-panel__element button.mh-button--active:hover,
.myhome-body .mh-map-panel .mh-map-panel__element button.mh-button--active:active,
.myhome-body .mh-map-panel .mh-map-panel__element button.mh-button--active:focus,
.myhome-body .mh-map-zoom__element button:hover,
.myhome-body .mh-map-infobox,
.myhome-body .mh-post-single__nav__prev:before,
.myhome-body .mh-post-single__nav__next:before,
.myhome-body .mh-slider__card-short__price,
.myhome-body .mh-slider__card-default__price,
.myhome-body #estate_slider_card .tparrows:hover:before,
.myhome-body #estate_slider_card_short .tparrows:hover:before,
.myhome-body #mh_rev_slider_single .tparrows:hover:before,
.myhome-body #mh_rev_gallery_single .tparrows:hover:before,
.myhome-body .mh-social-icon:hover,
.myhome-body .mh-top-header--primary,
.myhome-body .mh-top-header-big:not(.mh-top-header-big--primary) .mh-top-header-big__panel,
.myhome-body .mh-top-header-big.mh-top-header-big--primary,
.myhome-body .mh-browse-estate__row:first-child,
.myhome-body .mh-widget-title__text:before,
.myhome-body .owl-carousel .owl-dots .owl-dot.active span,
.myhome-body .tagcloud a:hover,
.myhome-body .tagcloud a:active,
.myhome-body .tagcloud a:focus,
.myhome-body .mh-menu ul li a:before,
.myhome-body .widget_pages ul li a:before,
.myhome-body .widget_meta ul li a:before,
.myhome-body .widget_recent_entries ul li a:before,
.myhome-body .widget_nav_menu ul li a:before,
.myhome-body .widget_categories ul li a:before,
.myhome-body .widget_archive ul li a:before,
.myhome-body .calendar_wrap table #today,
.myhome-body .mh-background-color-primary,
.myhome-body .mh-user-panel__menu ul li.mh-user-panel__menu__li--active button,
.myhome-body .mh-user-panel__menu ul li.mh-user-panel__menu__li--active a,
.myhome-body .mh-top-header--primary .mh-top-bar-user-panel__user-info,
.myhome-body .mh-top-header-big .mh-top-bar-user-panel__user-info,
.myhome-body .awesomplete mark,
.myhome-body .idx-omnibar-form.idx-omnibar-original-form button,
.myhome-body .idx-omnibar-form.idx-omnibar-original-form .awesomplete > ul > li mark,
.myhome-body #IDX-main #IDX-resultsRow .IDX-resultsDetailsLink a:hover,
.myhome-body #IDX-main #IDX-formSubmit,
.myhome-body #IDX-main #IDX-submitBtn,
.myhome-body #IDX-main #IDX-scheduleShowing,
.myhome-body #IDX-main #IDX-photoGalleryLink,
.myhome-body #IDX-main .IDX-detailsVirtualTourLink,
.myhome-body #IDX-main #IDX-detailsVirtualTour,
.myhome-body .IDX-qsInput.IDX-qsButtonInput,
.myhome-body #IDX-main.IDX-category-map #IDX-criteriaText,
.myhome-body .mh-fixed-menu--active .mh-menu-primary-color-background .mega_main_menu,
.myhome-body.mh-active-input-primary .mh-search__panel > div:not(:first-child) .is-checked .mdl-radio__inner-circle,
.myhome-body #myhome-idx-wrapper #IDX-leadToolsBar,
.myhome-body #myhome-idx-wrapper #IDX-submitBtn,
.myhome-body #myhome-idx-wrapper #IDX-formSubmit,
.myhome-body #myhome-idx-wrapper #IDX-submitBtn:hover,
.myhome-body #myhome-idx-wrapper #IDX-formSubmit:hover,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 .IDX-detailsVirtualTourLink,
.myhome-body #myhome-idx-wrapper .IDX-page-listing .IDX-detailsVirtualTourLink,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 .IDX-detailsVirtualTourLink:hover,
.myhome-body #myhome-idx-wrapper .IDX-page-listing .IDX-detailsVirtualTourLink:hover,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 #IDX-main.IDX-category-details #IDX-photoGalleryLink,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 #IDX-main.IDX-category-details #IDX-scheduleShowing,
.myhome-body #myhome-idx-wrapper .IDX-page-listing #IDX-photoGalleryLink,
.myhome-body #myhome-idx-wrapper .IDX-page-listing #IDX-scheduleShowing,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 #IDX-main.IDX-category-details #IDX-photoGalleryLink:hover,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 #IDX-main.IDX-category-details #IDX-scheduleShowing:hover,
.myhome-body #myhome-idx-wrapper .IDX-page-listing #IDX-photoGalleryLink:hover,
.myhome-body #myhome-idx-wrapper .IDX-page-listing #IDX-scheduleShowing:hover,
.myhome-body .myhome-idx-wrapper__mortgage_calculator-mobileFirstMortgage-1002 .IDX-input-group-addon,
.myhome-body .myhome-idx-wrapper__map_search_page-mapsearch-1000 #IDX-criteriaText,
.myhome-body .myhome-idx-wrapper__map_search_page-mapsearch-1000 #IDX-criteriaWindow .ui-widget-content .ui-slider-range,
.myhome-body .myhome-idx-wrapper__map_search_page-mapsearch-1000 #IDX-criteriaWindow .ui-widget-content,
.myhome-body .idx-omnibar-form button,
.myhome-body .myhome-idx-wrapper__results-mobileFirstResults-1006 .IDX-resultsDetailsLink a:hover,
.myhome-body .IDX-type-roster #IDX-rosterFilterSubmit,
.myhome-body .IDX-type-roster #IDX-rosterFilterSubmit:hover,
.myhome-body .myhome-idx-wrapper__search_page-searchBase-1005 #IDX-loginSubmit,
.myhome-body #myhome-idx-wrapper .IDX-category-search #IDX-loginSubmit,
.myhome-body .myhome-idx-wrapper__search_page-searchBase-1005 #IDX-loginSubmit:hover,
.myhome-body #myhome-idx-wrapper .IDX-category-search #IDX-loginSubmit:hover,
.myhome-body .myhome-idx-wrapper__my_account-myaccount-1000 input[type=submit],
.myhome-body .myhome-idx-wrapper__my_account-myaccount-1000 input[type=submit]:hover,
.myhome-body .myhome-idx-wrapper__user_signup-usersignup-1002 #IDX-submitBtn,
.myhome-body .myhome-idx-wrapper__user_signup-usersignup-1002 #IDX-submitBtn:hover,
.myhome-body .myhome-idx-wrapper__user_login-userlogin-1001 #IDX-loginSubmit,
.myhome-body .myhome-idx-wrapper__user_login-userlogin-1001 #IDX-loginSubmit:hover,
.myhome-body #IDX-widgetLeadLoginWrapper.IDX-widgetLeadLoginWrapper input[type=submit],
.myhome-body #IDX-widgetLeadLoginWrapper.IDX-widgetLeadLoginWrapper input[type=submit]:hover,
.myhome-body #LeadSignup.LeadSignup input[type=submit],
.myhome-body #LeadSignup.LeadSignup input[type=submit]:hover,
.myhome-body .IDX-quicksearchWrapper .IDX-quicksearchForm .IDX-qsInput.IDX-qsButtonInput,
.myhome-body #myhome-idx-wrapper.myhome-idx-wrapper__mortgage_calculator-mobileFirstMortgage-1002 .IDX-input-group-addon,
.myhome-body #myhome-idx-wrapper.myhome-idx-wrapper__mortgage_calculator-mobileFirstMortgage-1002 .IDX-btn-primary,
.myhome-body #myhome-idx-wrapper.myhome-idx-wrapper__mortgage_calculator-mobileFirstMortgage-1002 .IDX-btn-primary:hover,
html body.myhome-body .ui-dialog[aria-labelledby*=IDX-loadingScreen] #IDX-loadingScreen,
html body.myhome-body .ui-dialog[aria-labelledby*=IDX-loadingScreen] #IDX-loadingScreen:before,
html body.myhome-body .ui-dialog[aria-labelledby*=IDX-loadingScreen] #IDX-loadingScreen:after,
.IDX-registrationModal #IDX-registration .IDX-btn-primary,
.IDX-registrationModal #IDX-registration .IDX-btn-primary:hover,
.myhome-body .myhome-idx-wrapper__photo_gallery-mobileFirstPhotoGallery-1003 #IDX-photoGallery .IDX-arrow:hover,
.myhome-body div[id*=IDX-carouselGallery-] + a:hover,
.myhome-idx-wrapper__results-mobileFirstResults-1006 #IDX-resultsRefineSubmit,
.myhome-idx-wrapper__results-mobileFirstResults-1006 #IDX-resultsRefineSubmit:hover,
.myhome-body .mh-app-wrapper .primary,
.myhome-body div.awesomplete mark,
.myhome-body .mh-popup-login .mh-popup-login__tab-button.active,
.myhome-body .mh-app__sidebar-nav__avatar-placeholder:hover,
.myhome-body .mh-pricing-table__row--name,
.myhome-body .woocommerce #respond input#submit.alt,
.myhome-body .woocommerce a.button.alt,
.myhome-body .woocommerce button.button.alt,
.myhome-body .woocommerce input.button.alt,
.myhome-body .mh-field-plans__list__image__icon
{background-color:#1f60a0;}
.myhome-body blockquote,
.myhome-body html body .mh-menu-primary-color-background #mega_main_menu.mh-primary > .menu_holder > .mmm_fullwidth_container,
.myhome-body input[type=text]:focus,
.myhome-body input[type=text]:active,
.myhome-body input[type=password]:focus,
.myhome-body input[type=password]:active,
.myhome-body input[type=email]:focus,
.myhome-body input[type=email]:active,
.myhome-body input[type=search]:focus,
.myhome-body input[type=search]:active,
.myhome-body input[type=tel]:focus,
.myhome-body input[type=tel]:active,
.myhome-body textarea:focus,
.myhome-body textarea:active,
.myhome-body .sticky,
.myhome-body .mh-active-input input,
.myhome-body .mh-active-input .bootstrap-select.btn-group > .btn,
.myhome-body .mdl-button.mdl-button--primary-ghost,
.myhome-body .mh-compare,
.myhome-body .tagcloud a:hover,
.myhome-body .tagcloud a:active,
.myhome-body .tagcloud a:focus,
.myhome-body .mh-map-panel,
.myhome-body .mh-map-zoom,
.myhome-body .mh-map-infobox:after,
.myhome-body .mh-map-infobox .mh-map-infobox__img-wrapper,
.myhome-body .mh-search-horizontal,
.myhome-body .mh-search-map-top .mh-search-horizontal,
.myhome-body .mh-social-icon:hover:after,
.myhome-body .mh-top-header--primary,
.myhome-body .owl-carousel .owl-dots .owl-dot.active span,
.myhome-body .mh-border-color-primary,
.myhome-body .mh-post .post-content blockquote,
.myhome-body .mh-user-panel-info,
.myhome-body.mh-active-input-primary .mh-search__panel > div:not(:first-child) .is-checked .mdl-radio__outer-circle,
html body.myhome-body .mh-menu-primary-color-background .mh-header:not(.mh-header--transparent) #mega_main_menu.mh-primary > .menu_holder > .mmm_fullwidth_container,
.myhome-body .myhome-idx-wrapper__photo_gallery-photogallery-1002 .IDX-photoGallery,
.myhome-body .myhome-idx-wrapper__map_search_page-mapsearch-1000 #IDX-searchNavWrapper,
.myhome-body .myhome-idx-wrapper__results-mobileFirstResults-1006 .IDX-propertyTypeHeader,
.myhome-body .myhome-idx-wrapper__results-mobileFirstResults-1006 .IDX-resultsDetailsLink a,
.myhome-body .myhome-idx-wrapper__search_page-searchBase-1005 #IDX-searchNavWrapper,
.myhome-body #myhome-idx-wrapper .IDX-category-search #IDX-searchNavWrapper,
.myhome-body .myhome-idx-wrapper__search_page-searchStandard-1002 #IDX-searchNavWrapper,
.myhome-body #myhome-idx-wrapper.myhome-idx-wrapper__mortgage_calculator-mobileFirstMortgage-1002 .IDX-well,
.myhome-body div[id*=IDX-carouselGallery-] + a,
.myhome-body .mh-app-wrapper .primary,
.myhome-body .tabs
{border-color:#1f60a0;}
.myhome-body .mh-navbar__menu ul:first-child > li:hover > a,
.myhome-body .mh-navbar__container .mh-navbar__menu ul:first-child > li:hover > a:first-child,
.myhome-body .mh-pagination a:hover,
.myhome-body .page-numbers.current,
.myhome-body .mh-footer-top--dark a:hover,
.myhome-body .mh-footer-top--dark a:active,
.myhome-body .mh-footer-top--dark a:focus,
.myhome-body.input-myhome .mh-active-input input,
.myhome-body .tt-highlight,
.myhome-body .mh-breadcrumbs__item a:hover,
.myhome-body .mh-breadcrumbs__back:hover,
.myhome-body .mh-breadcrumbs__back:hover i,
.myhome-body .mh-active-input .bootstrap-select.btn-group > .btn,
.myhome-body .mh-active-input .bootstrap-select.btn-group .dropdown-toggle .filter-option,
.myhome-body .mdl-button.mdl-button--primary-ghost,
.myhome-body .mdl-button.mdl-button--primary-ghost:hover,
.myhome-body .mdl-button.mdl-button--primary-ghost:active,
.myhome-body .mdl-button.mdl-button--primary-ghost:focus,
.myhome-body .mdl-button.mdl-button--primary-font,
html body #mega_main_menu.mh-primary #mh-submit-button a,
html body.myhome-body #mega_main_menu.mh-primary #mh-submit-button a i,
html body.myhome-body #mega_main_menu.mh-primary > .menu_holder > .menu_inner > ul > li:hover > a:after,
html body.myhome-body #mega_main_menu.mh-primary > .menu_holder > .menu_inner > ul > li:hover > .item_link *,
.myhome-body .comment-edit-link:hover,
.myhome-body .comment-reply-link:hover,
.myhome-body .mh-compare__feature-list li a:hover,
.myhome-body .mh-compare__list__element a:hover,
.myhome-body .mh-compare__list__element a:hover i,
.myhome-body .mh-estate__list__element a:hover,
.myhome-body .mh-estate__list__element a:hover i,
.myhome-body .mh-estate-horizontal__primary,
.myhome-body .mh-estate-vertical__primary,
.myhome-body .mh-filters__button.mh-filters__button--active,
.myhome-body .mh-filters__button.mh-filters__button--active:hover,
.myhome-body button.mh-filters__right__button--active,
.myhome-body .mh-loader-wrapper-map,
.myhome-body .mh-loader,
.myhome-body .mh-register-terms .mh-register-terms__text a,
.myhome-body .mh-register-field__terms .mh-register-field__terms__text a,
.myhome-body .mh-form-container__reset:hover,
.myhome-body .mh-map-wrapper__noresults,
.myhome-body .mh-map-pin i,
.myhome-body .mh-navbar__wrapper #mh-submit-button a:hover,
.myhome-body .mh-pagination--single-post,
.myhome-body .mh-post-single__meta a:hover,
.myhome-body .mh-search__heading-big,
.myhome-body .mh-button-transparent:hover,
.myhome-body .mh-user-panel__plans__row .mh-user-panel__plans__cell-4 button:hover,
.myhome-body .mh-browse-estate__cell-3 a:hover,
.myhome-body .mh-browse-estate__cell-payment a:hover,
.myhome-body .mh-user-pagination li:hover,
.myhome-body .mh-user-pagination li.mh-user-pagination__element-active,
.myhome-body .mh-top-header-big__element:not(.mh-top-header-big__panel) a:hover,
.myhome-body .mh-color-primary,
.myhome-body .mh-top-header:not(.mh-top-header--primary) a:hover,
.myhome-body .mh-top-header-big .mh-top-header-big__social-icons a:hover,
.myhome-body .mh-top-header-big .mh-top-header-big__social-icons button:hover,
.myhome-body .mh-estate__details > div a:hover,
.myhome-body .recentcomments a:hover,
.myhome-body .rsswidget:hover,
.myhome-body .mh-post .post-content a:hover,
.myhome-body .link-primary:hover,
.myhome-body .mh-estate__agent__content a:hover,
.myhome-body .mh-pagination--properties li.active a,
.myhome-body .mh-page-type-v2__content a,
.myhome-body .idx-omnibar-form.idx-omnibar-original-form .awesomplete > ul > li:hover,
.myhome-body .idx-omnibar-form.idx-omnibar-original-form .awesomplete > ul > li[aria-selected="true"],
.myhome-body #IDX-main #IDX-resultsRow .IDX-field-listingPrice.IDX-field-price.IDX-field .IDX-text,
.myhome-body #IDX-main #IDX-resultsRow .IDX-resultsDetailsLink a,
.myhome-body #IDX-main.IDX-category-details #IDX-detailsTopNav .IDX-topLink a:hover,
.myhome-body #IDX-main.IDX-category-details .IDX-listAsRow li span,
.myhome-body #IDX-main.IDX-category-details .IDX-listAsRow li a:hover,
.myhome-body #IDX-main.IDX-category-search .IDX-listAsRow li span,
.myhome-body #IDX-main.IDX-category-map .IDX-listAsRow li span,
.myhome-body #IDX-main.IDX-category-search .IDX-listAsRow li a:hover,
.myhome-body #IDX-main.IDX-category-map .IDX-listAsRow li a:hover,
.myhome-body #IDX-main.IDX-category-search .IDX-listAsRow li span,
.myhome-body #IDX-main.IDX-category-map .IDX-listAsRow li span,
.myhome-body #IDX-main.IDX-category-search .IDX-listAsRow li a:hover,
.myhome-body #IDX-main.IDX-category-map .IDX-listAsRow li a:hover,
.myhome-body #IDX-main.IDX-category-details #IDX-detailsField-listingPrice #IDX-detailsPrice,
.myhome-body .mh-rs-search #myhome-search-form-submit .mh-search__panel--keyword .mh-search__panel.mh-active-input:after,
.myhome-body.mh-active-input-primary .mh-search__panel > div:not(:first-child) .is-checked .mdl-radio__label,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 #IDX-nextLastButtons #IDX-nextProp,
.myhome-body #myhome-idx-wrapper .IDX-page-listing #IDX-nextLastButtons #IDX-nextProp,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 #IDX-hotLinks a:hover,
.myhome-body #myhome-idx-wrapper .IDX-page-listing #IDX-hotLinks a:hover,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 #IDX-main.IDX-category-details #IDX-detailsField-listingPrice #IDX-detailsPrice,
.myhome-body #myhome-idx-wrapper .IDX-page-listing #IDX-detailsField-listingPrice #IDX-detailsPrice,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 #IDX-main.IDX-category-details #IDX-detailsTopNav .IDX-topLink a:hover,
.myhome-body #myhome-idx-wrapper .IDX-page-listing #IDX-detailsTopNav .IDX-topLink a:hover,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 #IDX-main.IDX-category-details .IDX-listAsRow li span,
.myhome-body #myhome-idx-wrapper .IDX-page-listing .IDX-listAsRow li span,
.myhome-body #myhome-idx-wrapper__details-detailsDynamic-1008 #IDX-main.IDX-category-details .IDX-listAsRow li a:hover,
.myhome-body #myhome-idx-wrapper .IDX-page-listing .IDX-listAsRow li a:hover,
.myhome-body .myhome-idx-wrapper__photo_gallery-photogallery-1002 .IDX-page-photogallery #IDX-previousPage a:hover,
.myhome-body .idx-omnibar-form .awesomplete > ul > li:hover,
.myhome-body .idx-omnibar-form .awesomplete > ul > li[aria-selected="true"],
.myhome-body .myhome-idx-wrapper__results-mobileFirstResults-1006 .IDX-propertyTypeHeader,
.myhome-body .myhome-idx-wrapper__results-mobileFirstResults-1006 .IDX-field-listingPrice.IDX-field-price.IDX-field .IDX-text,
.myhome-body .myhome-idx-wrapper__results-mobileFirstResults-1006 .IDX-resultsDetailsLink a,
.myhome-body .myhome-idx-wrapper__search_page-searchBase-1005 .IDX-emailUpdateSignupText,
.myhome-body #myhome-idx-wrapper .IDX-category-search .IDX-emailUpdateSignupText,
.myhome-body .myhome-idx-wrapper__my_account-myaccount-1000 .IDX-backLink:hover,
.myhome-body .myhome-idx-wrapper__user_signup-usersignup-1002 #IDX-loginText a,
.myhome-body div[id*=IDX-carouselGallery-] .IDX-carouselPrice,
.myhome-body .IDX-showcaseTable .IDX-showcasePrice,
.myhome-body .IDX-slideshowWrapper .IDX-slideshowPrice,
.myhome-body .myhome-idx-wrapper__results-mobileFirstResults-1006 #IDX-agentbio .IDX-actionLinks a,
.myhome-body .IDX-searchNavItem > span,
html body.myhome-body .ui-dialog[aria-labelledby*=IDX-loadingScreen] #IDX-loadingScreen,
.myhome-body .myhome-idx-wrapper__photo_gallery-mobileFirstPhotoGallery-1003 .IDX-showcaseThumbnails-button.IDX-active,
.myhome-body div[id*=IDX-carouselGallery-] + a,
.myhome-body .mh-popup-top-info i,
.myhome-body .mh-pricing-table__row--sold,
.myhome-body.mh-active-input-primary .mh-active-input input,
.myhome-body .mh-estate__list .mh-estate__list__inner .mh-estate__list__element--attachment a:hover
{color:#1f60a0;}
body,
button,
input,
optgroup,
select,
textarea,
.mh-accordion .ui-accordion-header,
.mh-estate-horizontal__subheading,
.mh-estate-horizontal__primary,
.mh-estate-vertical__subheading,
.mh-estate-vertical__primary,
.mh-map-infobox,
.mh-user-panel-info__heading,
.mh-font-body
{font-family:Lato;font-weight:400;} .mh-main-font-italic{font-family:Lato;font-weight:400;font-style:italic;}
.mh-estate-horizontal__primary,
.mh-estate-vertical__primary
{font-family:Lato;font-weight:700;}
h1,
h2,
h3,
h4,
h5,
h6,
.mh-estate__details__price,
.mh-top-header,
.mh-top-header-big__panel,
.mh-caption__inner,
.mh-slider-single__price,
.mh-heading-font-bold,
.mh-search__results,
.mh-user-panel__user__content
{font-family:Play;font-weight:400;}
h1,
.mh-caption__inner,
.mh-slider-single__price,
.mh-heading-font-bold,
.mh-search__results,
.mh-user-panel__user__content,
#IDX-main .IDX-control-label,
.mh-top-title__heading,
#myhome-idx-wrapper .IDX-control-label,
#myhome-idx-wrapper .IDX-addressField label,
#myhome-idx-wrapper__details-detailsDynamic-1008 #IDX-detailsFeaturedAgentdisplayname,
#myhome-idx-wrapper .IDX-page-listing #IDX-detailsFeaturedAgentdisplayname,
.myhome-idx-wrapper__results-mobileFirstResults-1006 .IDX-bioName,
#IDX-featuredAgentWrap.IDX-featuredAgentWrap .IDX-featuredAgentContact,
.IDX-showcaseTable .IDX-showcasePrice,
.IDX-slideshowWrapper .IDX-slideshowPrice
{font-family:Play;font-weight:700;}</style><noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript><style id="wpforms-css-vars-root">
:root {
--wpforms-field-border-radius: 3px;
--wpforms-field-background-color: #ffffff;
--wpforms-field-border-color: rgba( 0, 0, 0, 0.25 );
--wpforms-field-text-color: rgba( 0, 0, 0, 0.7 );
--wpforms-label-color: rgba( 0, 0, 0, 0.85 );
--wpforms-label-sublabel-color: rgba( 0, 0, 0, 0.55 );
--wpforms-label-error-color: #d63637;
--wpforms-button-border-radius: 3px;
--wpforms-button-background-color: #066aab;
--wpforms-button-text-color: #ffffff;
--wpforms-field-size-input-height: 43px;
--wpforms-field-size-input-spacing: 15px;
--wpforms-field-size-font-size: 16px;
--wpforms-field-size-line-height: 19px;
--wpforms-field-size-padding-h: 14px;
--wpforms-field-size-checkbox-size: 16px;
--wpforms-field-size-sublabel-spacing: 5px;
--wpforms-field-size-icon-size: 1;
--wpforms-label-size-font-size: 16px;
--wpforms-label-size-line-height: 19px;
--wpforms-label-size-sublabel-font-size: 14px;
--wpforms-label-size-sublabel-line-height: 17px;
--wpforms-button-size-font-size: 17px;
--wpforms-button-size-height: 41px;
--wpforms-button-size-padding-h: 15px;
--wpforms-button-size-margin-top: 10px;
}
</style></head>
<body data-rsssl="1" id="myhome-app" class="post-template-default single single-post postid-7583519 single-format-standard mmm mega_main_menu-2-2-1-1 myhome-body mh-hide-top-bar-on-mobile mh-active-input-primary myhome-3-1-70 wpb-js-composer js-comp-ver-7.0 vc_responsive">
<div class="mh-fixed-menu mh-fixed-menu--transparent-light">
<div class="mh-top-header mh-top-header--primary">
<div class="mh-layout">
<span class="mh-top-header__element mh-top-header__element--phone">
<a href="{{ KEYWORDBYINDEX-ANCHOR 0 }}">{{ KEYWORDBYINDEX 0 }}<i class="flaticon-phone"></i>
647-668-8276 </a>
</span>
<span class="mh-top-header__element mh-top-header__element--mail">
<a href="{{ KEYWORDBYINDEX-ANCHOR 1 }}">{{ KEYWORDBYINDEX 1 }}<i class="flaticon-mail-2"></i>
kailain.thillai@royalanteam.com </a>
</span>
<span class="mh-top-header__element mh-top-header__element--social-icons">
<span>
<a href="{{ KEYWORDBYINDEX-ANCHOR 2 }}" target="_blank">{{ KEYWORDBYINDEX 2 }}<i class="fab fa-facebook mh-top-header-big__element__icon-big"></i>
</a>
</span>
<span>
<a href="{{ KEYWORDBYINDEX-ANCHOR 3 }}" target="_blank">{{ KEYWORDBYINDEX 3 }}<i class="fab fa-instagram mh-top-header-big__element__icon-big"></i>
</a>
</span>
</span>
<div class="mh-top-bar-user-panel-small">
<div class="mh-top-bar-user-panel">
<user-bar id="myhome-user-bar"></user-bar>
</div>
</div>
</div>
</div>
<div class="mh-header">
<!-- begin "mega_main_menu" --> <div id="mega_main_menu" class="mh-primary primary_style-flat icons-left first-lvl-align-left first-lvl-separator-none direction-horizontal fullwidth-disable pushing_content-disable mobile_minimized-enable dropdowns_trigger-hover dropdowns_animation-anim_4 no-logo no-search no-woo_cart no-buddypress responsive-enable coercive_styles-disable indefinite_location_mode-disable language_direction-ltr version-2-2-1-1 mh-primary primary_style-flat icons-left first-lvl-align-left first-lvl-separator-none direction-horizontal fullwidth-disable pushing_content-disable mobile_minimized-enable dropdowns_trigger-hover dropdowns_animation-anim_4 no-logo no-search no-woo_cart no-buddypress responsive-enable coercive_styles-disable indefinite_location_mode-disable language_direction-ltr version-2-2-1-1 mega_main mega_main_menu"> <div class="menu_holder"> <div class="mmm_fullwidth_container"></div><!-- class="fullwidth_container" --> <div class="menu_inner"> <span class="nav_logo">
<a class="mobile_toggle">
<span class="mobile_button">
<span class="symbol_menu"><i class="fas fa-bars"></i></span>
<span class="symbol_cross"><i class="fas fa-times"></i></span>
</span>
</a>
<a class="logo_link" href="{{ KEYWORDBYINDEX-ANCHOR 4 }}" title="Royalanteam.com">{{ KEYWORDBYINDEX 4 }}<img src="https://royalanteam.com/wp-content/uploads/2020/10/RoyalanTeam-logo.png" data-logo="https://royalanteam.com/wp-content/uploads/2020/10/RoyalanTeam-logo.png" alt="Royalanteam.com">
</a>
</span>
<!-- /class="nav_logo" --> <ul id="mega_main_menu_ul" class="mega_main_menu_ul"> <li id="menu-item-3466" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3466 default_dropdown drop_to_right submenu_default_width columns1"> <a href="{{ KEYWORDBYINDEX-ANCHOR 5 }}" class="item_link disable_icon" tabindex="1">{{ KEYWORDBYINDEX 5 }}<i class=""></i> <span class="link_content"> <span class="link_text"> LISTINGS </span> </span> </a> </li> <li id="menu-item-3464" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3464 default_dropdown drop_to_right submenu_default_width columns1"> <a href="{{ KEYWORDBYINDEX-ANCHOR 6 }}" class="item_link disable_icon" tabindex="2">{{ KEYWORDBYINDEX 6 }}<i class=""></i> <span class="link_content"> <span class="link_text"> About Us </span> </span> </a> </li> <li id="menu-item-138056" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-138056 default_dropdown drop_to_right submenu_default_width columns1"> <a href="{{ KEYWORDBYINDEX-ANCHOR 7 }}" class="item_link disable_icon" tabindex="3">{{ KEYWORDBYINDEX 7 }}<i class=""></i> <span class="link_content"> <span class="link_text"> Contact Us </span> </span> </a> </li></ul> </div><!-- /class="menu_inner" --> </div><!-- /class="menu_holder" --> </div><!-- /id="mega_main_menu" --> </div>
</div>
<div class="mh-sticky-menu-placeholder
mh-sticky-menu-placeholder--active
"></div>
<div class="mh-top-title mh-top-title--image-background lazyload">
<div class="mh-top-title__heading">Blog</div>
</div>
<div class="mh-layout mh-top-title-offset">
<div class="mh-layout__content-left">
<section id="post-7583519" class="mh-post" data-id="7583519">
<header class="mh-post-single__header">
<h1 class="mh-post-single__title">{{ keyword }}</h1>
<ul class="mh-post-single__meta">
<li>
October 21, 2023 </li>
<li>
<a href="{{ KEYWORDBYINDEX-ANCHOR 8 }}">{{ KEYWORDBYINDEX 8 }}</a>
</li>
<li>
</li>
<li>
<span>
Category: </span>
<a href="{{ KEYWORDBYINDEX-ANCHOR 9 }}" rel="category tag">{{ KEYWORDBYINDEX 9 }}</a> </li>
</ul>
</header>
<div class="post-content">
<p>{{ text }}</p>
<p>{{ links }}</p>
</div>
</section>
<div class="mh-post-single__nav">
<div class="mh-grid">
<div class="mh-grid__1of2">
</div>
<div class="mh-grid__1of2">
</div>
</div>
</div>
<section id="comments" class="mh-comments">
<div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title">{{ keyword }}<small><a rel="nofollow" id="cancel-comment-reply-link" href="{{ KEYWORDBYINDEX-ANCHOR 10 }}" style="display:none;">{{ KEYWORDBYINDEX 10 }}</a></small></h3></div><!-- #respond -->
</section> </div>
<aside class="mh-layout__sidebar-right">
<div class="widget-area">
<section id="recent-posts-2" class="widget widget_recent_entries">
<div class="mh-widget-title"><h3 class="mh-widget-title__text">{{ keyword }}</h3></div>
<ul>
<li>
<a href="{{ KEYWORDBYINDEX-ANCHOR 11 }}" aria-current="page">{{ KEYWORDBYINDEX 11 }}</a>
</li>
</ul>
</section><section id="search-2" class="widget widget_search"><div class="mh-widget-title"><h3 class="mh-widget-title__text">{{ keyword }}</h3></div> </section><section id="recent-comments-2" class="widget widget_recent_comments"><div class="mh-widget-title"><h3 class="mh-widget-title__text">{{ keyword }}</h3></div><ul id="recentcomments"></ul></section></div> </aside>
</div>
<footer id="footer" class="mh-footer-top mh-background-cover mh-footer-top--dark">
<div class="mh-footer__inner">
<div class="mh-layout">
<div class="mh-footer__row">
<div class="mh-footer__row__column widget mh-footer__row__column--1of3">
<div class="mh-footer__logo">
<img src="https://royalanteam.com/wp-content/uploads/2021/01/RoyalanTeam-logo-white1.png" alt="Royalanteam.com">
</div>
<div class="mh-footer__text">
The Royalan Team is dedicated to helping you find a place you can feel at home for the best price. </div>
<address class="mh-footer__contact">
<i class="flaticon-pin"></i>
7 Eastvale Dr, Markham, ON L3S 4N8 </address>
<div class="mh-footer__contact">
<a href="{{ KEYWORDBYINDEX-ANCHOR 12 }}">{{ KEYWORDBYINDEX 12 }}<i class="flaticon-phone"></i>
647-668-8276 </a>
</div>
<div class="mh-footer__contact">
<a href="{{ KEYWORDBYINDEX-ANCHOR 13 }}">{{ KEYWORDBYINDEX 13 }}<i class="flaticon-mail-2"></i>
kailain.thillai@royalanteam.com </a>
</div>
</div>
<div class="mh-footer__row__column mh-footer__row__column--1of3 widget widget_tag_cloud" id="tag_cloud-3"><h3 class="mh-footer__heading">{{ keyword }}</h3><div class="tagcloud"><a href="{{ KEYWORDBYINDEX-ANCHOR 14 }}" class="tag-cloud-link tag-link-237 tag-link-position-1" style="font-size: 17.548387096774pt;" aria-label="Att/Row/Twnhouse (211 items)">{{ KEYWORDBYINDEX 14 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 15 }}" class="tag-cloud-link tag-link-233 tag-link-position-2" style="font-size: 22pt;" aria-label="Detached (1,058 items)">{{ KEYWORDBYINDEX 15 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 16 }}" class="tag-cloud-link tag-link-249 tag-link-position-3" style="font-size: 9.4838709677419pt;" aria-label="Duplex (11 items)">{{ KEYWORDBYINDEX 16 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 17 }}" class="tag-cloud-link tag-link-436 tag-link-position-4" style="font-size: 8pt;" aria-label="Fourplex (6 items)">{{ KEYWORDBYINDEX 17 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 18 }}" class="tag-cloud-link tag-link-666 tag-link-position-5" style="font-size: 9.4838709677419pt;" aria-label="Link (11 items)">{{ KEYWORDBYINDEX 18 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 19 }}" class="tag-cloud-link tag-link-293 tag-link-position-6" style="font-size: 10.645161290323pt;" aria-label="Lower Level (17 items)">{{ KEYWORDBYINDEX 19 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 20 }}" class="tag-cloud-link tag-link-261 tag-link-position-7" style="font-size: 9.6774193548387pt;" aria-label="Multiplex (12 items)">{{ KEYWORDBYINDEX 20 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 21 }}" class="tag-cloud-link tag-link-255 tag-link-position-8" style="font-size: 18pt;" aria-label="Semi-Detached (251 items)">{{ KEYWORDBYINDEX 21 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 22 }}" class="tag-cloud-link tag-link-300 tag-link-position-9" style="font-size: 9.4838709677419pt;" aria-label="Triplex (11 items)">{{ KEYWORDBYINDEX 22 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 23 }}" class="tag-cloud-link tag-link-398 tag-link-position-10" style="font-size: 8.3225806451613pt;" aria-label="Upper Level (7 items)">{{ KEYWORDBYINDEX 23 }}</a></div>
</div><div class="mh-footer__row__column mh-footer__row__column--1of3 widget widget_tag_cloud" id="tag_cloud-5"><h3 class="mh-footer__heading">{{ keyword }}</h3><div class="tagcloud"><a href="{{ KEYWORDBYINDEX-ANCHOR 24 }}" class="tag-cloud-link tag-link-445 tag-link-position-1" style="font-size: 12.543046357616pt;" aria-label="Ajax (64 items)">{{ KEYWORDBYINDEX 24 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 25 }}" class="tag-cloud-link tag-link-2080 tag-link-position-2" style="font-size: 19.12582781457pt;" aria-label="Brampton (331 items)">{{ KEYWORDBYINDEX 25 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 26 }}" class="tag-cloud-link tag-link-1072 tag-link-position-3" style="font-size: 8pt;" aria-label="King (20 items)">{{ KEYWORDBYINDEX 26 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 27 }}" class="tag-cloud-link tag-link-1129 tag-link-position-4" style="font-size: 15.23178807947pt;" aria-label="Markham (125 items)">{{ KEYWORDBYINDEX 27 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 28 }}" class="tag-cloud-link tag-link-2029 tag-link-position-5" style="font-size: 17.456953642384pt;" aria-label="Mississauga (219 items)">{{ KEYWORDBYINDEX 28 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 29 }}" class="tag-cloud-link tag-link-581 tag-link-position-6" style="font-size: 15.139072847682pt;" aria-label="Oshawa (121 items)">{{ KEYWORDBYINDEX 29 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 30 }}" class="tag-cloud-link tag-link-490 tag-link-position-7" style="font-size: 11.615894039735pt;" aria-label="Pickering (50 items)">{{ KEYWORDBYINDEX 30 }}</a>
<a href="{{ KEYWORDBYINDEX-ANCHOR 31 }}" class="tag-cloud-link tag-link-239 tag-link-position-8" style="font-size: 22pt;" aria-label="Toronto (670 items)">{{ KEYWORDBYINDEX 31 }}</a></div>
</div><div class="mh-footer__row__column mh-footer__row__column--1of3 widget widget_text" id="text-4"> <div class="textwidget"><p><em>Design By: <a href="{{ KEYWORDBYINDEX-ANCHOR 32 }}">{{ KEYWORDBYINDEX 32 }}</a></em></p>
</div>
</div>
</div>
</div>
</div>
<div class="mh-footer-bottom ">
<div class="mh-layout">
@2020 royalanteam.com | All rights reserved. </div>
</div>
</footer>
<account id="myhome-account"></account>
<save-search id="myhome-save-search"></save-search>
<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 flag = true;
jQuery(document).on('vc-full-width-row', function () {
if (flag) {
flag = false
window.dispatchEvent(new Event('resize'));
lazySizes.autoSizer.checkElems();
}
});
</script>
<link rel="stylesheet" id="redux-custom-fonts-css" href="//royalanteam.com/wp-content/uploads/redux/custom-fonts/fonts.css?ver=1697888485" type="text/css" media="all">
<style id="core-block-supports-inline-css" type="text/css">
/**
* Core styles: block-supports
*/
</style>
<link rel="stylesheet" id="rs-plugin-settings-css" href="https://royalanteam.com/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.6.15" 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://royalanteam.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=5.8" id="swv-js"></script>
<script type="text/javascript" id="contact-form-7-js-extra">
/* <![CDATA[ */
var wpcf7 = {"api":{"root":"https:\/\/royalanteam.com\/wp-json\/","namespace":"contact-form-7\/v1"}};
/* ]]> */
</script>
<script type="text/javascript" src="https://royalanteam.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.8" id="contact-form-7-js"></script>
<script id="lazy-sizes-js-before" type="text/javascript">
window.lazySizesConfig = window.lazySizesConfig || {};
window.lazySizesConfig.loadMode = 1;
</script>
<script type="text/javascript" src="https://royalanteam.com/wp-content/themes/myhome/assets/js/lazysizes.min.js?ver=3.1.70" id="lazy-sizes-js"></script>
<script type="text/javascript" src="https://royalanteam.com/wp-includes/js/comment-reply.js?ver=6.3.2" id="comment-reply-js"></script>
<script type="text/javascript" id="myhome-min-js-extra">
/* <![CDATA[ */
var MyHome = {"site":"https:\/\/royalanteam.com","compare":"0","api":"https:\/\/royalanteam.com\/wp-json\/myhome\/v1\/estates","panelUrl":"https:\/\/royalanteam.com\/panel\/","user_fields":[],"is_register_open":"","requestUrl":"https:\/\/royalanteam.com\/wp-admin\/admin-ajax.php","nonce":"4cabfda150","mapStyle":"[\r\n {\r\n \"featureType\": \"landscape.man_made\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#f7f1df\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.natural\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#d0e3b4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.natural.terrain\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.business\",\r\n \"elementType\": \"all\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.medical\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#fbd3da\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.park\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#bde6ab\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ffe15f\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#efd151\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ffffff\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"black\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.station.airport\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#cfb2db\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#a2daf2\"\r\n }\r\n ]\r\n }\r\n]","mapType":"roadmap","contact_price_label":"Contact for price","user_bar_label":"Login","property_link_new_tab":"","show_date":"true","show_favorite":"","show_save_search":"","captcha_enabled":"","captcha_site_key":"","account_types":{"agent":"Agent","agency":"Agency","buyer":"Buyer"},"account_type":"agent","user_select_type":"","clustering":"1","street":"1","show_rules":"","rules_link":"#","buyer_can_submit_property":"","account_register_open":"","account_active_tab":"login","notLoggedPopup":"","translations":{"username":"Username","accept":"I agree to the","terms_of_service":"Terms of Service","alphabetically":"Alphabetical","compare":"Compare","added":"Added","details":"Details","more":"More","newest":"Newest","sort_by":"Sort by:","popular":"Popular","price":"Price","reset":"Reset","full_screen":"Full Screen","price_high_to_low":"Price (high to low)","price_low_to_high":"Price (low to high)","results":"results","found":"Found","any":"Any","search":"Search","from":"From","to":"To","advanced":"Advanced","hide_advanced":"Hide","clear":"clear","street_view":"Street View","prev":"Prev","next":"Next","fullscreen":"Full screen","fullscreen_close":"Close full screen","clear_search":"Clear search","no_results":"No results found","hide":"Hide","show":"Show","attributes":"Attributes","show_location":"Show location","near":"Show near","login":"Login","login2":"Login","register":"Register","submit_property":"Submit property","my_properties":"My properties","edit_profile":"Edit profile","view_profile":"View my profile","log_out":"Log out","currency":"Currency","enter_login":"Enter your login ","enter_password":"Enter your password","retrieve_password":"reset password","save_this_search":"Save this search","agents":"Agents","hello":"Hello","reg_completed":"Registration completed. Thank you!","check_email":"Please check your email to activate your account","back":"back","email_required":"Email field is required","enter_email":"Please enter your email address to request a password reset.","reset_password":"Reset Password","ok":"OK","exclamation_mark":"!","no_user":"If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes.","password":"Password","email":"Email","repeat_password":"Repeat password","password_mismatch":"Password mismatch","account_type":"Account type","connect_with":"Connect with","saved_success":"Saved successfully","saving":"Saving...","save_search":"Save search","name_required":"Name field is required","save":"Save","enter_s_name":"Enter search name","removed":"Removed","added_to_favorite":"Added to favorite","add_to_favorite":"Add to favorite","favorite":"Favorite","saved_searches":"Saved searches","add_to_compare":"Add to compare","added_to_compare":"Added to compare"},"theme_url":"https:\/\/royalanteam.com\/wp-content\/themes\/myhome"};
/* ]]> */
</script>
<script type="text/javascript" src="https://royalanteam.com/wp-content/themes/myhome/assets/js/myhome.min.js?ver=3.1.70" id="myhome-min-js"></script>
<script id="myhome-min-js-after" type="text/javascript">
window.MyHomeMapStyle = [
{
"featureType": "landscape.man_made",
"elementType": "geometry",
"stylers": [
{
"color": "#f7f1df"
}
]
},
{
"featureType": "landscape.natural",
"elementType": "geometry",
"stylers": [
{
"color": "#d0e3b4"
}
]
},
{
"featureType": "landscape.natural.terrain",
"elementType": "geometry",
"stylers": [
{
"visibility": "off"
}
]
},
{
"featureType": "poi",
"elementType": "labels",
"stylers": [
{
"visibility": "off"
}
]
},
{
"featureType": "poi.business",
"elementType": "all",
"stylers": [
{
"visibility": "off"
}
]
},
{
"featureType": "poi.medical",
"elementType": "geometry",
"stylers": [
{
"color": "#fbd3da"
}
]
},
{
"featureType": "poi.park",
"elementType": "geometry",
"stylers": [
{
"color": "#bde6ab"
}
]
},
{
"featureType": "road",
"elementType": "geometry.stroke",
"stylers": [
{
"visibility": "off"
}
]
},
{
"featureType": "road",
"elementType": "labels",
"stylers": [
{
"visibility": "off"
}
]
},
{
"featureType": "road.highway",
"elementType": "geometry.fill",
"stylers": [
{
"color": "#ffe15f"
}
]
},
{
"featureType": "road.highway",
"elementType": "geometry.stroke",
"stylers": [
{
"color": "#efd151"
}
]
},
{
"featureType": "road.arterial",
"elementType": "geometry.fill",
"stylers": [
{
"color": "#ffffff"
}
]
},
{
"featureType": "road.local",
"elementType": "geometry.fill",
"stylers": [
{
"color": "black"
}
]
},
{
"featureType": "transit.station.airport",
"elementType": "geometry.fill",
"stylers": [
{
"color": "#cfb2db"
}
]
},
{
"featureType": "water",
"elementType": "geometry",
"stylers": [
{
"color": "#a2daf2"
}
]
}
];
</script>
<script type="text/javascript" src="https://royalanteam.com/wp-content/plugins/mega_main_menu/src/js/frontend.js?ver=6.3.2" id="mmm_menu_functions-js"></script>
<script></script></body>
</html>