Help
RSS
API
Feed
Maltego
Contact
Domain > caravanseraivirtual.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2023-08-02
44.235.255.98
(
ClassC
)
2026-02-22
44.239.119.22
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: awselb/2.0Date: Sun, 22 Feb 2026 19:15:07 GMTContent-Type: text/htmlContent-Length: 134Connection: keep-aliveLocation: https://caravanseraivirtual.com:443/ html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Sun, 22 Feb 2026 19:15:07 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveServer: Apache/2.4.62 (Amazon Linux)Cache-Control: no-cacheWPO-Cache-Status: cachedLast-Modified: Sun, 22 Feb 2026 18:45:57 GMT !DOCTYPE html>html langen-US>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1> meta http-equivX-UA-Compatible contentIEedge> link relprofile hrefhttp://gmpg.org/xfn/11>title>Caravanserai – A place made from friends to friends/title>meta namerobots contentnoindex, nofollow /> style>img:is(sizesauto i, sizes^auto, i) { contain-intrinsic-size: 3000px 1500px }/style> link relalternate typeapplication/rss+xml titleCaravanserai » Feed hrefhttps://caravanseraivirtual.com/feed/ />link relalternate typeapplication/rss+xml titleCaravanserai » Comments Feed hrefhttps://caravanseraivirtual.com/comments/feed/ />script typetext/javascript>/* !CDATA */window._wpemojiSettings {baseUrl:https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/,ext:.png,svgUrl:https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/,svgExt:.svg,source:{wpemoji:https:\/\/caravanseraivirtual.com\/wp-includes\/js\/wp-emoji.js?ver6.7.4,twemoji:https:\/\/caravanseraivirtual.com\/wp-includes\/js\/twemoji.js?ver6.7.4}};/** * @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 doesnt 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 doesnt 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 doesnt 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: /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) Bird * 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. * 0x2B1B Large Black Square * * 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, \uD83D\uDC26\u200D\u2B1B, // as the zero-width joiner sequence \uD83D\uDC26\u200B\u2B1B // 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 doesnt 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 idwp-emoji-styles-inline-css typetext/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 relstylesheet idwp-block-library-css hrefhttps://caravanseraivirtual.com/wp-includes/css/dist/block-library/style.css?ver6.7.4 typetext/css mediaall />style idwp-block-library-theme-inline-css typetext/css>.wp-block-audio :where(figcaption){ color:#555; font-size:13px; text-align:center;}.is-dark-theme .wp-block-audio :where(figcaption){ color:#ffffffa6;}.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 :where(figcaption){ color:#555; font-size:13px; text-align:center;}.is-dark-theme .wp-block-embed :where(figcaption){ color:#ffffffa6;}.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:#ffffffa6;}:root :where(.wp-block-image figcaption){ color:#555; font-size:13px; text-align:center;}.is-dark-theme :root :where(.wp-block-image figcaption){ color:#ffffffa6;}.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:where(.has-text-align-right){ border-left:none; border-right:.25em solid; padding-left:0; padding-right:1em;}.wp-block-quote:where(.has-text-align-center){ border:none; padding-left:0;}.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote:where(.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 :where(figcaption){ color:#555; font-size:13px; text-align:center;}.is-dark-theme .wp-block-table :where(figcaption){ color:#ffffffa6;}.wp-block-video :where(figcaption){ color:#555; font-size:13px; text-align:center;}.is-dark-theme .wp-block-video :where(figcaption){ color:#ffffffa6;}.wp-block-video{ margin:0 0 1em;}:root :where(.wp-block-template-part.has-background){ margin-bottom:0; margin-top:0; padding:1.25em 2.375em;}/style>style idclassic-theme-styles-inline-css typetext/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 wont 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 idglobal-styles-inline-css typetext/css>:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--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--color--background: #fdf5e8;--wp--preset--color--navigation: #e9ceb0;--wp--preset--color--footer: #e9ceb0;--wp--preset--color--primary: #282d30;--wp--preset--color--special-heading: #8fdfff;--wp--preset--color--link: #277982;--wp--preset--color--link-hover: #8fdfff;--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-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){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;}: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;}:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}/style>link relstylesheet idcookie-law-info-css hrefhttps://caravanseraivirtual.com/wp-content/plugins/cookie-law-info/legacy/public/css/cookie-law-info-public.css?ver3.2.8 typetext/css mediaall />link relstylesheet idcookie-law-info-gdpr-css hrefhttps://caravanseraivirtual.com/wp-content/plugins/cookie-law-info/legacy/public/css/cookie-law-info-gdpr.css?ver3.2.8 typetext/css mediaall />link relstylesheet idtrp-language-switcher-style-css hrefhttps://caravanseraivirtual.com/wp-content/plugins/translatepress-multilingual/assets/css/trp-language-switcher.css?ver2.9.5 typetext/css mediaall />link relstylesheet idstyle-css hrefhttps://caravanseraivirtual.com/wp-content/themes/caravanserai/style.css?ver6.7.4 typetext/css mediaall />link relstylesheet idwp-bootstrap-starter-bootstrap-css-css hrefhttps://caravanseraivirtual.com/wp-content/themes/wp-bootstrap-starter/inc/assets/css/bootstrap.min.css?ver6.7.4 typetext/css mediaall />link relstylesheet idwp-bootstrap-starter-fontawesome-cdn-css hrefhttps://caravanseraivirtual.com/wp-content/themes/wp-bootstrap-starter/inc/assets/css/fontawesome.min.css?ver6.7.4 typetext/css mediaall />link relstylesheet idwp-bootstrap-starter-style-css hrefhttps://caravanseraivirtual.com/wp-content/themes/caravanserai/style.css?ver6.7.4 typetext/css mediaall />link relstylesheet idwp-bootstrap-starter-caravanserai-css hrefhttps://caravanseraivirtual.com/wp-content/themes/wp-bootstrap-starter/inc/assets/css/presets/theme-option/caravanserai.css?ver6.7.4 typetext/css mediaall />script typetext/javascript srchttps://caravanseraivirtual.com/wp-includes/js/jquery/jquery.js?ver3.7.1 idjquery-core-js>/script>script typetext/javascript srchttps://caravanseraivirtual.com/wp-includes/js/jquery/jquery-migrate.js?ver3.4.1 idjquery-migrate-js>/script>script typetext/javascript idcookie-law-info-js-extra>/* !CDATA */var Cli_Data {nn_cookie_ids:,cookielist:,non_necessary_cookies:,ccpaEnabled:,ccpaRegionBased:,ccpaBarEnabled:,strictlyEnabled:necessary,obligatoire,ccpaType:gdpr,js_blocking:1,custom_integration:,triggerDomRefresh:,secure_cookies:};var cli_cookiebar_settings {animate_speed_hide:500,animate_speed_show:500,background:#FFF,border:#b1a6a6c2,border_on:,button_1_button_colour:#f48847,button_1_button_hover:#c36d39,button_1_link_colour:#fff,button_1_as_button:1,button_1_new_win:,button_2_button_colour:#333,button_2_button_hover:#292929,button_2_link_colour:#444,button_2_as_button:,button_2_hidebar:,button_3_button_colour:#3566bb,button_3_button_hover:#2a5296,button_3_link_colour:#fff,button_3_as_button:1,button_3_new_win:,button_4_button_colour:#000,button_4_button_hover:#000000,button_4_link_colour:#333333,button_4_as_button:,button_7_button_colour:#61a229,button_7_button_hover:#4e8221,button_7_link_colour:#fff,button_7_as_button:1,button_7_new_win:,font_family:inherit,header_fix:1,notify_animate_hide:1,notify_animate_show:,notify_div_id:#cookie-law-info-bar,notify_position_horizontal:right,notify_position_vertical:top,scroll_close:,scroll_close_reload:,accept_close_reload:,reject_close_reload:,showagain_tab:,showagain_background:#fff,showagain_border:#000,showagain_div_id:#cookie-law-info-again,showagain_x_position:100px,text:#333333,show_once_yn:,show_once:10000,logging_on:,as_popup:,popup_overlay:1,bar_heading_text:,cookie_bar_as:banner,popup_showagain_position:bottom-right,widget_position:left};var log_object {ajax_url:https:\/\/caravanseraivirtual.com\/wp-admin\/admin-ajax.php};/* > *//script>script typetext/javascript srchttps://caravanseraivirtual.com/wp-content/plugins/cookie-law-info/legacy/public/js/cookie-law-info-public.js?ver3.2.8 idcookie-law-info-js>/script>!--if lt IE 9>script typetext/javascript srchttps://caravanseraivirtual.com/wp-content/themes/wp-bootstrap-starter/inc/assets/js/html5.js?ver3.7.0 idhtml5hiv-js>/script>!endif-->link relhttps://api.w.org/ hrefhttps://caravanseraivirtual.com/wp-json/ />link relalternate titleJSON typeapplication/json hrefhttps://caravanseraivirtual.com/wp-json/wp/v2/pages/1272 />link relEditURI typeapplication/rsd+xml titleRSD hrefhttps://caravanseraivirtual.com/xmlrpc.php?rsd />meta namegenerator contentWordPress 6.7.4 />link relcanonical hrefhttps://caravanseraivirtual.com/ />link relshortlink hrefhttps://caravanseraivirtual.com/ />link relalternate titleoEmbed (JSON) typeapplication/json+oembed hrefhttps://caravanseraivirtual.com/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Fcaravanseraivirtual.com%2F />link relalternate titleoEmbed (XML) typetext/xml+oembed hrefhttps://caravanseraivirtual.com/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Fcaravanseraivirtual.com%2F&formatxml />!-- HFCM by 99 Robots - Snippet # 1: Memberspace Install -->script>var MemberSpace window.MemberSpace || {subdomain: caravanseraivirtual1, domain: member.caravanseraivirtual.com};(function(d){ var s d.createElement(script); s.src https://cdn.memberspace.com/scripts/widgets.js; var e d.getElementsByTagName(script)0; e.parentNode.insertBefore(s,e);}(document));/script>!-- /end HFCM by 99 Robots -->!-- HFCM by 99 Robots - Snippet # 3: Disallow -->meta namerobots contentnoindex>meta namegooglebot contentnoindex>meta nameduckduckbot contentnoindex>meta namebingbot contentnoindex>!-- /end HFCM by 99 Robots -->link relalternate hreflangen-US hrefhttps://caravanseraivirtual.com//>link relalternate hreflanges-ES hrefhttps://caravanseraivirtual.com/es//>link relalternate hreflangen hrefhttps://caravanseraivirtual.com//>link relalternate hreflanges hrefhttps://caravanseraivirtual.com/es//>link relpingback hrefhttps://caravanseraivirtual.com/xmlrpc.php> style typetext/css> #page-sub-header { background: #fff; } /style> style typetext/css>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}/style>style typetext/css idcustom-background-css>body.custom-background { background-color: #fdf5e8; }/style> link relicon hrefhttps://caravanseraivirtual.com/wp-content/uploads/2021/06/logo-caravanserai-text-150.png sizes32x32 />link relicon hrefhttps://caravanseraivirtual.com/wp-content/uploads/2021/06/logo-caravanserai-text-150.png sizes192x192 />link relapple-touch-icon hrefhttps://caravanseraivirtual.com/wp-content/uploads/2021/06/logo-caravanserai-text-150.png />meta namemsapplication-TileImage contenthttps://caravanseraivirtual.com/wp-content/uploads/2021/06/logo-caravanserai-text-150.png /> style typetext/css idwp-custom-css> .wp-image-556, .wp-image-554, .wp-image-557, .wp-image-498, .wp-image-699, .wp-image-705, .wp-image-593, .wp-image-591, .wp-image-594, .wp-image-723, .wp-image-724, .wp-image-747, .wp-image-565, .wp-image-756, .wp-image-805, .wp-image-923 { height:auto;}.wp-q-logo { max-width: 80% !important;}.wp-image-1886 { max-width: 40% !important; height: auto;}/* Custom Backgrounds (Ej:page-id-XXX) */.past-events-gif { padding-top: 2em;}.virtual-map-gif { height: auto; width: 75%; margin-left: auto; margin-right: auto; }.mines-light-gif { padding-left: 250px}.youtube-video{ height:auto;}.wp-image-1096 { width: 70%; height: auto}.page-id-357 .site-content { background-image: url(https://caravanseraivirtual.com/wp-content/uploads/2021/04/80826511_10156459498000286_3076462121819570176_o-1.jpg); background-size: contain;}.page-id-357 { color:#e9ceb0 !important}.post-1272 { background-image: url(https://caravanseraivirtual.com/wp-content/uploads/2021/04/entrance_door.png); background-size: contain; background-repeat: no-repeat !important; background-size: cover !important; background-attachment: fixed !important; background-position: center;}.wp-image-703 { height:auto; max-width: 110% !important; padding-top: 1vw;}.page-id-1875 .site-content { background-image: url(https://caravanseraivirtual.com/wp-content/uploads/2021/05/bluebk.png); background-size: contain; color: yellow; background-repeat: no-repeat !important; background-size: cover !important; background-attachment: fixed !important; background-position: center;}.page-id-1915 .site-content { background-image: url(https://caravanseraivirtual.com/wp-content/uploads/2021/05/bluebk.png); background-size: contain; color: yellow; background-repeat: no-repeat !important; background-size: cover !important; background-attachment: fixed !important; background-position: center;}.page-id-1917 .site-content { background-image: url(https://caravanseraivirtual.com/wp-content/uploads/2021/05/bluebk.png); background-size: contain; color: yellow; background-repeat: no-repeat !important; background-size: cover !important; background-attachment: fixed !important; background-position: center;}.wp-image-1800 { height: auto;}.youtube-video iframe { height: auto;}/* Home Banner Styles */.banner-image { width: 100%; /* for IE 6 */ height:100%; background-image: url(https://caravanseraivirtual.com/wp-content/uploads/2021/05/bluebk.png); background-position: center center; background-repeat: no-repeat; padding: 15px 55px; padding-bottom: 3vw;}@media (max-width: 1024px) { .banner-image { background-position:center top; background-size:cover; border-radius: 3px; }}@media (min-width: 580px) { .banner-image { height: auto; }}.banner-image img { width: 100%; height:auto; }.banner-image-text { width: 100%; color: white;}.banner-image-text-dn1,.banner-image-text-dn2{ font-family: var(--global--font-primary);}.banner-image-text-dn1 { color: rgb(253, 245, 232); font-size: 2em; margin: 0rem; font-weight: 600}.banner-image-text-dn2 { color: rgb(253, 245, 232); font-size: 3em; margin: 0rem; font-weight: 600}.banner-image-text-dn3 { color: rgb(255, 255, 255); font-size: 1.7em; font-family: var(--global--font-secondary); font-weight: bold; margin: 0rem;}.banner-image-text-dn4, .banner-image-text-dn5 { color: rgb(255, 255, 255); font-size: 1.7em; font-family: var(--global--font-secondary); font-weight: 300; margin: 0rem;}.banner-buttons-section { width:100%; height: auto; padding: 25px 0px;}.banner-buttons-section .banner-buttons-wrapper { width:100%; height: auto; padding: 10px 0px;}.join-width { width: 66%;}.banner-columns { column-count: 3;}.column { float: left; width: 37%;}.column-eq { float: left; width: 33.3%;}.banner-dn { color: yellow; padding-left: 3vw;}/* Clear floats after the columns */.row:after { content: ; display: table; clear: both;}/* Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */@media screen and (max-width: 600px) { .column { width: 100%; }}/* Daria Nur Buttons Banner*/.medium-btn{ width:100%; max-width:230px; border-radius:4px;}.medium-btn a { padding: 20px 15px;}.small-btn { border-radius: 15px; margin: 1vw;}.red-btn { background-color: red; color: white; font-weight: bold;}.teal-btn { background-color: teal; color: white; font-weight: bold; width: auto; padding-left: 2vw; padding-right: 2vw;}.yellow-btn { background-color: yellow; color: black !important; font-weight: bold; padding-left: 2vw; padding-right: 2vw;}.center-btn { display: center}/*Force a tag in buttons to be*/.button-a-green-color { color: !important;}/*------------------------------------- -+ MEMBERSPACE LOGIN STYLES--------------------------------------*/.modal-wrapper { background-color: rgb(253, 245, 230) !important; border-radius: 38px !important;}/*------------------------------------- -+ Illustrated Calendar STYLES--------------------------------------*/.hidden { visibility: hidden !important; height:0px;}.calendar-section { display:flex; flex-direction: row; justify-content: flex-start; align-items: stretch; flex-wrap: wrap;}.calendar-activity { min-width: 360px; max-width: 540px; display:flex; flex-direction: column; justify-content: center; align-items: stretch; padding: 4%; }.activity-image{ flex-basis: 50%; width: 100%; margin-bottom: 3.5%;}.activity-image img { width:100%;}.new-activity-title { color:red; font-weight:bolder; font-size:150%; text-align:center;}.calendar-nav-wraper { min-height: 10vw;}.calendar-nav { display: flex; flex-direction: row; flex-wrap: wrap; padding: 2vw; justify-content: space-between;}.calendar-nav-item { list-style: none; padding: 1vw 1.7vw; background-color: #b9c8b6; border: 3px solid #698064; border-radius: 25px; margin: 0.5vw;}.calendar-nav-item a,.calendar-nav-item a:active, .calendar-nav-item a:visited { color: var(--global--color-text);}.activity-container { display:flex; justify-content: start; height: 150px;}.calendar-title{ border-bottom: 5px solid #698064; color: #698064;; margin-bottom: 0px; padding: 1.5vw 5vw; border-radius: 5px 5px 0px 0px; font-family: Itc Avant Garde Std;}.activity-section { padding:0; border-radius: 3px; margin-bottom: 3vw;}.activity-section h2 { /*#b3442c*/}.activity-section-title { color:red; font-weight:bolder; font-size:150%; text-align:center;}.back-container { position:absolute; bottom: 10vw; left: 6vw; width: 30px; height:30px; z-index: 10000;}.back-border { border-radius: 50%; border: 3px solid var(--global-color-text);}.centered-box { margin: 0 auto;}/*------------------------------------- -+ PAST EVENTS PAGE--------------------------------------*/.page-id-329 .entry-header,.page-id-3108 .entry-header{ width: 100%; height: 10vh;}.page-id-329 .entry-title ,.page-id-3108 .entry-title{ display: block !important; text-align: center; height:100%;}.video-heading{ font-size: 100%; font-family: var(--global--font-secondary); margin-bottom: 10px; color: var(--dark); color: #0f0f0f; font-weight: normal; text-transform: uppercase; letter-spacing: 0.09EM; }.h2-pe { font-size: 250%; line-height: 1.2712; font-family: Ivy Mode; margin-top:0px; margin-bottom:0px;}/*------------------------------------- -+ Reruns Sections--------------------------------------*/.reruns-header { display:flex; flex-direction:row;}.reruns-header h2 { font-size: 400%;}.reruns-header img { max-height:150px;}.reruns-description { padding-left: 10%;}.reruns-buttons-section { width:100%; min-height: 300px; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:10px;} .reruns-buttons-section .green-button { width:100%; max-width: 400px; padding:2%; background: #277A82; border-radius: 12px; text-align:center; color: #FFF; font-family: Ivy Mode}.reruns-video-wrapper { width:100%; height:100%; min-height:300px; padding:2%; background-color:rgba(217, 182, 126, 1); border-radius: 16px;}.reruns-video-wrapper iframe { width:100%; height:100%; border-radius: 12px;}/*------------------------------------- -+ Utilities--------------------------------------*/h2 { font-size: min(calc((3.3 - 1) * 1.2vw + 1rem),56px);}.title-font { font-size: min(calc((2.6 - 1) * 1.2vw + 1rem),48px);}.bottom-margin-0 { margin-bottom: 0;}.top-margin-0 { margin-top: 0;}.bottom-margin-10 { margin-bottom: 10px;}.bottom-margin-20 { margin-bottom: 12px;}.bottom-margin-50 { margin-bottom: 50px;}.hide-block { display: none;}/* Calendar box container holding the image and the text */.box-container { position: relative; text-align: center;}.box-text { font-size: min(calc(13px + 0.390625vw),21px); font-weight: bolder; font-family: verdana, arial, sans-serif; text-align: left; position: absolute; bottom: 8%; left: 8%;}.img-fit-width { width:100% !important; height:auto;}.max-height-350,.max-height-350 *{ max-height:350px !important;}.max-height-450,.max-height-450 *{ max-height:450px !important;}/* For Youtube video in colums*/.max-height-vh { max-height: 45vh;}.max-height-vh iframe { max-height:45vh;}@media (width:23em) { .max-height-vh { max-height: 30vh; } .max-height-vh iframe { max-height:30vh; }}@media (max-width:560px){ .hide-in-mb { visibility: hidden; height:0px; }}@media (min-width:561px){ .hide-from-tb { visibility: hidden; height:0px; }} /style> /head>body classhome page-template page-template-blank-page-with-container page-template-blank-page-with-container-php page page-id-1272 custom-background translatepress-en_US theme-preset-active >div idpage classsite> section idprimary classcontent-area> div idmain classsite-main rolemain> div classcontainer> article idpost-1272 classpost-1272 page type-page status-publish hentry> div classentry-content> div styleheight:500px aria-hiddentrue classwp-block-spacer>/div>div styleheight:30px aria-hiddentrue classwp-block-spacer>/div>div classcontainer> div classrow> div classcol-sm-5> /div> div classcol-sm-2> a classblue-btn full-width-btn hrefhttps://caravanseraivirtual.com/language/>LOG IN/a>span classhome-btn-span> /span>/div> div classcol-sm-5> !-- HFCM by 99 Robots - Snippet # 1: Memberspace Install -->script>var MemberSpace window.MemberSpace || {subdomain: caravanseraivirtual1, domain: member.caravanseraivirtual.com};(function(d){ var s d.createElement(script); s.src https://cdn.memberspace.com/scripts/widgets.js; var e d.getElementsByTagName(script)0; e.parentNode.insertBefore(s,e);}(document));/script>!-- /end HFCM by 99 Robots --> /div> /div>/div>div styleheight:30px aria-hiddentrue classwp-block-spacer>/div> /div>!-- .entry-content -->/article>!-- #post-## --> /div> /div>!-- #main --> /section>!-- #primary -->/div>!-- #page -->template idtp-language data-tp-languageen_US>/template>!--googleoff: all-->div idcookie-law-info-bar data-nosnippettrue>span>div classcli-bar-container cli-style-v2>div classcli-bar-message>We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies./div>div classcli-bar-btn_container>a rolebutton classcli_settings_button stylemargin:0px 10px 0px 5px>Cookie settings/a>a rolebutton data-cli_actionaccept idcookie_action_close_header classmedium cli-plugin-button cli-plugin-main-button cookie_action_close_header cli_action_button wt-cli-accept-btn>ACCEPT/a>/div>/div>/span>/div>div idcookie-law-info-again data-nosnippettrue>span idcookie_hdr_showagain>Manage consent/span>/div>div classcli-modal data-nosnippettrue idcliSettingsPopup tabindex-1 roledialog aria-labelledbycliSettingsPopup aria-hiddentrue> div classcli-modal-dialog roledocument> div classcli-modal-content cli-bar-popup> button typebutton classcli-modal-close idcliModalClose> svg class viewBox0 0 24 24>path dM19 6.41l-1.41-1.41-5.59 5.59-5.59-5.59-1.41 1.41 5.59 5.59-5.59 5.59 1.41 1.41 5.59-5.59 5.59 5.59 1.41-1.41-5.59-5.59z>/path>path dM0 0h24v24h-24z fillnone>/path>/svg> span classwt-cli-sr-only>Close/span> /button> div classcli-modal-body> div classcli-container-fluid cli-tab-container> div classcli-row> div classcli-col-12 cli-align-items-stretch cli-px-0> div classcli-privacy-overview> h4>Privacy Overview/h4> div classcli-privacy-content> div classcli-privacy-content-text>This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience./div> /div> a classcli-privacy-readmore aria-labelShow more rolebutton data-readmore-textShow more data-readless-textShow less>/a> /div> /div> div classcli-col-12 cli-align-items-stretch cli-px-0 cli-tab-section-container> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetnecessary data-togglecli-toggle-tab> Necessary /a> div classwt-cli-necessary-checkbox> input typecheckbox classcli-user-preference-checkbox idwt-cli-checkbox-necessary data-idcheckbox-necessary checkedchecked /> label classform-check-label forwt-cli-checkbox-necessary>Necessary/label> /div> span classcli-necessary-caption>Always Enabled/span> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idnecessary> div classwt-cli-cookie-description> Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.table classcookielawinfo-row-cat-table cookielawinfo-winter>thead>tr>th classcookielawinfo-column-1>Cookie/th>th classcookielawinfo-column-3>Duration/th>th classcookielawinfo-column-4>Description/th>/tr>/thead>tbody>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checbox-analytics/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category Analytics./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checbox-functional/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category Functional./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checbox-functional/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category Functional./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checbox-others/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category Other./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checkbox-necessary/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category Necessary./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checkbox-necessary/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category Necessary./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checkbox-performance/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category Performance./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checkbox-performance/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category Performance./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>viewed_cookie_policy/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>viewed_cookie_policy/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data./td>/tr>/tbody>/table> /div> /div> /div> /div> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetfunctional data-togglecli-toggle-tab> Functional /a> div classcli-switch> input typecheckbox idwt-cli-checkbox-functional classcli-user-preference-checkbox data-idcheckbox-functional /> label forwt-cli-checkbox-functional classcli-slider data-cli-enableEnabled data-cli-disableDisabled>span classwt-cli-sr-only>Functional/span>/label> /div> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idfunctional> div classwt-cli-cookie-description> Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features. /div> /div> /div> /div> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetperformance data-togglecli-toggle-tab> Performance /a> div classcli-switch> input typecheckbox idwt-cli-checkbox-performance classcli-user-preference-checkbox data-idcheckbox-performance /> label forwt-cli-checkbox-performance classcli-slider data-cli-enableEnabled data-cli-disableDisabled>span classwt-cli-sr-only>Performance/span>/label> /div> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idperformance> div classwt-cli-cookie-description> Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors. /div> /div> /div> /div> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetanalytics data-togglecli-toggle-tab> Analytics /a> div classcli-switch> input typecheckbox idwt-cli-checkbox-analytics classcli-user-preference-checkbox data-idcheckbox-analytics /> label forwt-cli-checkbox-analytics classcli-slider data-cli-enableEnabled data-cli-disableDisabled>span classwt-cli-sr-only>Analytics/span>/label> /div> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idanalytics> div classwt-cli-cookie-description> Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc. /div> /div> /div> /div> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetadvertisement data-togglecli-toggle-tab> Advertisement /a> div classcli-switch> input typecheckbox idwt-cli-checkbox-advertisement classcli-user-preference-checkbox data-idcheckbox-advertisement /> label forwt-cli-checkbox-advertisement classcli-slider data-cli-enableEnabled data-cli-disableDisabled>span classwt-cli-sr-only>Advertisement/span>/label> /div> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idadvertisement> div classwt-cli-cookie-description> Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads. /div> /div> /div> /div> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetothers data-togglecli-toggle-tab> Others /a> div classcli-switch> input typecheckbox idwt-cli-checkbox-others classcli-user-preference-checkbox data-idcheckbox-others /> label forwt-cli-checkbox-others classcli-slider data-cli-enableEnabled data-cli-disableDisabled>span classwt-cli-sr-only>Others/span>/label> /div> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idothers> div classwt-cli-cookie-description> Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet. /div> /div> /div> /div> /div> /div>/div> /div> div classcli-modal-footer> div classwt-cli-element cli-container-fluid cli-tab-container> div classcli-row> div classcli-col-12 cli-align-items-stretch cli-px-0> div classcli-tab-footer wt-cli-privacy-overview-actions> a idwt-cli-privacy-save-btn rolebutton tabindex0 data-cli-actionaccept classwt-cli-privacy-btn cli_setting_save_button wt-cli-privacy-accept-btn cli-btn>SAVE & ACCEPT/a> /div> /div> /div> /div> /div> /div> /div>/div>div classcli-modal-backdrop cli-fade cli-settings-overlay>/div>div classcli-modal-backdrop cli-fade cli-popupbar-overlay>/div>!--googleon: all-->style idcore-block-supports-inline-css typetext/css>/** * Core styles: block-supports *//style>link relstylesheet idcookie-law-info-table-css hrefhttps://caravanseraivirtual.com/wp-content/plugins/cookie-law-info/legacy/public/css/cookie-law-info-table.css?ver3.2.8 typetext/css mediaall />script typetext/javascript srchttps://caravanseraivirtual.com/wp-content/themes/wp-bootstrap-starter/inc/assets/js/popper.min.js?ver6.7.4 idwp-bootstrap-starter-popper-js>/script>script typetext/javascript srchttps://caravanseraivirtual.com/wp-content/themes/wp-bootstrap-starter/inc/assets/js/bootstrap.min.js?ver6.7.4 idwp-bootstrap-starter-bootstrapjs-js>/script>script typetext/javascript srchttps://caravanseraivirtual.com/wp-content/themes/wp-bootstrap-starter/inc/assets/js/theme-script.min.js?ver6.7.4 idwp-bootstrap-starter-themejs-js>/script>script typetext/javascript srchttps://caravanseraivirtual.com/wp-content/themes/wp-bootstrap-starter/inc/assets/js/skip-link-focus-fix.min.js?ver20151215 idwp-bootstrap-starter-skip-link-focus-fix-js>/script>/body>/html>!-- Cached by WP-Optimize - https://getwpo.com - Last modified: February 22, 2026 6:45 pm (UTC:0) -->
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]