Help
RSS
API
Feed
Maltego
Contact
Domain > tigertechonline.ca
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-01-14
66.29.146.89
(
ClassC
)
Port 80
HTTP/1.1 301 Moved Permanentlykeep-alive: timeout5, max100content-type: text/htmlcontent-length: 795date: Tue, 14 Jan 2025 21:37:06 GMTserver: LiteSpeedlocation: https://tigertechonline.ca/x-turbo-charged-by: LiteSpeed !DOCTYPE html>html styleheight:100%>head>meta nameviewport contentwidthdevice-width, initial-scale1, shrink-to-fitno />title> 301 Moved Permanently/title>style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}/style>/head>body stylecolor: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;>div styleheight:auto; min-height:100%; > div styletext-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;> h1 stylemargin:0; font-size:150px; line-height:150px; font-weight:bold;>301/h1>h2 stylemargin-top:20px;font-size: 30px;>Moved Permanently/h2>p>The document has been permanently moved./p>/div>/div>/body>/html>
Port 443
HTTP/1.1 200 OKkeep-alive: timeout5, max100content-type: text/html; charsetUTF-8link: https://tigertechonline.ca/wp-json/>; relhttps://api.w.org/link: https://tigertechonline.ca/wp-json/wp/v2/pages/5274>; relalternate; titleJSON; typeapplication/jsonlink: https://tigertechonline.ca/>; relshortlinktransfer-encoding: chunkeddate: Tue, 14 Jan 2025 21:37:06 GMTserver: LiteSpeedx-turbo-charged-by: LiteSpeed !doctype html>html langen-US>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1> link relprofile hrefhttps://gmpg.org/xfn/11> title>/title>meta namerobots contentmax-image-preview:large /> style>img:is(sizesauto i, sizes^auto, i) { contain-intrinsic-size: 3000px 1500px }/style> link reldns-prefetch href//fonts.googleapis.com />link relalternate typeapplication/rss+xml title » Feed hrefhttps://tigertechonline.ca/feed/ />link relalternate typeapplication/rss+xml title » Comments Feed hrefhttps://tigertechonline.ca/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:\/\/tigertechonline.ca\/wp-includes\/js\/wp-emoji.js?ver6.7.1,twemoji:https:\/\/tigertechonline.ca\/wp-includes\/js\/twemoji.js?ver6.7.1}};/** * @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>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--tan: #D2B48C;--wp--preset--color--yellow: #FDE64B;--wp--preset--color--orange: #ED7014;--wp--preset--color--red: #D0312D;--wp--preset--color--pink: #b565a7;--wp--preset--color--purple: #A32CC4;--wp--preset--color--blue: #4E97D8;--wp--preset--color--green: #00B294;--wp--preset--color--brown: #231709;--wp--preset--color--grey: #7D7D7D;--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: 12px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--regular: 16px;--wp--preset--font-size--larger: 36px;--wp--preset--font-size--huge: 48px;--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 idcontact-form-7-css hrefhttps://tigertechonline.ca/wp-content/plugins/contact-form-7/includes/css/styles.css?ver6.0.3 typetext/css mediaall />link relstylesheet idmenu-image-css hrefhttps://tigertechonline.ca/wp-content/plugins/menu-image/includes/css/menu-image.css?ver3.11 typetext/css mediaall />link relstylesheet iddashicons-css hrefhttps://tigertechonline.ca/wp-includes/css/dashicons.css?ver6.7.1 typetext/css mediaall />style iddashicons-inline-css typetext/css>data-fontDashicons:before {font-family: Dashicons !important;content: attr(data-icon) !important;speak: none !important;font-weight: normal !important;font-variant: normal !important;text-transform: none !important;line-height: 1 !important;font-style: normal !important;-webkit-font-smoothing: antialiased !important;-moz-osx-font-smoothing: grayscale !important;}/style>link relstylesheet idbootstrap-css hrefhttps://tigertechonline.ca/wp-content/themes/bosa/assets/bootstrap/css/bootstrap.min.css?ver6.7.1 typetext/css mediaall />link relstylesheet idslick-css hrefhttps://tigertechonline.ca/wp-content/themes/bosa/assets/slick/slick.css?ver6.7.1 typetext/css mediaall />link relstylesheet idslicknav-css hrefhttps://tigertechonline.ca/wp-content/themes/bosa/assets/css/slicknav.min.css?ver6.7.1 typetext/css mediaall />link relstylesheet idslick-theme-css hrefhttps://tigertechonline.ca/wp-content/themes/bosa/assets/slick/slick-theme.css?ver6.7.1 typetext/css mediaall />link relstylesheet idfontawesome-css hrefhttps://tigertechonline.ca/wp-content/themes/bosa/assets/font-awesome/css/all.min.css?ver6.7.1 typetext/css mediaall />link relstylesheet idbosa-blocks-css hrefhttps://tigertechonline.ca/wp-content/themes/bosa/assets/css/blocks.min.css?ver6.7.1 typetext/css mediaall />link relstylesheet idbosa-google-font-css hrefhttps://fonts.googleapis.com/css?familyOpen+Sans%3A300%2C400%2C400i%2C600%2C700%2C800%7CPoppins%3A300%2C400%2C400i%2C500%2C600%2C700%2C800%2C900&displayswap&ver6.7.1 typetext/css mediaall />link relstylesheet idbosa-ecommerce-style-parent-css hrefhttps://tigertechonline.ca/wp-content/themes/bosa/style.css?ver6.7.1 typetext/css mediaall />link relstylesheet idgutener-ecommerce-google-fonts-css hrefhttps://fonts.googleapis.com/css2?familyJost%3Aital%2Cwght%400%2C100%3B0%2C200%3B0%2C300%3B0%2C400%3B0%2C500%3B0%2C600%3B0%2C700%3B0%2C800%3B0%2C900%3B1%2C100%3B1%2C200%3B1%2C300%3B1%2C400%3B1%2C500%3B1%2C600%3B1%2C700%3B1%2C800%3B1%2C900&displayswap&ver6.7.1 typetext/css mediaall />link relstylesheet idgutener-ecommerce-google-fonts-two-css hrefhttps://fonts.googleapis.com/css2?familyPoppins%3Aital%2Cwght%400%2C100%3B0%2C200%3B0%2C300%3B0%2C400%3B0%2C500%3B0%2C600%3B0%2C700%3B0%2C800%3B0%2C900%3B1%2C100%3B1%2C200%3B1%2C300%3B1%2C400%3B1%2C500%3B1%2C600%3B1%2C700%3B1%2C800%3B1%2C900&displayswap&ver6.7.1 typetext/css mediaall />link relstylesheet idbosa-style-css hrefhttps://tigertechonline.ca/wp-content/themes/bosa-ecommerce/style.css?ver6.7.1 typetext/css mediaall />link relstylesheet idelementor-frontend-css hrefhttps://tigertechonline.ca/wp-content/plugins/elementor/assets/css/frontend.css?ver3.26.4 typetext/css mediaall />link relstylesheet idelementor-post-12-css hrefhttps://tigertechonline.ca/wp-content/uploads/elementor/css/post-12.css?ver1734675650 typetext/css mediaall />link relstylesheet idwidget-image-css hrefhttps://tigertechonline.ca/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver3.26.4 typetext/css mediaall />link relstylesheet idwidget-text-editor-css hrefhttps://tigertechonline.ca/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver3.26.4 typetext/css mediaall />link relstylesheet idwidget-spacer-css hrefhttps://tigertechonline.ca/wp-content/plugins/elementor/assets/css/widget-spacer.min.css?ver3.26.4 typetext/css mediaall />link relstylesheet idwidget-testimonial-css hrefhttps://tigertechonline.ca/wp-content/plugins/elementor/assets/css/widget-testimonial.min.css?ver3.26.4 typetext/css mediaall />link relstylesheet idwidget-google_maps-css hrefhttps://tigertechonline.ca/wp-content/plugins/elementor/assets/css/widget-google_maps.min.css?ver3.26.4 typetext/css mediaall />link relstylesheet idwidget-heading-css hrefhttps://tigertechonline.ca/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver3.26.4 typetext/css mediaall />link relstylesheet idelementor-post-5274-css hrefhttps://tigertechonline.ca/wp-content/uploads/elementor/css/post-5274.css?ver1734675652 typetext/css mediaall />link relstylesheet idekit-widget-styles-css hrefhttps://tigertechonline.ca/wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-styles.css?ver3.3.7 typetext/css mediaall />link relstylesheet idekit-responsive-css hrefhttps://tigertechonline.ca/wp-content/plugins/elementskit-lite/widgets/init/assets/css/responsive.css?ver3.3.7 typetext/css mediaall />link relstylesheet idgoogle-fonts-1-css hrefhttps://fonts.googleapis.com/css?familyRoboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CSansita%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CViga%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&displayswap&ver6.7.1 typetext/css mediaall />link relstylesheet idelementor-icons-ekiticons-css hrefhttps://tigertechonline.ca/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/css/ekiticons.css?ver3.3.7 typetext/css mediaall />link relpreconnect hrefhttps://fonts.gstatic.com/ crossorigin>script typetext/javascript srchttps://tigertechonline.ca/wp-includes/js/jquery/jquery.js?ver3.7.1 idjquery-core-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-includes/js/jquery/jquery-migrate.js?ver3.4.1 idjquery-migrate-js>/script>link relhttps://api.w.org/ hrefhttps://tigertechonline.ca/wp-json/ />link relalternate titleJSON typeapplication/json hrefhttps://tigertechonline.ca/wp-json/wp/v2/pages/5274 />link relEditURI typeapplication/rsd+xml titleRSD hrefhttps://tigertechonline.ca/xmlrpc.php?rsd />meta namegenerator contentWordPress 6.7.1 />link relcanonical hrefhttps://tigertechonline.ca/ />link relshortlink hrefhttps://tigertechonline.ca/ />link relalternate titleoEmbed (JSON) typeapplication/json+oembed hrefhttps://tigertechonline.ca/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Ftigertechonline.ca%2F />link relalternate titleoEmbed (XML) typetext/xml+oembed hrefhttps://tigertechonline.ca/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Ftigertechonline.ca%2F&formatxml />meta namegenerator contentRedux 4.5.4 /> style>.site-header .site-branding > a {max-width: 270px;overflow: hidden;display: inline-block;}/* Site Title */.header-one .site-branding .site-title, .header-two .site-branding .site-title, .header-three .site-branding .site-title {color: #030303;}/* Tagline */.header-one .site-branding .site-description,.header-two .site-branding .site-description,.header-three .site-branding .site-description {color: #767676;}/* Site general link color */a {color: #a6a6a6;}/* Page and Single Post Title */body.single .page-title, body.page .page-title {color: #101010;}/* Site body Text */body, html {color: #333333;}/* Heading Text */h1, h2, h3, h4, h5, h6, .product-title {color: #030303;}/* Primary Background */.section-title:before, .button-primary, .woocommerce span.onsale, body .woocommerce.widget_price_filter .ui-slider .ui-slider-handle, #offcanvas-menu .header-btn-wrap .header-btn .button-primary {background-color: #EB5A3E;}/* Primary Border */.post .entry-content .entry-header .cat-links a, .attachment .entry-content .entry-header .cat-links a, .wrap-coming-maintenance-mode .content .button-container .button-primary {border-color: #EB5A3E;}/* Primary Color */ blockquote:before, .post .entry-content .entry-header .cat-links a, .attachment .entry-content .entry-header .cat-links a, .post .entry-meta a:before, .attachment .entry-meta a:before, .single .entry-container .cat-links:before, .post .entry-meta .tag-links:before {color: #EB5A3E;}/* Hover Background */inputtypebutton:hover, inputtypebutton:active, inputtypebutton:focus, inputtypereset:hover, inputtypereset:active, inputtypereset:focus, inputtypesubmit:hover, inputtypesubmit:active, inputtypesubmit:focus, .button-primary:hover, .button-primary:focus, .button-primary:active, .button-outline:hover, .button-outline:focus, .button-outline:active, .search-form .search-button:hover, .search-form .search-button:focus, .search-form .search-button:active, .page-numbers .page-numbers:hover, .page-numbers .page-numbers:focus, .page-numbers .page-numbers:active, .nav-links .page-numbers:hover, .nav-links .page-numbers:focus, .nav-links .page-numbers:active, #back-to-top a:hover, #back-to-top a:focus, #back-to-top a:active, .section-highlight-post .slick-control li.slick-arrow:not(.slick-disabled):hover, .section-highlight-post .slick-control li.slick-arrow:not(.slick-disabled):focus, .section-highlight-post .slick-control li.slick-arrow:not(.slick-disabled):active, .alt-menu-icon a:hover .icon-bar, .alt-menu-icon a:focus .icon-bar, .alt-menu-icon a:active .icon-bar, .alt-menu-icon a:hover .icon-bar:before, .alt-menu-icon a:hover .icon-bar:after, .alt-menu-icon a:focus .icon-bar:before, .alt-menu-icon a:focus .icon-bar:after, .alt-menu-icon a:active .icon-bar:before, .alt-menu-icon a:active .icon-bar:after, #offcanvas-menu .close-offcanvas-menu button:hover,#offcanvas-menu .close-offcanvas-menu button:active, .highlight-post-slider .post .entry-meta .cat-links a:hover, .highlight-post-slider .post .entry-meta .cat-links a:focus, .highlight-post-slider .post .entry-meta .cat-links a:active, .site-footer .social-profile ul li a:hover, .site-footer .social-profile ul li a:focus, .site-footer .social-profile ul li a:active, #back-to-top a:hover, #back-to-top a:focus, #back-to-top a:active, .comments-area .comment-list .reply a:hover, .comments-area .comment-list .reply a:focus, .comments-area .comment-list .reply a:active, .widget .tagcloud a:hover, .widget .tagcloud a:focus, .widget .tagcloud a:active, .infinite-scroll #infinite-handle span:hover, .infinite-scroll #infinite-handle span:focus, .infinite-scroll #infinite-handle span:active, .slicknav_btn:hover .slicknav_icon-bar, .slicknav_btn:focus .slicknav_icon-bar, .slicknav_btn:hover .slicknav_icon-bar, .slicknav_btn:hover .slicknav_icon-bar:first-child:before, .slicknav_btn:hover .slicknav_icon-bar:first-child:after, .slicknav_btn:focus .slicknav_icon-bar:first-child:before, .slicknav_btn:focus .slicknav_icon-bar:first-child:after, .slicknav_btn:hover .slicknav_icon-bar:first-child:before, .slicknav_btn:hover .slicknav_icon-bar:first-child:after, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce #respond input#submit:active, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce #respond input#submit:active, .woocommerce a.button:hover, .woocommerce a.button:focus, .woocommerce a.button:active, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce button.button:active, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce input.button:active, .woocommerce a.button.alt:hover, .woocommerce a.button.alt:focus, .woocommerce a.button.alt:active, .woocommerce button.button.alt:hover, .woocommerce button.button.alt:focus, .woocommerce button.button.alt:active, .woocommerce a.button:hover, .woocommerce a.button:focus, .widget.widget_product_search typesubmit:hover, .widget.widget_product_search typesubmit:focus, .widget.widget_product_search typesubmit:active, #offcanvas-menu .header-btn-wrap .header-btn .button-primary:hover, #offcanvas-menu .header-btn-wrap .header-btn .button-primary:focus, #offcanvas-menu .header-btn-wrap .header-btn .button-primary:active, #offcanvas-menu .header-btn-wrap .header-btn .button-outline:hover, #offcanvas-menu .header-btn-wrap .header-btn .button-outline:focus, #offcanvas-menu .header-btn-wrap .header-btn .button-outline:active, .woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {background-color: #086abd;}/* Hover Border */.button-outline:hover, .button-outline:focus, .button-outline:active, #offcanvas-menu .close-offcanvas-menu button:hover, #offcanvas-menu .close-offcanvas-menu button:active, .page-numbers .page-numbers:hover, .page-numbers .page-numbers:focus, .page-numbers .page-numbers:active, .nav-links .page-numbers:hover, .nav-links .page-numbers:focus, .nav-links .page-numbers:active, #back-to-top a:hover, #back-to-top a:focus, #back-to-top a:active, .post .entry-content .entry-header .cat-links a:hover, .post .entry-content .entry-header .cat-links a:focus, .post .entry-content .entry-header .cat-links a:active, .attachment .entry-content .entry-header .cat-links a:hover, .attachment .entry-content .entry-header .cat-links a:focus, .attachment .entry-content .entry-header .cat-links a:active, .banner-content .entry-content .entry-header .cat-links a:hover, .banner-content .entry-content .entry-header .cat-links a:focus, .banner-content .entry-content .entry-header .cat-links a:active, .slick-control li:not(.slick-disabled):hover span, .slick-control li:not(.slick-disabled):focus span, .slick-control li:not(.slick-disabled):active span, .section-banner .banner-content .button-container .button-outline:hover, .section-banner .banner-content .button-container .button-outline:focus, .section-banner .banner-content .button-container .button-outline:active, #back-to-top a:hover, #back-to-top a:focus, #back-to-top a:active, .widget .tagcloud a:hover, .widget .tagcloud a:focus, .widget .tagcloud a:active, .woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current, #offcanvas-menu .header-btn-wrap .header-btn .button-outline:hover, #offcanvas-menu .header-btn-wrap .header-btn .button-outline:focus, #offcanvas-menu .header-btn-wrap .header-btn .button-outline:active, .wrap-coming-maintenance-mode .content .social-profile ul a:hover, .wrap-coming-maintenance-mode .content .social-profile ul a:focus, .wrap-coming-maintenance-mode .content .social-profile ul a:active, .summary .yith-wcwl-add-button a:hover, .woocommerce .entry-summary a.compare.button:hover, .woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current,.summary .yith-wcwl-add-to-wishlist a:hover i, .summary .yith-wcwl-add-to-wishlist a:focus i {border-color: #086abd;}/* Hover Text */a:hover, a:focus, a:active, .main-navigation ul.menu ul li a:hover, .main-navigation ul.menu ul li a:focus, .main-navigation ul.menu ul li a:active, .main-navigation ul.menu > li:hover > a, .main-navigation ul.menu > li:focus > a, .main-navigation ul.menu > li:active > a, .main-navigation ul.menu > li.focus > a, .main-navigation ul.menu li.current-menu-item > a, .main-navigation ul.menu li.current_page_item > a, .main-navigation ul.menu li.current-menu-parent > a, .comment-navigation .nav-previous a:hover, .comment-navigation .nav-previous a:focus, .comment-navigation .nav-previous a:active, .comment-navigation .nav-next a:hover, .comment-navigation .nav-next a:focus, .comment-navigation .nav-next a:active, .posts-navigation .nav-previous a:hover, .posts-navigation .nav-previous a:focus, .posts-navigation .nav-previous a:active, .posts-navigation .nav-next a:hover, .posts-navigation .nav-next a:focus, .posts-navigation .nav-next a:active, .post-navigation .nav-previous a:hover, .post-navigation .nav-previous a:focus, .post-navigation .nav-previous a:active, .post-navigation .nav-next a:hover, .post-navigation .nav-next a:focus, .post-navigation .nav-next a:active, .social-profile ul li a:hover, .social-profile ul li a:focus, .social-profile ul li a:active, .post .entry-content .entry-header .cat-links a:hover, .post .entry-content .entry-header .cat-links a:focus, .post .entry-content .entry-header .cat-links a:active, .attachment .entry-content .entry-header .cat-links a:hover, .attachment .entry-content .entry-header .cat-links a:focus, .attachment .entry-content .entry-header .cat-links a:active, .banner-content .entry-content .entry-header .cat-links a:hover, .banner-content .entry-content .entry-header .cat-links a:focus, .banner-content .entry-content .entry-header .cat-links a:active, .post .entry-meta a:hover, .post .entry-meta a:focus, .post .entry-meta a:active, .attachment .entry-meta a:hover, .attachment .entry-meta a:focus, .attachment .entry-meta a:active, .banner-content .entry-meta a:hover, .banner-content .entry-meta a:focus, .banner-content .entry-meta a:active, .post .entry-meta a:hover:before, .post .entry-meta a:focus:before, .post .entry-meta a:active:before, .attachment .entry-meta a:hover:before, .attachment .entry-meta a:focus:before, .attachment .entry-meta a:active:before, .banner-content .entry-meta a:hover:before, .banner-content .entry-meta a:focus:before, .banner-content .entry-meta a:active:before, .breadcrumb-wrap .breadcrumbs .trail-items a:hover, .breadcrumb-wrap .breadcrumbs .trail-items a:focus, .breadcrumb-wrap .breadcrumbs .trail-items a:active, .site-header .site-branding .site-title a:hover, .site-header .site-branding .site-title a:focus, .site-header .site-branding .site-title a:active, .header-icons .search-icon:hover, .header-icons .search-icon:focus, .header-icons .search-icon:active, .header-search .search-form .search-button:hover, .header-search .close-button:hover, .header-contact ul a:hover, .header-contact ul a:focus, .header-contact ul a:active, .section-banner .banner-content .entry-meta a:hover, .section-banner .banner-content .entry-meta a:focus, .section-banner .banner-content .entry-meta a:active, .site-footer .site-info a:hover, .site-footer .site-info a:focus, .site-footer .site-info a:active, .site-footer .footer-menu ul li a:hover, .site-footer .footer-menu ul li a:focus, .site-footer .footer-menu ul li a:active, .comments-area .comment-list .comment-metadata a:hover, .comments-area .comment-list .comment-metadata a:focus, .comments-area .comment-list .comment-metadata a:active, .widget ul li a:hover, .widget ul li a:focus, .widget ul li a:active, .woocommerce .product_meta .posted_in a:hover, .woocommerce .product_meta .posted_in a:focus, .woocommerce .product_meta .posted_in a:active, .woocommerce .product_meta .tagged_as a:hover, .woocommerce .product_meta .tagged_as a:focus, .woocommerce .product_meta .tagged_as a:active, .woocommerce .woocommerce-MyAccount-navigation ul li a:hover, .woocommerce .woocommerce-MyAccount-navigation ul li a:focus, .woocommerce .woocommerce-MyAccount-navigation ul li a:active, .woocommerce .woocommerce-MyAccount-content p a:hover, .woocommerce .woocommerce-MyAccount-content p a:focus, .woocommerce .woocommerce-MyAccount-content p a:active, .product .product-compare-wishlist .product-compare a:hover, .product .product-compare-wishlist .product-wishlist a:hover, .section-banner .banner-content .button-container .button-text:hover, .section-banner .banner-content .button-container .button-text:focus, .section-banner .banner-content .button-container .button-text:active, .social-profile ul li a:hover, .wrap-coming-maintenance-mode .content .header-contact ul a:hover, .wrap-coming-maintenance-mode .content .header-contact ul a:focus, .wrap-coming-maintenance-mode .content .header-contact ul a:active, #offcanvas-menu .header-navigation ul.menu > li a:hover, #offcanvas-menu .header-navigation ul.menu > li a:focus, #offcanvas-menu .header-navigation ul.menu > li a:active, #offcanvas-menu .social-profile ul li a:hover, #offcanvas-menu .social-profile ul li a:focus, #offcanvas-menu .social-profile ul li a:active, #offcanvas-menu .header-contact ul li a:hover, #offcanvas-menu .header-contact ul li a:focus, #offcanvas-menu .header-contact ul li a:active, #offcanvas-menu .header-btn-wrap .header-btn .button-text:hover, #offcanvas-menu .header-btn-wrap .header-btn .button-text:focus, #offcanvas-menu .header-btn-wrap .header-btn .button-text:active, .wrap-coming-maintenance-mode .content .social-profile ul a:hover, .wrap-coming-maintenance-mode .content .social-profile ul a:focus, .wrap-coming-maintenance-mode .content .social-profile ul a:active,.woocommerce .woocommerce-MyAccount-navigation ul li.is-active a, .woocommerce ul.products li.product .woocommerce-loop-product__title:hover, .woocommerce ul.products li.product .woocommerce-loop-product__title:focus, .woocommerce ul.products li.product .woocommerce-loop-product__title:active, .widget.widget_recently_viewed_products li .product-title:hover, .widget.widget_recently_viewed_products li .product-title:active, .widget.widget_recent_reviews li .product-title:hover, .widget.widget_recent_reviews li .product-title:active, .widget.widget_products .product_list_widget li .product-title:hover, .widget.widget_products .product_list_widget li .product-title:active, .summary .yith-wcwl-add-button a:hover, .woocommerce .entry-summary a.compare.button:hover, .summary .yith-wcwl-add-to-wishlist a:hover i, .summary .yith-wcwl-add-to-wishlist a:focus i {color: #086abd;}/* Feature Posts*/.feature-posts-layout-one .feature-posts-content-wrap .feature-posts-image:before { background-color: rgba(0, 0, 0, 0.4);}.header-one .top-header,body:not(.home) .header-two .top-header,.header-three .top-header {background-color: ;}.header-one .header-contact ul li, .header-one .header-contact ul li a, .header-one .social-profile ul li a,.header-one .header-icons .search-icon,.header-two .header-contact ul li, .header-two .header-contact ul li a, .header-two .social-profile ul li a,.header-two .header-icons .search-icon,.header-three .header-navigation ul.menu > li > a, .header-three .alt-menu-icon .iconbar-label, .header-three .social-profile ul li a {color: #333333;}@media only screen and (max-width: 991px) {.alt-menu-icon .iconbar-label {color: #333333;}header.site-header .alt-menu-icon .icon-bar, header.site-header .alt-menu-icon .icon-bar:before, header.site-header .alt-menu-icon .icon-bar:after {background-color: #333333;}.alt-menu-icon a:hover .iconbar-label,.alt-menu-icon a:focus .iconbar-label,.alt-menu-icon a:active .iconbar-label {color: #086abd;}header.site-header .alt-menu-icon a:hover .icon-bar, header.site-header .alt-menu-icon a:focus .icon-bar, header.site-header .alt-menu-icon a:active .icon-bar, header.site-header .alt-menu-icon a:hover .icon-bar:before, header.site-header .alt-menu-icon a:focus .icon-bar:before, header.site-header .alt-menu-icon a:active .icon-bar:before, header.site-header .alt-menu-icon a:hover .icon-bar:after,header.site-header .alt-menu-icon a:focus .icon-bar:after,header.site-header .alt-menu-icon a:active .icon-bar:after {background-color: #086abd;}}.header-one .alt-menu-icon .icon-bar, .header-one .alt-menu-icon .icon-bar:before, .header-one .alt-menu-icon .icon-bar:after,.header-two .alt-menu-icon .icon-bar, .header-two .alt-menu-icon .icon-bar:before, .header-two .alt-menu-icon .icon-bar:after {background-color: #333333;}.header-one .header-contact ul li a:hover, .header-one .header-contact ul li a:focus, .header-one .header-contact ul li a:active, .header-one .social-profile ul li a:hover, .header-one .social-profile ul li a:focus, .header-one .social-profile ul li a:active,.header-one .header-search-wrap .search-icon:hover,.header-one .header-search-wrap .search-icon:focus,.header-one .header-search-wrap .search-icon:active,.header-two .header-contact ul li a:hover, .header-two .header-contact ul li a:focus, .header-two .header-contact ul li a:active, .header-two .social-profile ul li a:hover,.header-two .social-profile ul li a:focus,.header-two .social-profile ul li a:active,.header-two .header-icons .search-icon:hover,.header-two .header-icons .search-icon:focus,.header-two .header-icons .search-icon:active,.header-three .header-navigation ul.menu > li > a:hover, .header-three .header-navigation ul.menu > li > a:focus, .header-three .header-navigation ul.menu > li > a:active, .header-three .social-profile ul li a:hover, .header-three .social-profile ul li a:focus, .header-three .social-profile ul li a:active {color: #086abd;}.header-one .alt-menu-icon a:hover .icon-bar, .header-one .alt-menu-icon a:focus .icon-bar, .header-one .alt-menu-icon a:active .icon-bar, .header-one .alt-menu-icon a:hover .icon-bar:before, .header-one .alt-menu-icon a:focus .icon-bar:before, .header-one .alt-menu-icon a:active .icon-bar:before, .header-one .alt-menu-icon a:hover .icon-bar:after,.header-one .alt-menu-icon a:focus .icon-bar:after,.header-one .alt-menu-icon a:active .icon-bar:after,.header-two .alt-menu-icon a:hover .icon-bar, .header-two .alt-menu-icon a:focus .icon-bar, .header-two .alt-menu-icon a:active .icon-bar, .header-two .alt-menu-icon a:hover .icon-bar:before, .header-two .alt-menu-icon a:focus .icon-bar:before, .header-two .alt-menu-icon a:active .icon-bar:before, .header-two .alt-menu-icon a:hover .icon-bar:after,.header-two .alt-menu-icon a:focus .icon-bar:after,.header-two .alt-menu-icon a:active .icon-bar:after,.home .header-two:not(.sticky-header) .alt-menu-icon a:hover .icon-bar, .home .header-two:not(.sticky-header) .alt-menu-icon a:focus .icon-bar, .home .header-two:not(.sticky-header) .alt-menu-icon a:active .icon-bar, .home .header-two:not(.sticky-header) .alt-menu-icon a:hover .icon-bar:before, .home .header-two:not(.sticky-header) .alt-menu-icon a:focus .icon-bar:before, .home .header-two:not(.sticky-header) .alt-menu-icon a:active .icon-bar:before, .home .header-two:not(.sticky-header) .alt-menu-icon a:hover .icon-bar:after,.home .header-two:not(.sticky-header) .alt-menu-icon a:focus .icon-bar:after,.home .header-two:not(.sticky-header) .alt-menu-icon a:active .icon-bar:after {background-color: #086abd;}.mid-header .overlay {background-color: ;}.header-three .site-branding .site-title a:hover,.header-three .site-branding .site-title a:focus,.header-three .site-branding .site-title a:active {color: #086abd;}.header-one .bottom-header .overlay,body:not(.home) .header-two .bottom-header .overlay,.header-three .bottom-header,.header-three .mobile-menu-container {background-color: ;}@media only screen and (max-width: 991px) {.header-one .mobile-menu-container {background-color: ;}}.header-one .main-navigation ul.menu > li > a,.header-two .main-navigation ul.menu > li > a,.header-three .main-navigation ul.menu > li > a, .header-three .header-icons .search-icon {color: #333333;}.site-header .slicknav_btn:not(.slicknav_open) .slicknav_icon span,.site-header .slicknav_btn:not(.slicknav_open) .slicknav_icon span:first-child:before, .site-header .slicknav_btn:not(.slicknav_open) .slicknav_icon span:first-child:after {background-color: #333333;}.header-one .site-branding .site-title a:hover,.header-one .site-branding .site-title a:focus,.header-one .site-branding .site-title a:active,.header-one .main-navigation ul.menu li a:hover, .header-one .main-navigation ul.menu li a:focus, .header-one .main-navigation ul.menu li a:active, .header-one .main-navigation ul.menu li.current-menu-item > a,.header-one .main-navigation ul.menu li.current_page_item > a,.header-one .main-navigation ul.menu > li:hover > a, .header-one .main-navigation ul.menu > li:focus > a, .header-one .main-navigation ul.menu > li:active > a, .header-two .site-branding .site-title a:hover,.header-two .site-branding .site-title a:focus,.header-two .site-branding .site-title a:active,.header-two .header-search-wrap .search-icon:hover,.header-two .header-search-wrap .search-icon:focus,.header-two .header-search-wrap .search-icon:active,.header-two .main-navigation ul.menu li a:hover, .header-two .main-navigation ul.menu li a:focus, .header-two .main-navigation ul.menu > li > a:active, .header-two .main-navigation ul.menu li.current-menu-item > a,.header-two .main-navigation ul.menu li.current_page_item > a,.header-two .main-navigation ul.menu > li:hover > a, .header-two .main-navigation ul.menu > li:focus > a, .header-two .main-navigation ul.menu > li:active > a, .header-two .header-icons .search-icon:hover, .header-two .header-icons .search-icon:focus, .header-two .header-icons .search-icon:active, .home .header-two:not(.sticky-header) .main-navigation ul.menu li a:hover, .home .header-two:not(.sticky-header) .main-navigation ul.menu li a:focus, .home .header-two:not(.sticky-header) .main-navigation ul.menu li a:active,.header-three .main-navigation ul.menu > li > a:hover, .header-three .main-navigation ul.menu > li > a:focus, .header-three .main-navigation ul.menu > li > a:active, .header-three .main-navigation ul.menu li.current-menu-item > a,.header-three .main-navigation ul.menu li.current_page_item > a,.header-three .main-navigation ul.menu > li:hover > a, .header-three .main-navigation ul.menu > li:focus > a, .header-three .main-navigation ul.menu > li:active > a, .header-three .header-icons .search-icon:hover, .header-three .header-icons .search-icon:focus, .header-three .header-icons .search-icon:active {color: #086abd;}.header-three .alt-menu-icon .icon-bar, .header-three .alt-menu-icon .icon-bar:before, .header-three .alt-menu-icon .icon-bar:after {background-color: #333333;}.header-three .alt-menu-icon a:hover .icon-bar, .header-three .alt-menu-icon a:focus .icon-bar, .header-three .alt-menu-icon a:active .icon-bar, .header-three .alt-menu-icon a:hover .icon-bar:before, .header-three .alt-menu-icon a:focus .icon-bar:before, .header-three .alt-menu-icon a:active .icon-bar:before, .header-three .alt-menu-icon a:hover .icon-bar:after,.header-three .alt-menu-icon a:focus .icon-bar:after,.header-three .alt-menu-icon a:active .icon-bar:after {background-color: #086abd;}@media only screen and (max-width: 991px) {.mobile-menu-container .slicknav_menu .slicknav_menutxt {color: #333333;}.mobile-menu-container .slicknav_menu .slicknav_btn .slicknav_icon span, .mobile-menu-container .slicknav_menu .slicknav_btn .slicknav_icon span:first-child:before,.mobile-menu-container .slicknav_menu .slicknav_btn .slicknav_icon span:first-child:after {background-color: #333333;}.mobile-menu-container .slicknav_menu .slicknav_btn:hover .slicknav_menutxt,.mobile-menu-container .slicknav_menu .slicknav_btn:focus .slicknav_menutxt,.mobile-menu-container .slicknav_menu .slicknav_btn:active .slicknav_menutxt,.slicknav_menu .slicknav_nav li a:hover, .slicknav_menu .slicknav_nav li a:focus, .slicknav_menu .slicknav_nav li a:active {color: #086abd;}.mobile-menu-container .slicknav_menu .slicknav_btn:hover .slicknav_icon span, .mobile-menu-container .slicknav_menu .slicknav_btn:focus .slicknav_icon span, .mobile-menu-container .slicknav_menu .slicknav_btn:active .slicknav_icon span, .mobile-menu-container .slicknav_menu .slicknav_btn:hover .slicknav_icon span:first-child:before,.mobile-menu-container .slicknav_menu .slicknav_btn:focus .slicknav_icon span:first-child:before,.mobile-menu-container .slicknav_menu .slicknav_btn:active .slicknav_icon span:first-child:before,.mobile-menu-container .slicknav_menu .slicknav_btn:hover .slicknav_icon span:first-child:after,.mobile-menu-container .slicknav_menu .slicknav_btn:focus .slicknav_icon span:first-child:after,.mobile-menu-container .slicknav_menu .slicknav_btn:active .slicknav_icon span:first-child:after {background-color: #086abd;}}/* Transparent Top Header */.transparent-header .header-two.site-header .top-header {background-color: ;}/* Site Title */.transparent-header .site-header.header-two:not(.sticky-header) .site-branding .site-title {color: #ffffff;}/* Tagline */.transparent-header .site-header.header-two:not(.sticky-header) .site-branding .site-description {color: #e6e6e6;}/* Top Header Color */.transparent-header .header-two.site-header .header-contact ul a,.transparent-header .header-two.site-header .header-contact ul li,.transparent-header .header-two.site-header .social-profile ul li a, .transparent-header .header-two.site-header .header-search-wrap .search-icon {color: #ffffff;}.transparent-header .header-two.site-header .header-contact ul a:hover,.transparent-header .header-two.site-header .header-contact ul a:focus,.transparent-header .header-two.site-header .header-contact ul a:active,.transparent-header .header-two.site-header .social-profile ul li a:hover, .transparent-header .header-two.site-header .social-profile ul li a:focus, .transparent-header .header-two.site-header .social-profile ul li a:active, .transparent-header .header-two.site-header .header-search-wrap .search-icon:hover,.transparent-header .header-two.site-header .header-search-wrap .search-icon:focus,.transparent-header .header-two.site-header .header-search-wrap .search-icon:active {color: #086abd;}.transparent-header .header-two:not(.sticky-header) .alt-menu-icon .icon-bar,.transparent-header .header-two:not(.sticky-header) .alt-menu-icon .icon-bar:before, .transparent-header .header-two:not(.sticky-header) .alt-menu-icon .icon-bar:after {background-color: #ffffff;}.transparent-header .header-two:not(.sticky-header) .alt-menu-icon a:hover .icon-bar,.transparent-header .header-two:not(.sticky-header) .alt-menu-icon a:focus .icon-bar,.transparent-header .header-two:not(.sticky-header) .alt-menu-icon a:focus .icon-bar,.transparent-header .header-two:not(.sticky-header) .alt-menu-icon a:hover .icon-bar:before, .transparent-header .header-two:not(.sticky-header) .alt-menu-icon a:focus .icon-bar:before, .transparent-header .header-two:not(.sticky-header) .alt-menu-icon a:active .icon-bar:before, .transparent-header .header-two:not(.sticky-header) .alt-menu-icon a:hover .icon-bar:after,.transparent-header .header-two:not(.sticky-header) .alt-menu-icon a:focus .icon-bar:after,.transparent-header .header-two:not(.sticky-header) .alt-menu-icon a:active .icon-bar:after {background-color: #086abd;}/* Transparent bottom Header */.transparent-header .header-two.site-header .bottom-header .overlay {background-color: ;}/* Header Menu */.transparent-header .header-two:not(.sticky-header) .main-navigation ul.menu > li > a {color: #ffffff;}@media only screen and (max-width: 991px) {.transparent-header .header-two .alt-menu-icon .iconbar-label {color: #ffffff;}.transparent-header .header-two .alt-menu-icon a:hover .iconbar-label,.transparent-header .header-two .alt-menu-icon a:focus .iconbar-label,.transparent-header .header-two .alt-menu-icon a:active .iconbar-label {color: #086abd;}.transparent-header .header-two:not(.sticky-header) .mobile-menu-container .slicknav_menu .slicknav_menutxt {color: #ffffff;}.transparent-header .header-two:not(.sticky-header) .mobile-menu-container .slicknav_menu .slicknav_btn .slicknav_icon span, .transparent-header .header-two:not(.sticky-header) .mobile-menu-container .slicknav_menu .slicknav_btn .slicknav_icon span:first-child:before, .transparent-header .header-two:not(.sticky-header) .mobile-menu-container .slicknav_menu .slicknav_btn .slicknav_icon span:first-child:after {background-color: #ffffff;}}/* Transparent Header bottom Hover Color*/.transparent-header .site-header.header-two:not(.sticky-header) .site-branding .site-title a:hover,.transparent-header .site-header.header-two:not(.sticky-header) .site-branding .site-title a:focus,.transparent-header .site-header.header-two:not(.sticky-header) .site-branding .site-title a:active,.transparent-header .header-two:not(.sticky-header) .main-navigation ul.menu li > a:hover,.transparent-header .header-two:not(.sticky-header) .main-navigation ul.menu li > a:focus,.transparent-header .header-two:not(.sticky-header) .main-navigation ul.menu li > a:active,.transparent-header .header-two:not(.sticky-header) .main-navigation ul.menu li:hover > a, .transparent-header .header-two:not(.sticky-header) .main-navigation ul.menu li:focus > a, .transparent-header .header-two:not(.sticky-header) .main-navigation ul.menu li:active > a,.transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:hover .slicknav_menutxt,.transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:focus .slicknav_menutxt,.transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:active .slicknav_menutxt,.transparent-header .header-two:not(.sticky-header) .main-navigation ul.menu li.current-menu-item > a,.transparent-header .header-two:not(.sticky-header) .main-navigation ul.menu li.current_page_item > a {color: #086abd;}.transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:hover .slicknav_icon span, .transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:focus .slicknav_icon span, .transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:active .slicknav_icon span, .transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:hover .slicknav_icon span:first-child:before, .transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:focus .slicknav_icon span:first-child:before, .transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:active .slicknav_icon span:first-child:before, .transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:hover .slicknav_icon span:first-child:after,.transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:focus .slicknav_icon span:first-child:after,.transparent-header .header-two .mobile-menu-container .slicknav_menu .slicknav_btn:active .slicknav_icon span:first-child:after {background-color: #086abd;}#masthead .main-navigation ul.menu ul li a:hover,#masthead .main-navigation ul.menu ul li a:focus,#masthead .main-navigation ul.menu ul li a:active,#masthead .header-navigation ul.menu ul li a:hover,#masthead .header-navigation ul.menu ul li a:focus,#masthead .header-navigation ul.menu ul li a:active {color: #086abd;}.site-header .header-btn-1.button-outline {border-color: #1a1a1a;color: #1a1a1a;}.site-header .header-btn-1.button-outline:hover,.site-header .header-btn-1.button-outline:focus,.site-header .header-btn-1.button-outline:active {background-color: #086abd;border-color: #086abd;color: #ffffff;}.site-header .header-btn-1.button-outline {border-radius: 0px;}@media screen and (max-width: 991px){.site-header.sticky-header .fixed-header {position: relative;}}.site-header.sticky-header .site-branding > a {max-width: 270px;}@media only screen and (min-width: 992px) {.site-header:not(.sticky-header) .header-image-wrap {height: 80px;width: 100%;position: relative;}}.header-slide-item {background-position: center center;background-repeat: no-repeat;background-size: cover;}@media only screen and (min-width: 768px) {.overlay-post .inner-banner-content {height: 400px;overflow: hidden;}}.overlay-post .inner-banner-content {background-position: center center;background-repeat: no-repeat;background-size: cover;}.overlay-post .inner-banner-content:before { background-color: rgba(0, 0, 0, 0.4);}@media only screen and (min-width: 768px) {.overlay-page .inner-banner-content {height: 400px;overflow: hidden;}}.overlay-page .inner-banner-content {background-position: center center;background-repeat: no-repeat;background-size: cover;}.overlay-page .inner-banner-content:before { background-color: rgba(0, 0, 0, 0.4);}@media only screen and (min-width: 768px) {.banner-img {height: 550px;overflow: hidden;}}.main-slider .banner-img .overlay {background-color: ;}.section-banner .banner-content .entry-title {color: #ffffff;}.banner-content .entry-content .entry-header .cat-links a {color: #ebebeb;border-color: #ebebeb;}.section-banner .banner-content .entry-meta a {color: #ebebeb;}.section-banner .banner-content .entry-meta a:before {color: #FFFFFF;} .section-banner .entry-text {color: #ffffff;}.banner-content .entry-content .entry-header .cat-links a:hover, .banner-content .entry-content .entry-header .cat-links a:focus, .banner-content .entry-content .entry-header .cat-links a:active,.banner-content .entry-title a:hover,.banner-content .entry-title a:focus,.banner-content .entry-title a:active,.section-banner .banner-content .entry-meta a:hover, .section-banner .banner-content .entry-meta a:focus, .section-banner .banner-content .entry-meta a:active,.section-banner .banner-content .entry-meta a:hover:before, .section-banner .banner-content .entry-meta a:focus:before, .section-banner .banner-content .entry-meta a:active:before {color: #a8d8ff;}.banner-content .entry-content .entry-header .cat-links a:hover,.banner-content .entry-content .entry-header .cat-links a:focus,.banner-content .entry-content .entry-header .cat-links a:active,.slick-control li.slick-arrow:not(.slick-disabled):hover span, .slick-control li.slick-arrow:not(.slick-disabled):focus span, .slick-control li.slick-arrow:not(.slick-disabled):active span {border-color: #a8d8ff;}.section-banner .slide-inner .banner-content .button-container .button-outline {border-color: #ffffff;color: #ffffff;}.section-banner .slide-inner .banner-content .button-container .button-outline:hover,.section-banner .slide-inner .banner-content .button-container .button-outline:focus,.section-banner .slide-inner .banner-content .button-container .button-outline:active {background-color: #a8d8ff;border-color: #a8d8ff;color: #FFFFFF;}.section-banner .slide-inner .banner-content .button-container a {border-radius: 0px;}.main-slider .banner-img {background-position: center center;background-repeat: no-repeat;background-size: cover;}.site-footer.has-footer-bg .site-footer-inner {background-position: center center;background-repeat: no-repeat;background-size: cover;}.footer-widget-wrap {padding-top: 0px;padding-bottom: 50px;}.top-footer {background-color: ;}.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6,.site-footer .product-title {color: #030303;}.site-footer .widget .widget-title:before {background-color: #030303;}.site-footer a, .site-footer .widget ul li a,.site-footer .widget .tagcloud a,.site-footer .post .entry-meta a,.site-footer .post .entry-meta a:before {color: #656565;}.widget ul li,.latest-posts-widget .post {border-bottom-color: rgba(101,101,101,0.2);}.site-footer .widget .tagcloud a {border-color: #656565;}.site-footer,.site-footer table th, .site-footer table td,.site-footer .widget.widget_calendar table {color: #656565;}.site-footer a:hover, .site-footer a:focus, .site-footer a:active, .site-footer .widget ul li a:hover, .site-footer .widget ul li a:focus, .site-footer .widget ul li a:active,.site-footer .post .entry-meta a:hover, .site-footer .post .entry-meta a:focus, .site-footer .post .entry-meta a:active,.site-footer .post .entry-meta a:hover:before, .site-footer .post .entry-meta a:focus:before, .site-footer .post .entry-meta a:active:before {color: #086abd;}.site-footer .widget .tagcloud a:hover,.site-footer .widget .tagcloud a:focus,.site-footer .widget .tagcloud a:active {background-color: #086abd;border-color: #086abd;color: #FFFFFF;}.bottom-footer {padding-top: 30px;padding-bottom: 30px;}.bottom-footer {background-color: ;}.bottom-footer {color: #656565;}.site-footer .social-profile ul li a {background-color: rgba(56,56,56,0.1);}.site-info a, .site-footer .social-profile ul li a, .footer-menu ul li a {color: #383838;}.site-footer .site-info a:hover, .site-footer .site-info a:focus, .site-footer .site-info a:active, .site-footer .footer-menu ul li a:hover,.site-footer .footer-menu ul li a:focus,.site-footer .footer-menu ul li a:active {color: #086abd;}.site-footer .social-profile ul li a:hover, .site-footer .social-profile ul li a:focus, .site-footer .social-profile ul li a:active {background-color: #086abd;}.site-footer .social-profile ul li a {font-size: 15px;}.feature-posts-content-wrap .feature-posts-image {background-position: center center;background-repeat: no-repeat;background-size: cover;}.feature-posts-content-wrap .feature-posts-image {border-radius: 0px;overflow: hidden;}.feature-posts-layout-one .feature-posts-image {-webkit-align-items: flex-end;-moz-align-items: flex-end;-ms-align-items: flex-end;-ms-flex-align: flex-end;align-items: flex-end;}.feature-posts-layout-one .feature-posts-content {margin-bottom: 20px;}.preloader-content {max-width: 40px;overflow: hidden;display: inline-block;}#primary article .entry-title {color: #101010;}#primary article .entry-title a:hover, #primary article .entry-title a:focus, #primary article .entry-title a:active {color: #086abd;}#primary article .entry-content .entry-header .cat-links a,#primary article .attachment .entry-content .entry-header .cat-links a {color: #EB5A3E;}#primary article .entry-content .entry-header .cat-links a {border-color: #EB5A3E;}#primary article .entry-content .entry-header .cat-links a:hover, #primary article .entry-content .entry-header .cat-links a:focus, #primary article .entry-content .entry-header .cat-links a:active {color: #086abd;border-color: #086abd;}#primary article .entry-meta a {color: #7a7a7a;}#primary article .entry-meta a:before {color: #EB5A3E;}#primary article .entry-meta a:hover,#primary article .entry-meta a:focus,#primary article .entry-meta a:active,#primary article .entry-meta a:hover:before,#primary article .entry-meta a:focus:before,#primary article .entry-meta a:active:before {color: #086abd;}#primary article .entry-text {color: #333333;}#primary article .featured-image a {border-radius: 0px;}#primary article.sticky .featured-image a { border-radius: 0px;}article.sticky {border-radius: 0px;}.feature-posts-content .feature-posts-title {color: #FFFFFF;}.feature-posts-layout-one .feature-posts-content .feature-posts-title a:after {background-color: #FFFFFF;}.feature-posts-content .feature-posts-title a:hover, .feature-posts-content .feature-posts-title a:focus, .feature-posts-content .feature-posts-title a:active {color: #a8d8ff;}.feature-posts-layout-one .feature-posts-content .feature-posts-title a:hover:after, .feature-posts-layout-one .feature-posts-content .feature-posts-title a:focus:after, .feature-posts-layout-one .feature-posts-content .feature-posts-title a:active:after {background-color: #a8d8ff;}.feature-posts-content .cat-links a {color: #FFFFFF;}.feature-posts-layout-one .feature-posts-content .cat-links a {background-color: #EB5A3E;}.feature-posts-layout-one .feature-posts-content .cat-links a:hover,.feature-posts-layout-one .feature-posts-content .cat-links a:focus,.feature-posts-layout-one .feature-posts-content .cat-links a:active {background-color: #a8d8ff;color: #FFFFFF;}.post .feature-posts-content .entry-meta a {color: #FFFFFF;}.post .feature-posts-content .entry-meta a:before {color: #FFFFFF;}.post .feature-posts-content .entry-meta a:hover, .post .feature-posts-content .entry-meta a:focus, .post .feature-posts-content .entry-meta a:active,.post .feature-posts-content .entry-meta a:hover:before, .post .feature-posts-content .entry-meta a:focus:before, .post .feature-posts-content .entry-meta a:active:before {color: #a8d8ff;}.feature-posts-layout-one .feature-posts-image {height: 250px;overflow: hidden;}.highlight-post-slider .post .entry-content .entry-title {color: #030303;}.highlight-post-slider .entry-content .entry-title a:hover,.highlight-post-slider .entry-content .entry-title a:focus,.highlight-post-slider .entry-content .entry-title a:active {color: #086abd;}.highlight-post-slider .post .cat-links a {background-color: #1f1f1f;}.highlight-post-slider .post .cat-links a {color: #FFFFFF;}.highlight-post-slider .post .cat-links a:hover,.highlight-post-slider .post .cat-links a:focus,.highlight-post-slider .post .cat-links a:active {background-color: #086abd;color: #FFFFFF;}.highlight-post-slider .post .entry-meta a {color: #7a7a7a;}.highlight-post-slider .post .entry-meta a:before {color: #EB5A3E;}.highlight-post-slider .post .entry-meta a:hover,.highlight-post-slider .post .entry-meta a:focus,.highlight-post-slider .post .entry-meta a:active,.highlight-post-slider .post .entry-meta a:hover:before,.highlight-post-slider .post .entry-meta a:focus:before,.highlight-post-slider .post .entry-meta a:active:before {color: #086abd;}.section-highlight-post .featured-image a {border-radius: 0px;overflow: hidden;}@media screen and (max-width: 767px){#back-to-top {display: none !important;}}.woocommerce .products li.product .woo-product-image img {border-radius: 0px;}.woocommerce .button-cart_button_two a.button {background-color: #333333;color: #ffffff;}.woocommerce .button-cart_button_three > a.button {border-bottom-color: #ffffff;color: #ffffff;}.woocommerce .button-cart_button_four > a.button {background-color: #333333;color: #ffffff;}.woocommerce ul.products li.product .button-cart_button_two a.button:hover,.woocommerce ul.products li.product .button-cart_button_two a.button:focus,.woocommerce ul.products li.product .button-cart_button_four > a.button:hover,.woocommerce ul.products li.product .button-cart_button_four > a.button:focus {background-color: #086abd;color: #FFFFFF;}.woocommerce ul.products li.product .button-cart_button_three > a.button:hover,.woocommerce ul.products li.product .button-cart_button_three > a.button:focus {border-color: #086abd;color: #086abd;}.woocommerce .button-cart_button_four > a.button {border-radius: 0px;}.woocommerce .button-cart_button_two a.button {border-radius: 0px;}.woocommerce ul.products li.product .button-cart_button_four {left: 10px;bottom: 10px;}.woocommerce ul.products li.product .onsale {top: 8px;right: 8px;}.woocommerce ul.products li.product span.onsale {background-color: #EB5A3E;color: #ffffff;}.woocommerce ul.products li.product span.onsale {border-radius: 0px;}bodyclass*woocommerce ul.products li .product-compare-wishlist a {opacity: 0;z-index: 99;}bodyclass*woocommerce ul.products li .product-wishlist a {top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);-moz-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);-o-transform: translate(-50%, -50%);transform: translate(-50%, -50%);}bodyclass*woocommerce ul.products li .product-compare a {top: 50%;left: 50%;-webkit-transform: translate(-60px, -50%);-moz-transform: translate(-60px, -50%);-ms-transform: translate(-60px, -50%);-o-transform: translate(-60px, -50%);transform: translate(-60px, -50%);}bodyclass*woocommerce ul.products li .product-view a {top: 50%;left: 50%;-webkit-transform: translate(25px, -50%);-moz-transform: translate(25px, -50%);-ms-transform: translate(25px, -50%);-o-transform: translate(25px, -50%);transform: translate(25px, -50%);}bodyclass*woocommerce ul.products li .product-compare-wishlist a i {background-color: #ffffff;border-radius: 100px;line-height: 35px;height: 35px;text-align: center;width: 35px;}bodyclass*woocommerce ul.products li:hover .product-compare-wishlist a, bodyclass*woocommerce ul.products li:focus .product-compare-wishlist a {opacity: 1;}bodyclass*woocommerce ul.products li .product-compare-wishlist a i {background-color: #ffffff;}bodyclass*woocommerce ul.products li .product-compare-wishlist a i {color: #383838;}.woocommerce ul.products li.product .product-inner {text-align: center;}/style>meta namegenerator contentElementor 3.26.4; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap> style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } /style> meta namegenerator contentPowered by Slider Revolution 6.6.14 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface. />link relicon hrefhttps://tigertechonline.ca/wp-content/uploads/2023/11/cropped-RY-LOGO-32x32.jpg sizes32x32 />link relicon hrefhttps://tigertechonline.ca/wp-content/uploads/2023/11/cropped-RY-LOGO-192x192.jpg sizes192x192 />link relapple-touch-icon hrefhttps://tigertechonline.ca/wp-content/uploads/2023/11/cropped-RY-LOGO-180x180.jpg />meta namemsapplication-TileImage contenthttps://tigertechonline.ca/wp-content/uploads/2023/11/cropped-RY-LOGO-270x270.jpg />style>/* Site Title */.header-four .site-branding .site-title {color: #030303;}/* Tagline */.header-four .site-branding .site-description {color: #767676;}.header-four .top-header {background-color: ;}.header-four .header-navigation ul li a,.header-four .header-contact ul a,.header-four .header-contact ul li {color: #333333;}.header-four .header-navigation ul li a:hover,.header-four .header-navigation ul li a:focus,.header-four .header-navigation ul li a:active,.header-four .header-contact ul a:hover,.header-four .header-contact ul a:focus,.header-four .header-contact ul a:active {color: #086abd;}.mid-header .overlay {background-color: ;}.mid-header .header-cart a.cart-icon, .mid-header .header-my-account a, .mid-header .header-wishlist a, .mid-header .header-compare a {color: #333333;}.header-right .header-svg-icon svg path {fill: #333333;}.mid-header .header-cart a.cart-icon:hover, .mid-header .header-cart a.cart-icon:focus, .mid-header .header-cart a.cart-icon:active,.header-four .site-branding .site-title a:hover,.header-four .site-branding .site-title a:focus,.header-four .site-branding .site-title a:active,.mid-header .header-my-account a:hover, .mid-header .header-my-account a:focus, .mid-header .header-my-account a:active, .mid-header .header-wishlist a:hover, .mid-header .header-wishlist a:focus, .mid-header .header-wishlist a:active, .mid-header .header-compare a:hover,.mid-header .header-compare a:focus,.mid-header .header-compare a:active {color: #086abd;}.header-right a:hover .header-svg-icon svg path,.header-right a:focus .header-svg-icon svg path {fill: #086abd;}@media only screen and (min-width: 992px) {.site-header:not(.sticky-header) .header-image-wrap {height: 110px;width: 100%;position: relative;}}.header-four .bottom-header {background-color: ;}.header-four .social-profile ul li a,.header-four .main-navigation ul.menu > li > a {color: #333333;}.header-four .alt-menu-icon .icon-bar, .header-four .alt-menu-icon .icon-bar:before, .header-four .alt-menu-icon .icon-bar:after {background-color: #333333;}.header-four .main-navigation ul.menu li a:hover,.header-four .main-navigation ul.menu li a:focus,.header-four .main-navigation ul.menu li a:active,.header-four .main-navigation ul.menu li.current-menu-item > a,.header-four .main-navigation ul.menu li.current_page_item > a,.header-four .main-navigation ul.menu > li:hover > a, .header-four .main-navigation ul.menu > li:focus > a, .header-four .main-navigation ul.menu > li:active > a, .header-four .social-profile ul li a:hover,.header-four .social-profile ul li a:focus,.header-four .social-profile ul li a:active {color: #086abd;}.header-four .alt-menu-icon a:hover .icon-bar, .header-four .alt-menu-icon a:focus .icon-bar, .header-four .alt-menu-icon a:active .icon-bar, .header-four .alt-menu-icon a:hover .icon-bar:before, .header-four .alt-menu-icon a:focus .icon-bar:before, .header-four .alt-menu-icon a:active .icon-bar:before, .header-four .alt-menu-icon a:hover .icon-bar:after,.header-four .alt-menu-icon a:focus .icon-bar:after,.header-four .alt-menu-icon a:active .icon-bar:after {background-color: #086abd;}.feature-posts-layout-one .feature-posts-image {height: 350px;overflow: hidden;}/* Primary Background */.header-cart a.cart-icon span.count {background-color: #EB5A3E;}/style>script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW window.RSIWundefined ? window.innerWidth : window.RSIW; window.RSIH window.RSIHundefined ? window.innerHeight : window.RSIH; try { var pw document.getElementById(e.c).parentNode.offsetWidth, newh; pw pw0 || isNaN(pw) || (e.lfullwidth || e.layoutfullwidth) ? window.RSIW : pw; e.tabw e.tabwundefined ? 0 : parseInt(e.tabw); e.thumbw e.thumbwundefined ? 0 : parseInt(e.thumbw); e.tabh e.tabhundefined ? 0 : parseInt(e.tabh); e.thumbh e.thumbhundefined ? 0 : parseInt(e.thumbh); e.tabhide e.tabhideundefined ? 0 : parseInt(e.tabhide); e.thumbhide e.thumbhideundefined ? 0 : parseInt(e.thumbhide); e.mh e.mhundefined || e.mh || e.mhauto ? 0 : parseInt(e.mh,0); if(e.layoutfullscreen || e.lfullscreen) 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.gwiundefined || e.gwi0) e.gwi e.gwi-1; e.gh e.elundefined || e.el || (Array.isArray(e.el) && e.el.length0)? e.gh : e.el; e.gh Array.isArray(e.gh) ? e.gh : e.gh; for (var i in e.rl) if (e.ghiundefined || e.ghi0) e.ghi e.ghi-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) nli e.rliwindow.RSIW ? 0 : e.rli; sl nl0; for (var i in nl) if (sl>nli && nli>0) { sl nli; ixi;} var m pw>(e.gwix+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gwix); newh (e.ghix * 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 idkirki-inline-styles>.site-header .site-branding .site-title{font-family:Encode Sans Condensed;}.site-header .site-branding .site-description{font-family:Encode Sans;}.main-navigation ul.menu li a,.slicknav_menu .slicknav_nav li a{font-family:Encode Sans Condensed;line-height:1.5;}.main-navigation .menu-description, .slicknav_menu .menu-description{font-family:Encode Sans Condensed;}body{font-family:Poppins;font-size:15px;font-weight:400;}h1,h2,h3,h4,h5,h6{font-family:Encode Sans Condensed;}.page-title{font-family:Encode Sans Condensed;}.sidebar .widget .widget-title{font-family:Jost;font-size:18px;font-weight:500;line-height:1.4;text-transform:uppercase;}.site-footer .widget .widget-title{font-family:Jost;font-size:20px;font-weight:500;line-height:1.4;text-transform:none;}.site-footer .footer-menu ul li a,.site-footer .site-info{font-size:30;text-transform:capitalize;}.section-banner .banner-content .entry-title{font-family:Jost;font-size:52px;font-weight:600;line-height:1.2;text-transform:uppercase;}.section-banner .banner-content .entry-header .cat-links a{font-family:Poppins;font-size:15px;font-weight:400;line-height:1.6;text-transform:uppercase;}.section-banner .banner-content .entry-meta a{font-family:Poppins;font-size:13px;font-weight:400;line-height:1.6;text-transform:capitalize;}.section-banner .banner-content .entry-text p{font-family:Poppins;font-size:15px;font-weight:400;line-height:1.8;text-transform:initial;}.section-banner .slide-inner .banner-content .button-container a{font-family:Jost;font-size:14px;font-weight:400;line-height:1.4;text-transform:uppercase;}.post .feature-posts-content .cat-links a{font-family:Poppins;font-size:13px;font-weight:400;line-height:1;text-transform:uppercase;}.post .feature-posts-content .entry-meta a{font-family:Poppins;font-size:13px;font-weight:400;line-height:1.6;text-transform:capitalize;}.highlight-post-slider .post .cat-links a{font-family:Poppins;font-size:13px;font-weight:400;line-height:1;text-transform:capitalize;}.highlight-post-slider .post .entry-content .entry-title{font-family:Jost;font-size:20px;font-weight:600;line-height:1.4;text-transform:none;}.highlight-post-slider .post .entry-meta a{font-family:Poppins;font-size:13px;font-weight:400;line-height:1.6;text-transform:capitalize;}#primary article .entry-title{font-family:Jost;font-size:22px;font-weight:600;line-height:1.4;text-transform:capitalize;}#primary .post .entry-content .entry-header .cat-links a{font-family:Poppins;font-size:13px;font-weight:400;line-height:1;text-transform:uppercase;}#primary .entry-meta{font-family:Poppins;font-size:13px;font-weight:400;line-height:1.6;text-transform:capitalize;}#primary .entry-text p{font-family:Poppins;font-size:15px;font-weight:400;line-height:1.8;text-transform:initial;}.feature-posts-content-wrap .feature-posts-content .feature-posts-title{font-family:Jost;font-size:18px;font-weight:500;line-height:1.4;text-transform:capitalize;}/* cyrillic-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format(woff2); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}/* cyrillic */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* greek-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format(woff2); unicode-range: U+1F00-1FFF;}/* greek */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format(woff2); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;}/* hebrew */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format(woff2); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;}/* math */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format(woff2); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;}/* symbols */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format(woff2); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;}/* vietnamese */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format(woff2); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}/* cyrillic */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* greek-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format(woff2); unicode-range: U+1F00-1FFF;}/* greek */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format(woff2); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;}/* hebrew */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format(woff2); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;}/* math */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format(woff2); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;}/* symbols */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format(woff2); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;}/* vietnamese */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format(woff2); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}/* cyrillic */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* greek-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format(woff2); unicode-range: U+1F00-1FFF;}/* greek */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format(woff2); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;}/* hebrew */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format(woff2); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;}/* math */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format(woff2); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;}/* symbols */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format(woff2); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;}/* vietnamese */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* vietnamese */@font-face { font-family: Encode Sans Condensed; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans-condensed/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfT2ia-MPw8.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Encode Sans Condensed; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans-condensed/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfT2iK-MPw8.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Encode Sans Condensed; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans-condensed/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfT2hq-M.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* vietnamese */@font-face { font-family: Encode Sans; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjVt2F7WJC.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Encode Sans; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjVtyF7WJC.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Encode Sans; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjVtKF7Q.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* latin-ext */@font-face { font-family: Poppins; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Poppins; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiEyp8kv8JHgFVrJJfecg.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* latin-ext */@font-face { font-family: Poppins; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Poppins; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic */@font-face { font-family: Jost; font-style: normal; font-weight: 500; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oDd4iYl.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* latin-ext */@font-face { font-family: Jost; font-style: normal; font-weight: 500; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73ord4iYl.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Jost; font-style: normal; font-weight: 500; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oTd4g.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic */@font-face { font-family: Jost; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oDd4iYl.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* latin-ext */@font-face { font-family: Jost; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73ord4iYl.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Jost; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oTd4g.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format(woff2); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}/* cyrillic */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* greek-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format(woff2); unicode-range: U+1F00-1FFF;}/* greek */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format(woff2); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;}/* hebrew */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format(woff2); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;}/* math */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format(woff2); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;}/* symbols */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format(woff2); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;}/* vietnamese */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format(woff2); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}/* cyrillic */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* greek-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format(woff2); unicode-range: U+1F00-1FFF;}/* greek */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format(woff2); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;}/* hebrew */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format(woff2); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;}/* math */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format(woff2); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;}/* symbols */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format(woff2); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;}/* vietnamese */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format(woff2); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}/* cyrillic */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* greek-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format(woff2); unicode-range: U+1F00-1FFF;}/* greek */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format(woff2); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;}/* hebrew */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format(woff2); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;}/* math */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format(woff2); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;}/* symbols */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format(woff2); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;}/* vietnamese */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* vietnamese */@font-face { font-family: Encode Sans Condensed; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans-condensed/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfT2ia-MPw8.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Encode Sans Condensed; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans-condensed/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfT2iK-MPw8.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Encode Sans Condensed; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans-condensed/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfT2hq-M.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* vietnamese */@font-face { font-family: Encode Sans; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjVt2F7WJC.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Encode Sans; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjVtyF7WJC.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Encode Sans; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjVtKF7Q.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* latin-ext */@font-face { font-family: Poppins; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Poppins; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiEyp8kv8JHgFVrJJfecg.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* latin-ext */@font-face { font-family: Poppins; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Poppins; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic */@font-face { font-family: Jost; font-style: normal; font-weight: 500; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oDd4iYl.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* latin-ext */@font-face { font-family: Jost; font-style: normal; font-weight: 500; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73ord4iYl.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Jost; font-style: normal; font-weight: 500; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oTd4g.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic */@font-face { font-family: Jost; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oDd4iYl.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* latin-ext */@font-face { font-family: Jost; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73ord4iYl.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Jost; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oTd4g.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format(woff2); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}/* cyrillic */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* greek-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format(woff2); unicode-range: U+1F00-1FFF;}/* greek */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format(woff2); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;}/* hebrew */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format(woff2); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;}/* math */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format(woff2); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;}/* symbols */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format(woff2); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;}/* vietnamese */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Open Sans; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format(woff2); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}/* cyrillic */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* greek-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format(woff2); unicode-range: U+1F00-1FFF;}/* greek */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format(woff2); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;}/* hebrew */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format(woff2); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;}/* math */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format(woff2); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;}/* symbols */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format(woff2); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;}/* vietnamese */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Open Sans; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format(woff2); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}/* cyrillic */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* greek-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format(woff2); unicode-range: U+1F00-1FFF;}/* greek */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format(woff2); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;}/* hebrew */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format(woff2); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;}/* math */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format(woff2); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;}/* symbols */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format(woff2); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;}/* vietnamese */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Open Sans; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* vietnamese */@font-face { font-family: Encode Sans Condensed; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans-condensed/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfT2ia-MPw8.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Encode Sans Condensed; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans-condensed/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfT2iK-MPw8.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Encode Sans Condensed; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans-condensed/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfT2hq-M.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* vietnamese */@font-face { font-family: Encode Sans; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjVt2F7WJC.woff2) format(woff2); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}/* latin-ext */@font-face { font-family: Encode Sans; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjVtyF7WJC.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Encode Sans; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/encode-sans/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjVtKF7Q.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* latin-ext */@font-face { font-family: Poppins; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Poppins; font-style: normal; font-weight: 400; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiEyp8kv8JHgFVrJJfecg.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* latin-ext */@font-face { font-family: Poppins; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Poppins; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/poppins/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic */@font-face { font-family: Jost; font-style: normal; font-weight: 500; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oDd4iYl.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* latin-ext */@font-face { font-family: Jost; font-style: normal; font-weight: 500; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73ord4iYl.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Jost; font-style: normal; font-weight: 500; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oTd4g.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/* cyrillic */@font-face { font-family: Jost; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oDd4iYl.woff2) format(woff2); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}/* latin-ext */@font-face { font-family: Jost; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73ord4iYl.woff2) format(woff2); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}/* latin */@font-face { font-family: Jost; font-style: normal; font-weight: 600; font-display: swap; src: url(https://tigertechonline.ca/wp-content/fonts/jost/92zatBhPNqw73oTd4g.woff2) format(woff2); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/style>style idwpforms-css-vars-root> :root { --wpforms-field-border-radius: 3px;--wpforms-field-border-style: solid;--wpforms-field-border-size: 1px;--wpforms-field-background-color: #ffffff;--wpforms-field-border-color: rgba( 0, 0, 0, 0.25 );--wpforms-field-border-color-spare: rgba( 0, 0, 0, 0.25 );--wpforms-field-text-color: rgba( 0, 0, 0, 0.7 );--wpforms-field-menu-color: #ffffff;--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-border-style: none;--wpforms-button-border-size: 1px;--wpforms-button-background-color: #066aab;--wpforms-button-border-color: #066aab;--wpforms-button-text-color: #ffffff;--wpforms-page-break-color: #066aab;--wpforms-background-image: none;--wpforms-background-position: center center;--wpforms-background-repeat: no-repeat;--wpforms-background-size: cover;--wpforms-background-width: 100px;--wpforms-background-height: 100px;--wpforms-background-color: rgba( 0, 0, 0, 0 );--wpforms-background-url: none;--wpforms-container-padding: 0px;--wpforms-container-border-style: none;--wpforms-container-border-width: 1px;--wpforms-container-border-color: #000000;--wpforms-container-border-radius: 3px;--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;--wpforms-container-shadow-size-box-shadow: none; } /style>/head>body classhome page-template page-template-elementor_theme page page-id-5274 wp-custom-logo default-skin no-sidebar site-layout-default elementor-default elementor-kit-12 elementor-page elementor-page-5274> div idsite-preloader> div classpreloader-content> img srchttps://tigertechonline.ca/wp-content/themes/bosa/assets/images/preloader1.gif alt> /div> /div>div idpage classsite> a classskip-link screen-reader-text href#content>Skip to content/a> header idmasthead classsite-header header-four> div classtop-header> div classtop-header-inner> div classcontainer> div classrow align-items-center> div classcol-lg-7 d-none d-lg-block> div classheader-contact> ul> li> /li> li> /li> li> /li> /ul> /div> /div> div classcol-lg-5 d-none d-lg-block text-right> nav classheader-navigation> /nav>!-- #site-navigation --> /div> /div> /div> /div> div classalt-menu-icon d-lg-none> a classoffcanvas-menu-toggler href#> span classicon-bar-wrap> span classicon-bar>/span> /span> span classiconbar-label d-lg-none>TOP MENU/span> /a> /div> /div> div classmid-header header-image-wrap> div classcontainer> div classrow align-items-center> div classcol-md-3> div classsite-branding> a hrefhttps://tigertechonline.ca/ relhome> img srchttps://tigertechonline.ca/wp-content/uploads/2023/11/cropped-cropped-Add-a-heading-1-1.png idheaderLogo> /a> p classsite-title>a hrefhttps://tigertechonline.ca/ relhome>/a>/p> /div>!-- .site-branding --> div idslicknav-mobile classd-block d-lg-none>/div> /div> div classcol-md-6 d-none d-md-block> /div> div classcol-md-3 d-none d-md-block> /div> /div> /div> div classoverlay>/div> /div> div classbottom-header fixed-header> div classcontainer> div classrow align-items-center> div classcol-lg-9 d-none d-lg-block> nav idsite-navigation classmain-navigation d-none d-lg-flex> button classmenu-toggle aria-controlsprimary-menu aria-expandedfalse>Primary Menu/button> ul idprimary-menu classmenu nav-menu>li idmenu-item-5539 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-5274 current_page_item menu-item-5539>a hrefhttps://tigertechonline.ca/ aria-currentpage>Home/a>/li>li idmenu-item-5540 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-5540>a hrefhttps://tigertechonline.ca/about-us/>About Us/a>/li>li idmenu-item-5541 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-5541>a hrefhttps://tigertechonline.ca/shop/>Shop/a>/li>li idmenu-item-5542 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-5542>a relprivacy-policy hrefhttps://tigertechonline.ca/refund-and-returns-policy/>Refund and Returns Policy/a>/li>li idmenu-item-5615 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-5615>a hrefhttps://tigertechonline.ca/contact-us/>Contact Us/a>/li>/ul> /nav>!-- #site-navigation --> /div> div classcol-lg-3 d-none d-lg-block> div classheader-icons> /div> /div> /div> /div> !-- header search form end--> div classmobile-menu-container>/div> /div> div idoffcanvas-menu classoffcanvas-menu-wrap> div classclose-offcanvas-menu> button classfas fa-times>/button> /div> div classoffcanvas-menu-inner> div classoffcanvas-menu-content> !-- woocommerce search form --> !-- header secondary menu --> nav classheader-navigation d-lg-none> /nav>!-- #site-navigation --> !-- header search field --> !-- header callback button --> !-- header contact details --> !-- header social icons --> /div> !-- header sidebar --> /div>/div>/header>!-- #masthead -->div idcontent classsite-content> div classcontainer> section classwrap-detail-page> div classbreadcrumb-wrap> /div> div classrow> div idprimary classcontent-area col-12> main idmain classsite-main> article idpost-5274 classpost-5274 page type-page status-publish hentry> div classentry-content> div data-elementor-typewp-page data-elementor-id5274 classelementor elementor-5274> div classelementor-section elementor-top-section elementor-element elementor-element-5d0927e3 elementor-section-full_width elementor-section-stretched elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-height-default elementor-section-height-default data-id5d0927e3 data-element_typesection data-settings{"stretch_section":"section-stretched","background_background":"classic"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-352cb5f2 data-id352cb5f2 data-element_typecolumn data-settings{"background_background":"classic"}> div classelementor-widget-wrap> /div> /div> /div> /div> div classelementor-element elementor-element-f8db6df e-grid e-con-boxed e-con e-parent data-idf8db6df data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-af67091 elementor-widget elementor-widget-image data-idaf67091 data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img fetchpriorityhigh decodingasync width300 height215 srchttps://tigertechonline.ca/wp-content/uploads/2023/11/RY-LOGO-e1713296034230-300x215.jpg classattachment-medium size-medium wp-image-5532 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2023/11/RY-LOGO-e1713296034230-300x215.jpg 300w, https://tigertechonline.ca/wp-content/uploads/2023/11/RY-LOGO-e1713296034230-768x550.jpg 768w, https://tigertechonline.ca/wp-content/uploads/2023/11/RY-LOGO-e1713296034230-420x300.jpg 420w, https://tigertechonline.ca/wp-content/uploads/2023/11/RY-LOGO-e1713296034230-600x430.jpg 600w, https://tigertechonline.ca/wp-content/uploads/2023/11/RY-LOGO-e1713296034230-24x17.jpg 24w, https://tigertechonline.ca/wp-content/uploads/2023/11/RY-LOGO-e1713296034230-36x26.jpg 36w, https://tigertechonline.ca/wp-content/uploads/2023/11/RY-LOGO-e1713296034230-48x34.jpg 48w, https://tigertechonline.ca/wp-content/uploads/2023/11/RY-LOGO-e1713296034230.jpg 832w sizes(max-width: 300px) 100vw, 300px /> /div> /div> div classelementor-element elementor-element-e0f65ba elementor-widget elementor-widget-text-editor data-ide0f65ba data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>Established in 2021, RY TigerTech Online is a trusted company dedicated to providing a wide selection of both new and high-quality refurbished IT equipment. Our focus on sustainability and affordability drives us to offer a diverse range of consumer electronics, encompassing laptops, iPads, mobile phones, and assorted tech accessories. Whether you’re in need of brand-new technology or seeking a budget-friendly option without compromising on quality, RY TigerTech Online has you covered./p> /div> /div> /div> /div> div classelementor-element elementor-element-8c3df3a e-flex e-con-boxed e-con e-parent data-id8c3df3a data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-f8af2c9 elementor-widget elementor-widget-spacer data-idf8af2c9 data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-5dd7bb8 e-flex e-con-boxed e-con e-parent data-id5dd7bb8 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-2a37b04 elementor-widget elementor-widget-image data-id2a37b04 data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img decodingasync width720 height155 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-e1712973356108-768x165.png classattachment-medium_large size-medium_large wp-image-5657 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-e1712973356108-768x165.png 768w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-e1712973356108-300x64.png 300w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-e1712973356108-1024x220.png 1024w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-e1712973356108-1536x330.png 1536w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-e1712973356108-2048x440.png 2048w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-e1712973356108-600x129.png 600w sizes(max-width: 720px) 100vw, 720px /> /div> /div> /div> /div> div classelementor-element elementor-element-cbf4f99 e-grid e-con-boxed e-con e-parent data-idcbf4f99 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-1472855 elementor-widget elementor-widget-image data-id1472855 data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img decodingasync width512 height294 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/unnamed.jpg classattachment-full size-full wp-image-5665 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/unnamed.jpg 512w, https://tigertechonline.ca/wp-content/uploads/2024/04/unnamed-300x172.jpg 300w sizes(max-width: 512px) 100vw, 512px /> /div> /div> div classelementor-element elementor-element-04eae4b elementor-widget elementor-widget-text-editor data-id04eae4b data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p> /p>p>Laptops/p> /div> /div> div classelementor-element elementor-element-05a3a75 elementor-widget elementor-widget-image data-id05a3a75 data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img loadinglazy decodingasync width720 height424 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/iphone12-lineup-wide.webp classattachment-large size-large wp-image-5659 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/iphone12-lineup-wide.webp 800w, https://tigertechonline.ca/wp-content/uploads/2024/04/iphone12-lineup-wide-300x177.webp 300w, https://tigertechonline.ca/wp-content/uploads/2024/04/iphone12-lineup-wide-768x452.webp 768w, https://tigertechonline.ca/wp-content/uploads/2024/04/iphone12-lineup-wide-600x353.webp 600w sizes(max-width: 720px) 100vw, 720px /> /div> /div> div classelementor-element elementor-element-dcc5ee2 elementor-widget elementor-widget-text-editor data-iddcc5ee2 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p> /p>p>Mobile Phones/p> /div> /div> div classelementor-element elementor-element-b5bd96b elementor-widget elementor-widget-image data-idb5bd96b data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img loadinglazy decodingasync width720 height378 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/25472-34732-ipad-2018lineup-xl-1024x538.jpg classattachment-large size-large wp-image-5660 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/25472-34732-ipad-2018lineup-xl-1024x538.jpg 1024w, https://tigertechonline.ca/wp-content/uploads/2024/04/25472-34732-ipad-2018lineup-xl-300x158.jpg 300w, https://tigertechonline.ca/wp-content/uploads/2024/04/25472-34732-ipad-2018lineup-xl-768x403.jpg 768w, https://tigertechonline.ca/wp-content/uploads/2024/04/25472-34732-ipad-2018lineup-xl-590x310.jpg 590w, https://tigertechonline.ca/wp-content/uploads/2024/04/25472-34732-ipad-2018lineup-xl-600x315.jpg 600w, https://tigertechonline.ca/wp-content/uploads/2024/04/25472-34732-ipad-2018lineup-xl.jpg 1200w sizes(max-width: 720px) 100vw, 720px /> /div> /div> div classelementor-element elementor-element-149e582 elementor-widget elementor-widget-text-editor data-id149e582 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p> /p>p>iPads/p> /div> /div> div classelementor-element elementor-element-5d952c9 elementor-widget elementor-widget-image data-id5d952c9 data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img loadinglazy decodingasync width720 height548 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/Untitled-design-e1713055600101-1024x779.png classattachment-large size-large wp-image-5762 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/Untitled-design-e1713055600101-1024x779.png 1024w, https://tigertechonline.ca/wp-content/uploads/2024/04/Untitled-design-e1713055600101-300x228.png 300w, https://tigertechonline.ca/wp-content/uploads/2024/04/Untitled-design-e1713055600101-768x584.png 768w, https://tigertechonline.ca/wp-content/uploads/2024/04/Untitled-design-e1713055600101-1536x1168.png 1536w, https://tigertechonline.ca/wp-content/uploads/2024/04/Untitled-design-e1713055600101-80x60.png 80w, https://tigertechonline.ca/wp-content/uploads/2024/04/Untitled-design-e1713055600101-24x18.png 24w, https://tigertechonline.ca/wp-content/uploads/2024/04/Untitled-design-e1713055600101-36x27.png 36w, https://tigertechonline.ca/wp-content/uploads/2024/04/Untitled-design-e1713055600101-48x37.png 48w, https://tigertechonline.ca/wp-content/uploads/2024/04/Untitled-design-e1713055600101-600x456.png 600w, https://tigertechonline.ca/wp-content/uploads/2024/04/Untitled-design-e1713055600101.png 1653w sizes(max-width: 720px) 100vw, 720px /> /div> /div> div classelementor-element elementor-element-c9bc29b elementor-widget elementor-widget-text-editor data-idc9bc29b data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p> /p>p>Tech Accessories/p> /div> /div> /div> /div> div classelementor-element elementor-element-6e02d05 e-flex e-con-boxed e-con e-parent data-id6e02d05 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-ae4fd7f elementor-widget elementor-widget-spacer data-idae4fd7f data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-77d0dd4 e-flex e-con-boxed e-con e-parent data-id77d0dd4 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-76c82c4 elementor-widget elementor-widget-image data-id76c82c4 data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img loadinglazy decodingasync width720 height124 srchttps://tigertechonline.ca/wp-content/uploads/2023/11/About-Us-1-1-e1700526317906-768x132.png classattachment-medium_large size-medium_large wp-image-5592 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2023/11/About-Us-1-1-e1700526317906-768x132.png 768w, https://tigertechonline.ca/wp-content/uploads/2023/11/About-Us-1-1-e1700526317906-300x51.png 300w, https://tigertechonline.ca/wp-content/uploads/2023/11/About-Us-1-1-e1700526317906-1024x176.png 1024w, https://tigertechonline.ca/wp-content/uploads/2023/11/About-Us-1-1-e1700526317906-1536x264.png 1536w, https://tigertechonline.ca/wp-content/uploads/2023/11/About-Us-1-1-e1700526317906-2048x351.png 2048w, https://tigertechonline.ca/wp-content/uploads/2023/11/About-Us-1-1-e1700526317906-600x103.png 600w sizes(max-width: 720px) 100vw, 720px /> /div> /div> /div> /div> div classelementor-element elementor-element-cf3f111 e-flex e-con-boxed e-con e-parent data-idcf3f111 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-ec44591 elementor-widget elementor-widget-spacer data-idec44591 data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-c650134 e-grid e-con-boxed e-con e-parent data-idc650134 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-ef8494e elementor-widget elementor-widget-image data-idef8494e data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img loadinglazy decodingasync width150 height150 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/download-150x150.png classattachment-thumbnail size-thumbnail wp-image-5650 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/download-150x150.png 150w, https://tigertechonline.ca/wp-content/uploads/2024/04/download-100x100.png 100w, https://tigertechonline.ca/wp-content/uploads/2024/04/download.png 225w sizes(max-width: 150px) 100vw, 150px /> /div> /div> div classelementor-element elementor-element-e27afc7 elementor-widget elementor-widget-text-editor data-ide27afc7 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p> /p>p>100 % Customer Satisfaction/p> /div> /div> div classelementor-element elementor-element-5efe72a elementor-widget elementor-widget-image data-id5efe72a data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img loadinglazy decodingasync width150 height150 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/1875684-150x150.png classattachment-thumbnail size-thumbnail wp-image-5651 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/1875684-150x150.png 150w, https://tigertechonline.ca/wp-content/uploads/2024/04/1875684-300x300.png 300w, https://tigertechonline.ca/wp-content/uploads/2024/04/1875684-100x100.png 100w, https://tigertechonline.ca/wp-content/uploads/2024/04/1875684.png 512w sizes(max-width: 150px) 100vw, 150px /> /div> /div> div classelementor-element elementor-element-f6a30d6 elementor-widget elementor-widget-text-editor data-idf6a30d6 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p> /p>p>Quality Assurance/p> /div> /div> div classelementor-element elementor-element-b768ead elementor-widget elementor-widget-image data-idb768ead data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img loadinglazy decodingasync width150 height150 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/8920621-150x150.png classattachment-thumbnail size-thumbnail wp-image-5652 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/8920621-150x150.png 150w, https://tigertechonline.ca/wp-content/uploads/2024/04/8920621-300x300.png 300w, https://tigertechonline.ca/wp-content/uploads/2024/04/8920621-100x100.png 100w, https://tigertechonline.ca/wp-content/uploads/2024/04/8920621.png 512w sizes(max-width: 150px) 100vw, 150px /> /div> /div> div classelementor-element elementor-element-c2a48a7 elementor-widget elementor-widget-text-editor data-idc2a48a7 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p> /p>p>Trusted Expertise/p> /div> /div> /div> /div> div classelementor-element elementor-element-b800642 e-flex e-con-boxed e-con e-parent data-idb800642 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-79ac2a8 elementor-widget elementor-widget-spacer data-id79ac2a8 data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-5e920ca e-flex e-con-boxed e-con e-parent data-id5e920ca data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-57f1668 elementor-widget elementor-widget-image data-id57f1668 data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img loadinglazy decodingasync width720 height143 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-2-e1713295955151-768x153.png classattachment-medium_large size-medium_large wp-image-5778 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-2-e1713295955151-768x153.png 768w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-2-e1713295955151-300x60.png 300w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-2-e1713295955151-1024x204.png 1024w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-2-e1713295955151-1536x307.png 1536w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-2-e1713295955151-2048x409.png 2048w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-2-e1713295955151-24x5.png 24w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-2-e1713295955151-36x7.png 36w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-2-e1713295955151-48x10.png 48w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-2-e1713295955151-600x120.png 600w sizes(max-width: 720px) 100vw, 720px /> /div> /div> /div> /div> div classelementor-element elementor-element-e691b0b e-grid e-con-boxed e-con e-parent data-ide691b0b data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-63990a5 elementor-widget elementor-widget-testimonial data-id63990a5 data-element_typewidget data-widget_typetestimonial.default> div classelementor-widget-container> div classelementor-testimonial-wrapper> div classelementor-testimonial-content>Tiger tech online hooked me up with my product within seconds. Shoutout to Ry for the amazing service. Timely, and product came pristine./div> div classelementor-testimonial-meta elementor-has-image elementor-testimonial-image-position-aside> div classelementor-testimonial-meta-inner> div classelementor-testimonial-image> img loadinglazy decodingasync width300 height300 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/4616289-300x300.png classattachment-medium size-medium wp-image-5715 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/4616289-300x300.png 300w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289-150x150.png 150w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289-24x24.png 24w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289-36x36.png 36w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289-48x48.png 48w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289-100x100.png 100w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289.png 512w sizes(max-width: 300px) 100vw, 300px /> /div> div classelementor-testimonial-details> div classelementor-testimonial-name>Jordan Meyer/div> div classelementor-testimonial-job> Customer; Google Reviews/div> /div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-573908c elementor-widget elementor-widget-testimonial data-id573908c data-element_typewidget data-widget_typetestimonial.default> div classelementor-widget-container> div classelementor-testimonial-wrapper> div classelementor-testimonial-content>Extremely quick response and very helpful rep./div> div classelementor-testimonial-meta elementor-has-image elementor-testimonial-image-position-aside> div classelementor-testimonial-meta-inner> div classelementor-testimonial-image> img loadinglazy decodingasync width512 height512 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/4616289.png classattachment-full size-full wp-image-5715 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/4616289.png 512w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289-300x300.png 300w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289-150x150.png 150w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289-24x24.png 24w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289-36x36.png 36w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289-48x48.png 48w, https://tigertechonline.ca/wp-content/uploads/2024/04/4616289-100x100.png 100w sizes(max-width: 512px) 100vw, 512px /> /div> div classelementor-testimonial-details> div classelementor-testimonial-name>O Jav/div> div classelementor-testimonial-job>Customer; Google Reviews/div> /div> /div> /div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-f36a9bd e-flex e-con-boxed e-con e-parent data-idf36a9bd data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-bc6eb3f elementor-widget elementor-widget-spacer data-idbc6eb3f data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> div classelementor-element elementor-element-2486b7d elementor-widget elementor-widget-image data-id2486b7d data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img loadinglazy decodingasync width720 height134 srchttps://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-1-e1712975034107-768x143.png classattachment-medium_large size-medium_large wp-image-5670 alt srcsethttps://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-1-e1712975034107-768x143.png 768w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-1-e1712975034107-300x56.png 300w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-1-e1712975034107-1024x191.png 1024w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-1-e1712975034107-1536x287.png 1536w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-1-e1712975034107-2048x382.png 2048w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-1-e1712975034107-24x4.png 24w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-1-e1712975034107-36x7.png 36w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-1-e1712975034107-48x9.png 48w, https://tigertechonline.ca/wp-content/uploads/2024/04/About-Us-1-e1712975034107-600x112.png 600w sizes(max-width: 720px) 100vw, 720px /> /div> /div> div classelementor-element elementor-element-2aa3887 elementor-widget elementor-widget-google_maps data-id2aa3887 data-element_typewidget data-widget_typegoogle_maps.default> div classelementor-widget-container> div classelementor-custom-embed> iframe loadinglazy srchttps://maps.google.com/maps?qL5V%201W1%20Mississauga%2C%20Ontario&tm&z10&outputembed&iwlocnear titleL5V 1W1 Mississauga, Ontario aria-labelL5V 1W1 Mississauga, Ontario >/iframe> /div> /div> /div> div classelementor-element elementor-element-8bd8e99 elementor-widget elementor-widget-spacer data-id8bd8e99 data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-dd3c84a e-grid e-con-boxed e-con e-parent data-iddd3c84a data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-cd089b6 elementor-widget elementor-widget-text-editor data-idcd089b6 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>Have Questions? We are happy to help 🙂/p> /div> /div> div classelementor-element elementor-element-1dfdd48 elementor-button-info elementor-align-center elementor-widget elementor-widget-button data-id1dfdd48 data-element_typewidget data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://tigertechonline.ca/contact-us/> span classelementor-button-content-wrapper> span classelementor-button-text>Contact Us/span> /span> /a> /div> /div> /div> /div> /div> div classelementor-element elementor-element-d4873d6 e-flex e-con-boxed e-con e-parent data-idd4873d6 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-18f9494 elementor-widget elementor-widget-spacer data-id18f9494 data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> div classelementor-element elementor-element-1c7383a elementor-widget elementor-widget-heading data-id1c7383a data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Follow Us on Social Media:/h2> /div> /div> div classelementor-element elementor-element-c3ce392 elementor-widget elementor-widget-spacer data-idc3ce392 data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-eeb4774 e-grid e-con-boxed e-con e-parent data-ideeb4774 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-65d4b60 elementor-view-stacked elementor-shape-circle elementor-widget elementor-widget-icon data-id65d4b60 data-element_typewidget data-widget_typeicon.default> div classelementor-widget-container> div classelementor-icon-wrapper> a classelementor-icon hrefhttps://www.facebook.com/profile.php?id100086532340754 target_blank> svg aria-hiddentrue classe-font-icon-svg e-fab-facebook-square viewBox0 0 448 512 xmlnshttp://www.w3.org/2000/svg>path dM400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z>/path>/svg> /a> /div> /div> /div> div classelementor-element elementor-element-a998c75 elementor-view-default elementor-widget elementor-widget-icon data-ida998c75 data-element_typewidget data-widget_typeicon.default> div classelementor-widget-container> div classelementor-icon-wrapper> a classelementor-icon hrefhttps://www.instagram.com/tigertechonline/ target_blank> i aria-hiddentrue classicon icon-instagram-1>/i> /a> /div> /div> /div> div classelementor-element elementor-element-e48cdd9 elementor-view-default elementor-widget elementor-widget-icon data-ide48cdd9 data-element_typewidget data-widget_typeicon.default> div classelementor-widget-container> div classelementor-icon-wrapper> a classelementor-icon hrefhttps://api.whatsapp.com/send/?phone2892423501&text&typephone_number&app_absent0 target_blank> i aria-hiddentrue classicon icon-whatsapp-1>/i> /a> /div> /div> /div> div classelementor-element elementor-element-f48372e elementor-view-default elementor-widget elementor-widget-icon data-idf48372e data-element_typewidget data-widget_typeicon.default> div classelementor-widget-container> div classelementor-icon-wrapper> a classelementor-icon hrefhttps://www.linkedin.com/company/ry-tigertech-online-inc/?viewAsMembertrue target_blank> svg aria-hiddentrue classe-font-icon-svg e-fab-linkedin viewBox0 0 448 512 xmlnshttp://www.w3.org/2000/svg>path dM416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z>/path>/svg> /a> /div> /div> /div> /div> /div> div classelementor-element elementor-element-7ffa8cd e-flex e-con-boxed e-con e-parent data-id7ffa8cd data-element_typecontainer> div classe-con-inner> /div> /div> /div> /div>!-- .entry-content --> /article>!-- #post-5274 --> /main>!-- #main --> /div>!-- #primary --> /div> /section> /div>!-- #container -->/div>!-- #content --> footer idcolophon classsite-footer site-footer-three > div classsite-footer-inner stylebackground-image: url(> div classbottom-footer> div classcontainer> div classrow align-items-center> !-- social links area --> !-- social links area --> div classcol-lg-12 text-center> div classfooter-desc-wrap> div classsite-info> Copyright © 2025 Bosa Ecommerce. Powered by a href//bosathemes.com target_blank> Bosa Themes /a>/div>!-- .site-info --> div classfooter-menu>!-- Footer Menu--> /div>!-- footer Menu--> /div> /div> /div> /div>/div> /div> /footer>!-- #colophon -->/div>!-- #page --> 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 true; window.RS_MODULES.moduleWaiting window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type compiled; /script> script typetext/javascript> const lazyloadRunObserver () > { const lazyloadBackgrounds document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver new IntersectionObserver( ( entries ) > { entries.forEach( ( entry ) > { if ( entry.isIntersecting ) { let lazyloadBackground entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( e-lazyloaded ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: 200px 0px 200px 0px } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) > { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events DOMContentLoaded, elementor/lazyload/observe, ; events.forEach( ( event ) > { document.addEventListener( event, lazyloadRunObserver ); } ); /script> style idcore-block-supports-inline-css typetext/css>/** * Core styles: block-supports *//style>link relstylesheet idbew-elementor-kit-owl-css-css hrefhttps://tigertechonline.ca/wp-content/plugins/bosa-elementor-for-woocommerce/assets/css/owl-carousel-min.css?ver6.7.1 typetext/css mediaall />link relstylesheet idbew-elementor-kit-owl-default-css hrefhttps://tigertechonline.ca/wp-content/plugins/bosa-elementor-for-woocommerce/assets/css/owl.theme.default.min.css?ver6.7.1 typetext/css mediaall />link relstylesheet idbew-elementor-kit-global-style-css hrefhttps://tigertechonline.ca/wp-content/plugins/bosa-elementor-for-woocommerce/assets/css/bew-global.css?ver6.7.1 typetext/css mediaall />link relstylesheet idbew-elementor-kit-style-css hrefhttps://tigertechonline.ca/wp-content/plugins/bosa-elementor-for-woocommerce/assets/style.css?ver6.7.1 typetext/css mediaall />link relstylesheet idrs-plugin-settings-css hrefhttps://tigertechonline.ca/wp-content/plugins/revslider/public/assets/css/rs6.css?ver6.6.14 typetext/css mediaall />style idrs-plugin-settings-inline-css typetext/css>#rs-demo-id {}/style>script typetext/javascript srchttps://tigertechonline.ca/wp-includes/js/dist/hooks.js?ver5b4ec27a7b82f601224a idwp-hooks-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-includes/js/dist/i18n.js?ver2aff907006e2aa00e26e idwp-i18n-js>/script>script typetext/javascript idwp-i18n-js-after>/* !CDATA */wp.i18n.setLocaleData( { text direction\u0004ltr: ltr } );/* > *//script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver6.0.3 idswv-js>/script>script typetext/javascript idcontact-form-7-js-before>/* !CDATA */var wpcf7 { api: { root: https:\/\/tigertechonline.ca\/wp-json\/, namespace: contact-form-7\/v1 }, cached: 1};/* > *//script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/contact-form-7/includes/js/index.js?ver6.0.3 idcontact-form-7-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver6.6.14 defer async idtp-tools-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver6.6.14 defer async idrevmin-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-includes/js/imagesloaded.min.js?ver5.0.0 idimagesloaded-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-includes/js/masonry.min.js?ver4.2.2 idmasonry-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-includes/js/jquery/jquery.masonry.min.js?ver3.1.2b idjquery-masonry-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/themes/bosa/assets/bootstrap/js/bootstrap.min.js?ver0.8 idbootstrap-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/themes/bosa/assets/slick/slick.min.js?ver0.8 idslick-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/themes/bosa/assets/js/jquery.slicknav.min.js?ver0.8 idslicknav-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/themes/bosa/assets/js/skip-link-focus-fix.js?ver0.8 idbosa-skip-link-focus-fix-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/themes/bosa/assets/js/navigation.js?ver0.8 idbosa-navigation-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/themes/bosa/assets/js/theia-sticky-sidebar.min.js?ver0.8 idtheia-sticky-sidebar-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/themes/bosa/assets/js/html5shiv.min.js?ver0.8 idhtml5shiv-js>/script>script typetext/javascript idbosa-custom-js-extra>/* !CDATA */var BOSA {is_rtl:,is_admin_bar_showing:,responsive_header_menu_text:MENU,header_image_slider:{fade:true,autoplay:0,autoplaySpeed:4000,fadeControl:500},main_slider:{fade:true,autoplay:0,autoplaySpeed:4000,fadeControl:500},home_highlight_posts:{autoplay:0,autoplaySpeed:4000,slidesToShow:3},fixed_nav:,mobile_fixed_nav_off:1,disable_scroll_top:,sticky_sidebar:1,header_two_logo:,is_header_two:,is_frame_layout:,fixed_header_logo:1,separate_logo:,is_front_page:1,overlay_post:,overlay_page:,the_custom_logo:https:\/\/tigertechonline.ca\/wp-content\/uploads\/2023\/11\/cropped-cropped-Add-a-heading-1-1.png};/* > *//script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/themes/bosa/assets/js/custom.min.js?ver0.8 idbosa-custom-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/elementskit-lite/libs/framework/assets/js/frontend-script.js?ver3.3.7 idelementskit-framework-js-frontend-js>/script>script typetext/javascript idelementskit-framework-js-frontend-js-after>/* !CDATA */ var elementskit { resturl: https://tigertechonline.ca/wp-json/elementskit/v1/, } /* > *//script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/elementskit-lite/widgets/init/assets/js/widget-scripts.js?ver3.3.7 idekit-widget-scripts-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/elementor/assets/js/webpack.runtime.js?ver3.26.4 idelementor-webpack-runtime-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/elementor/assets/js/frontend-modules.js?ver3.26.4 idelementor-frontend-modules-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-includes/js/jquery/ui/core.js?ver1.13.3 idjquery-ui-core-js>/script>script typetext/javascript idelementor-frontend-js-before>/* !CDATA */var elementorFrontendConfig {environmentMode:{edit:false,wpPreview:false,isScriptDebug:true},i18n:{shareOnFacebook:Share on Facebook,shareOnTwitter:Share on Twitter,pinIt:Pin it,download:Download,downloadImage:Download image,fullscreen:Fullscreen,zoom:Zoom,share:Share,playVideo:Play Video,previous:Previous,next:Next,close:Close,a11yCarouselPrevSlideMessage:Previous slide,a11yCarouselNextSlideMessage:Next slide,a11yCarouselFirstSlideMessage:This is the first slide,a11yCarouselLastSlideMessage:This is the last slide,a11yCarouselPaginationBulletMessage:Go to slide},is_rtl:false,breakpoints:{xs:0,sm:480,md:768,lg:1025,xl:1440,xxl:1600},responsive:{breakpoints:{mobile:{label:Mobile Portrait,value:767,default_value:767,direction:max,is_enabled:true},mobile_extra:{label:Mobile Landscape,value:880,default_value:880,direction:max,is_enabled:false},tablet:{label:Tablet Portrait,value:1024,default_value:1024,direction:max,is_enabled:true},tablet_extra:{label:Tablet Landscape,value:1200,default_value:1200,direction:max,is_enabled:false},laptop:{label:Laptop,value:1366,default_value:1366,direction:max,is_enabled:false},widescreen:{label:Widescreen,value:2400,default_value:2400,direction:min,is_enabled:false}},hasCustomBreakpoints:false},version:3.26.4,is_static:false,experimentalFeatures:{e_font_icon_svg:true,additional_custom_breakpoints:true,container:true,e_swiper_latest:true,e_nested_atomic_repeaters:true,e_onboarding:true,e_css_smooth_scroll:true,home_screen:true,landing-pages:true,nested-elements:true,editor_v2:true,link-in-bio:true,floating-buttons:true},urls:{assets:https:\/\/tigertechonline.ca\/wp-content\/plugins\/elementor\/assets\/,ajaxurl:https:\/\/tigertechonline.ca\/wp-admin\/admin-ajax.php,uploadUrl:http:\/\/tigertechonline.ca\/wp-content\/uploads},nonces:{floatingButtonsClickTracking:b56afe4749},swiperClass:swiper,settings:{page:,editorPreferences:},kit:{active_breakpoints:viewport_mobile,viewport_tablet,global_image_lightbox:yes,lightbox_enable_counter:yes,lightbox_enable_fullscreen:yes,lightbox_enable_zoom:yes,lightbox_enable_share:yes,lightbox_title_src:title,lightbox_description_src:description},post:{id:5274,title:,excerpt:,featuredImage:false}};/* > *//script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/elementor/assets/js/frontend.js?ver3.26.4 idelementor-frontend-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/elementskit-lite/widgets/init/assets/js/animate-circle.min.js?ver3.3.7 idanimate-circle-js>/script>script typetext/javascript idelementskit-elementor-js-extra>/* !CDATA */var ekit_config {ajaxurl:https:\/\/tigertechonline.ca\/wp-admin\/admin-ajax.php,nonce:f010e29d4e};/* > *//script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/elementskit-lite/widgets/init/assets/js/elementor.js?ver3.3.7 idelementskit-elementor-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/bosa-elementor-for-woocommerce/assets/js/owl.carousel.min.js?ver6.7.1 idbew-elementor-kit-owl-js>/script>script typetext/javascript srchttps://tigertechonline.ca/wp-content/plugins/bosa-elementor-for-woocommerce/assets/js/bew-admin-script.js?ver6.7.1 idbew-elementor-kit-script-js>/script>div idback-to-top> a hrefjavascript:void(0)>i classfa fa-angle-up>/i>/a>/div>!-- #back-to-top -->/body>/html>
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
]