CINXE.COM

The Kia Sportage – Kia Cyprus

<!DOCTYPE html> <html class="html" lang="en-US"> <head> <meta charset="UTF-8"> <link rel="profile" href="https://gmpg.org/xfn/11"> <title>The Kia Sportage &#8211; Kia Cyprus</title> <meta name='robots' content='max-image-preview:large' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <meta name="viewport" content="width=device-width, initial-scale=1"><link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel="alternate" type="application/rss+xml" title="Kia Cyprus &raquo; Feed" href="https://kia.com.cy/feed/" /> <link rel="alternate" type="application/rss+xml" title="Kia Cyprus &raquo; Comments Feed" href="https://kia.com.cy/comments/feed/" /> <script> 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:\/\/kia.com.cy\/wp-includes\/js\/wp-emoji.js?ver=6.7.2","twemoji":"https:\/\/kia.com.cy\/wp-includes\/js\/twemoji.js?ver=6.7.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * 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 doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); </script> <style id='wp-emoji-styles-inline-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 id='classic-theme-styles-inline-css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css'> :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--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='cookie-law-info-css' href='https://kia.com.cy/wp-content/plugins/cookie-law-info/legacy/public/css/cookie-law-info-public.css?ver=3.2.8' media='all' /> <link rel='stylesheet' id='cookie-law-info-gdpr-css' href='https://kia.com.cy/wp-content/plugins/cookie-law-info/legacy/public/css/cookie-law-info-gdpr.css?ver=3.2.8' media='all' /> <link rel='stylesheet' id='devvn-ireel-style-css' href='https://kia.com.cy/wp-content/plugins/devvn-360-images-view/frontend/css/devvn_ireel_style.css?ver=1.0' media='all' /> <link rel='stylesheet' id='oceanwp-style-css' href='https://kia.com.cy/wp-content/themes/oceanwp/assets/css/style.min.css?ver=1.0' media='all' /> <style id='oceanwp-style-inline-css'> div.wpforms-container-full .wpforms-form input[type=submit]:hover, div.wpforms-container-full .wpforms-form input[type=submit]:focus, div.wpforms-container-full .wpforms-form input[type=submit]:active, div.wpforms-container-full .wpforms-form button[type=submit]:hover, div.wpforms-container-full .wpforms-form button[type=submit]:focus, div.wpforms-container-full .wpforms-form button[type=submit]:active, div.wpforms-container-full .wpforms-form .wpforms-page-button:hover, div.wpforms-container-full .wpforms-form .wpforms-page-button:active, div.wpforms-container-full .wpforms-form .wpforms-page-button:focus { border: none; } </style> <link rel='stylesheet' id='child-style-css' href='https://kia.com.cy/wp-content/themes/oceanwp-child-theme-master/style.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://kia.com.cy/wp-content/plugins/elementor/assets/css/frontend.css?ver=3.28.0' media='all' /> <link rel='stylesheet' id='elementor-post-360-css' href='https://kia.com.cy/wp-content/uploads/elementor/css/post-360.css?ver=1742294069' media='all' /> <link rel='stylesheet' id='font-awesome-css' href='https://kia.com.cy/wp-content/themes/oceanwp/assets/fonts/fontawesome/css/all.min.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='simple-line-icons-css' href='https://kia.com.cy/wp-content/themes/oceanwp/assets/css/third/simple-line-icons.min.css?ver=2.4.0' media='all' /> <link rel='stylesheet' id='oceanwp-hamburgers-css' href='https://kia.com.cy/wp-content/themes/oceanwp/assets/css/third/hamburgers/hamburgers.min.css?ver=1.0' media='all' /> <link rel='stylesheet' id='oceanwp-minus-css' href='https://kia.com.cy/wp-content/themes/oceanwp/assets/css/third/hamburgers/types/minus.css?ver=1.0' media='all' /> <link rel='stylesheet' id='oceanwp-google-font-josefin-sans-css' href='//fonts.googleapis.com/css?family=Josefin+Sans%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900%2C100i%2C200i%2C300i%2C400i%2C500i%2C600i%2C700i%2C800i%2C900i&#038;subset=latin&#038;display=swap&#038;ver=6.7.2' media='all' /> <link rel='stylesheet' id='elementor-post-3542-css' href='https://kia.com.cy/wp-content/uploads/elementor/css/post-3542.css?ver=1742294069' media='all' /> <link rel='stylesheet' id='font-awesome-5-all-css' href='https://kia.com.cy/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.css?ver=3.28.0' media='all' /> <link rel='stylesheet' id='font-awesome-4-shim-css' href='https://kia.com.cy/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.css?ver=3.28.0' media='all' /> <link rel='stylesheet' id='widget-image-css' href='https://kia.com.cy/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.28.0' media='all' /> <link rel='stylesheet' id='widget-heading-css' href='https://kia.com.cy/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=3.28.0' media='all' /> <link rel='stylesheet' id='oew-buttons-css' href='https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/css/buttons/style.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='widget-image-box-css' href='https://kia.com.cy/wp-content/plugins/elementor/assets/css/widget-image-box.min.css?ver=3.28.0' media='all' /> <link rel='stylesheet' id='widget-video-css' href='https://kia.com.cy/wp-content/plugins/elementor/assets/css/widget-video.min.css?ver=3.28.0' media='all' /> <link rel='stylesheet' id='oew-modal-css' href='https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/css/modal/style.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='oew-photoswipe-css' href='https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/css/vendors/photo-swipe/photoswipe.css?ver=4.1.3' media='all' /> <link rel='stylesheet' id='oew-image-gallery-css' href='https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/css/image-gallery/style.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='oew-tabs-css' href='https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/css/tabs/style.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='elementor-post-1639-css' href='https://kia.com.cy/wp-content/uploads/elementor/css/post-1639.css?ver=1742329380' media='all' /> <link rel='stylesheet' id='oe-widgets-style-css' href='https://kia.com.cy/wp-content/plugins/ocean-extra/assets/css/widgets.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='oss-social-share-style-css' href='https://kia.com.cy/wp-content/plugins/ocean-social-sharing/assets/css/style.min.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='osh-styles-css' href='https://kia.com.cy/wp-content/plugins/ocean-sticky-header/assets/css/style.min.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='elementor-gf-local-roboto-css' href='https://kia.com.cy/wp-content/uploads/elementor/google-fonts/css/roboto.css?ver=1742250820' media='all' /> <link rel='stylesheet' id='elementor-gf-local-robotoslab-css' href='https://kia.com.cy/wp-content/uploads/elementor/google-fonts/css/robotoslab.css?ver=1742250821' media='all' /> <script src="https://kia.com.cy/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script src="https://kia.com.cy/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <script id="cookie-law-info-js-extra"> var Cli_Data = {"nn_cookie_ids":[],"cookielist":[],"non_necessary_cookies":[],"ccpaEnabled":"","ccpaRegionBased":"","ccpaBarEnabled":"","strictlyEnabled":["necessary","obligatoire"],"ccpaType":"gdpr","js_blocking":"1","custom_integration":"","triggerDomRefresh":"","secure_cookies":""}; var cli_cookiebar_settings = {"animate_speed_hide":"500","animate_speed_show":"500","background":"#FFF","border":"#b1a6a6c2","border_on":"","button_1_button_colour":"#61a229","button_1_button_hover":"#4e8221","button_1_link_colour":"#fff","button_1_as_button":"1","button_1_new_win":"","button_2_button_colour":"#333","button_2_button_hover":"#292929","button_2_link_colour":"#444","button_2_as_button":"","button_2_hidebar":"","button_3_button_colour":"#dedfe0","button_3_button_hover":"#b2b2b3","button_3_link_colour":"#333333","button_3_as_button":"1","button_3_new_win":"","button_4_button_colour":"#dedfe0","button_4_button_hover":"#b2b2b3","button_4_link_colour":"#333333","button_4_as_button":"1","button_7_button_colour":"#61a229","button_7_button_hover":"#4e8221","button_7_link_colour":"#fff","button_7_as_button":"1","button_7_new_win":"","font_family":"inherit","header_fix":"","notify_animate_hide":"1","notify_animate_show":"","notify_div_id":"#cookie-law-info-bar","notify_position_horizontal":"right","notify_position_vertical":"bottom","scroll_close":"","scroll_close_reload":"","accept_close_reload":"","reject_close_reload":"","showagain_tab":"","showagain_background":"#fff","showagain_border":"#000","showagain_div_id":"#cookie-law-info-again","showagain_x_position":"100px","text":"#333333","show_once_yn":"","show_once":"10000","logging_on":"","as_popup":"","popup_overlay":"1","bar_heading_text":"","cookie_bar_as":"banner","popup_showagain_position":"bottom-right","widget_position":"left"}; var log_object = {"ajax_url":"https:\/\/kia.com.cy\/wp-admin\/admin-ajax.php"}; </script> <script src="https://kia.com.cy/wp-content/plugins/cookie-law-info/legacy/public/js/cookie-law-info-public.js?ver=3.2.8" id="cookie-law-info-js"></script> <script src="https://kia.com.cy/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.js?ver=3.28.0" id="font-awesome-4-shim-js"></script> <link rel="https://api.w.org/" href="https://kia.com.cy/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://kia.com.cy/wp-json/wp/v2/pages/1639" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://kia.com.cy/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.2" /> <link rel="canonical" href="https://kia.com.cy/sportage/" /> <link rel='shortlink' href='https://kia.com.cy/?p=1639' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://kia.com.cy/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fkia.com.cy%2Fsportage%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://kia.com.cy/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fkia.com.cy%2Fsportage%2F&#038;format=xml" /> <meta name="generator" content="Elementor 3.28.0; features: e_font_icon_svg, e_local_google_fonts; settings: css_print_method-external, google_font-enabled, font_display-auto"> <style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <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> <link rel="icon" href="https://kia.com.cy/wp-content/uploads/2021/04/kia_ico-150x150.jpg" sizes="32x32" /> <link rel="icon" href="https://kia.com.cy/wp-content/uploads/2021/04/kia_ico.jpg" sizes="192x192" /> <link rel="apple-touch-icon" href="https://kia.com.cy/wp-content/uploads/2021/04/kia_ico.jpg" /> <meta name="msapplication-TileImage" content="https://kia.com.cy/wp-content/uploads/2021/04/kia_ico.jpg" /> <!-- OceanWP CSS --> <style type="text/css"> .background-image-page-header-overlay{background-color:#ffffff}/* Colors */a:hover,a.light:hover,.theme-heading .text::before,.theme-heading .text::after,#top-bar-content >a:hover,#top-bar-social li.oceanwp-email a:hover,#site-navigation-wrap .dropdown-menu >li >a:hover,#site-header.medium-header #medium-searchform button:hover,.oceanwp-mobile-menu-icon a:hover,.blog-entry.post .blog-entry-header .entry-title a:hover,.blog-entry.post .blog-entry-readmore a:hover,.blog-entry.thumbnail-entry .blog-entry-category a,ul.meta li a:hover,.dropcap,.single nav.post-navigation .nav-links .title,body .related-post-title a:hover,body #wp-calendar caption,body .contact-info-widget.default i,body .contact-info-widget.big-icons i,body .custom-links-widget .oceanwp-custom-links li a:hover,body .custom-links-widget .oceanwp-custom-links li a:hover:before,body .posts-thumbnails-widget li a:hover,body .social-widget li.oceanwp-email a:hover,.comment-author .comment-meta .comment-reply-link,#respond #cancel-comment-reply-link:hover,#footer-widgets .footer-box a:hover,#footer-bottom a:hover,#footer-bottom #footer-bottom-menu a:hover,.sidr a:hover,.sidr-class-dropdown-toggle:hover,.sidr-class-menu-item-has-children.active >a,.sidr-class-menu-item-has-children.active >a >.sidr-class-dropdown-toggle,input[type=checkbox]:checked:before{color:#ffffff}.single nav.post-navigation .nav-links .title .owp-icon use,.blog-entry.post .blog-entry-readmore a:hover .owp-icon use,body .contact-info-widget.default .owp-icon use,body .contact-info-widget.big-icons .owp-icon use{stroke:#ffffff}input[type="button"],input[type="reset"],input[type="submit"],button[type="submit"],.button,#site-navigation-wrap .dropdown-menu >li.btn >a >span,.thumbnail:hover i,.thumbnail:hover .link-post-svg-icon,.post-quote-content,.omw-modal .omw-close-modal,body .contact-info-widget.big-icons li:hover i,body .contact-info-widget.big-icons li:hover .owp-icon,body div.wpforms-container-full .wpforms-form input[type=submit],body div.wpforms-container-full .wpforms-form button[type=submit],body div.wpforms-container-full .wpforms-form .wpforms-page-button,.woocommerce-cart .wp-element-button,.woocommerce-checkout .wp-element-button,.wp-block-button__link{background-color:#ffffff}.widget-title{border-color:#ffffff}blockquote{border-color:#ffffff}.wp-block-quote{border-color:#ffffff}#searchform-dropdown{border-color:#ffffff}.dropdown-menu .sub-menu{border-color:#ffffff}.blog-entry.large-entry .blog-entry-readmore a:hover{border-color:#ffffff}.oceanwp-newsletter-form-wrap input[type="email"]:focus{border-color:#ffffff}.social-widget li.oceanwp-email a:hover{border-color:#ffffff}#respond #cancel-comment-reply-link:hover{border-color:#ffffff}body .contact-info-widget.big-icons li:hover i{border-color:#ffffff}body .contact-info-widget.big-icons li:hover .owp-icon{border-color:#ffffff}#footer-widgets .oceanwp-newsletter-form-wrap input[type="email"]:focus{border-color:#ffffff}input[type="button"]:hover,input[type="reset"]:hover,input[type="submit"]:hover,button[type="submit"]:hover,input[type="button"]:focus,input[type="reset"]:focus,input[type="submit"]:focus,button[type="submit"]:focus,.button:hover,.button:focus,#site-navigation-wrap .dropdown-menu >li.btn >a:hover >span,.post-quote-author,.omw-modal .omw-close-modal:hover,body div.wpforms-container-full .wpforms-form input[type=submit]:hover,body div.wpforms-container-full .wpforms-form button[type=submit]:hover,body div.wpforms-container-full .wpforms-form .wpforms-page-button:hover,.woocommerce-cart .wp-element-button:hover,.woocommerce-checkout .wp-element-button:hover,.wp-block-button__link:hover{background-color:#333333}table th,table td,hr,.content-area,body.content-left-sidebar #content-wrap .content-area,.content-left-sidebar .content-area,#top-bar-wrap,#site-header,#site-header.top-header #search-toggle,.dropdown-menu ul li,.centered-minimal-page-header,.blog-entry.post,.blog-entry.grid-entry .blog-entry-inner,.blog-entry.thumbnail-entry .blog-entry-bottom,.single-post .entry-title,.single .entry-share-wrap .entry-share,.single .entry-share,.single .entry-share ul li a,.single nav.post-navigation,.single nav.post-navigation .nav-links .nav-previous,#author-bio,#author-bio .author-bio-avatar,#author-bio .author-bio-social li a,#related-posts,#comments,.comment-body,#respond #cancel-comment-reply-link,#blog-entries .type-page,.page-numbers a,.page-numbers span:not(.elementor-screen-only),.page-links span,body #wp-calendar caption,body #wp-calendar th,body #wp-calendar tbody,body .contact-info-widget.default i,body .contact-info-widget.big-icons i,body .contact-info-widget.big-icons .owp-icon,body .contact-info-widget.default .owp-icon,body .posts-thumbnails-widget li,body .tagcloud a{border-color:#ffffff}a{color:#ffffff}a .owp-icon use{stroke:#ffffff}a:hover{color:#adadad}a:hover .owp-icon use{stroke:#adadad}body .theme-button,body input[type="submit"],body button[type="submit"],body button,body .button,body div.wpforms-container-full .wpforms-form input[type=submit],body div.wpforms-container-full .wpforms-form button[type=submit],body div.wpforms-container-full .wpforms-form .wpforms-page-button,.woocommerce-cart .wp-element-button,.woocommerce-checkout .wp-element-button,.wp-block-button__link{background-color:#bcbcbc}body .theme-button,body input[type="submit"],body button[type="submit"],body button,body .button,body div.wpforms-container-full .wpforms-form input[type=submit],body div.wpforms-container-full .wpforms-form button[type=submit],body div.wpforms-container-full .wpforms-form .wpforms-page-button,.woocommerce-cart .wp-element-button,.woocommerce-checkout .wp-element-button,.wp-block-button__link{color:#000000}body .theme-button,body input[type="submit"],body button[type="submit"],body button,body .button,body div.wpforms-container-full .wpforms-form input[type=submit],body div.wpforms-container-full .wpforms-form button[type=submit],body div.wpforms-container-full .wpforms-form .wpforms-page-button,.woocommerce-cart .wp-element-button,.woocommerce-checkout .wp-element-button,.wp-block-button__link{border-color:#000000}body .theme-button:hover,body input[type="submit"]:hover,body button[type="submit"]:hover,body button:hover,body .button:hover,body div.wpforms-container-full .wpforms-form input[type=submit]:hover,body div.wpforms-container-full .wpforms-form input[type=submit]:active,body div.wpforms-container-full .wpforms-form button[type=submit]:hover,body div.wpforms-container-full .wpforms-form button[type=submit]:active,body div.wpforms-container-full .wpforms-form .wpforms-page-button:hover,body div.wpforms-container-full .wpforms-form .wpforms-page-button:active,.woocommerce-cart .wp-element-button:hover,.woocommerce-checkout .wp-element-button:hover,.wp-block-button__link:hover{border-color:#ffffff}form input[type="text"]:focus,form input[type="password"]:focus,form input[type="email"]:focus,form input[type="tel"]:focus,form input[type="url"]:focus,form input[type="search"]:focus,form textarea:focus,.select2-drop-active,.select2-dropdown-open.select2-drop-above .select2-choice,.select2-dropdown-open.select2-drop-above .select2-choices,.select2-drop.select2-drop-above.select2-drop-active,.select2-container-active .select2-choice,.select2-container-active .select2-choices{border-color:#d3d3d3}body div.wpforms-container-full .wpforms-form input:focus,body div.wpforms-container-full .wpforms-form textarea:focus,body div.wpforms-container-full .wpforms-form select:focus{border-color:#d3d3d3}form input[type="text"],form input[type="password"],form input[type="email"],form input[type="url"],form input[type="date"],form input[type="month"],form input[type="time"],form input[type="datetime"],form input[type="datetime-local"],form input[type="week"],form input[type="number"],form input[type="search"],form input[type="tel"],form input[type="color"],form select,form textarea,.woocommerce .woocommerce-checkout .select2-container--default .select2-selection--single{background-color:#f7f7f7}body div.wpforms-container-full .wpforms-form input[type=date],body div.wpforms-container-full .wpforms-form input[type=datetime],body div.wpforms-container-full .wpforms-form input[type=datetime-local],body div.wpforms-container-full .wpforms-form input[type=email],body div.wpforms-container-full .wpforms-form input[type=month],body div.wpforms-container-full .wpforms-form input[type=number],body div.wpforms-container-full .wpforms-form input[type=password],body div.wpforms-container-full .wpforms-form input[type=range],body div.wpforms-container-full .wpforms-form input[type=search],body div.wpforms-container-full .wpforms-form input[type=tel],body div.wpforms-container-full .wpforms-form input[type=text],body div.wpforms-container-full .wpforms-form input[type=time],body div.wpforms-container-full .wpforms-form input[type=url],body div.wpforms-container-full .wpforms-form input[type=week],body div.wpforms-container-full .wpforms-form select,body div.wpforms-container-full .wpforms-form textarea{background-color:#f7f7f7}.page-header .page-header-title,.page-header.background-image-page-header .page-header-title{color:#ffffff}.site-breadcrumbs,.background-image-page-header .site-breadcrumbs{color:#ffffff}.site-breadcrumbs ul li .breadcrumb-sep,.site-breadcrumbs ol li .breadcrumb-sep{color:#ffffff}.site-breadcrumbs a,.background-image-page-header .site-breadcrumbs a{color:#ffffff}.site-breadcrumbs a .owp-icon use,.background-image-page-header .site-breadcrumbs a .owp-icon use{stroke:#ffffff}.site-breadcrumbs a:hover,.background-image-page-header .site-breadcrumbs a:hover{color:#a160ff}.site-breadcrumbs a:hover .owp-icon use,.background-image-page-header .site-breadcrumbs a:hover .owp-icon use{stroke:#a160ff}body{color:#666666}h1,h2,h3,h4,h5,h6,.theme-heading,.widget-title,.oceanwp-widget-recent-posts-title,.comment-reply-title,.entry-title,.sidebar-box .widget-title{color:#333333}/* OceanWP Style Settings CSS */.container{width:1400px}.theme-button,input[type="submit"],button[type="submit"],button,.button,body div.wpforms-container-full .wpforms-form input[type=submit],body div.wpforms-container-full .wpforms-form button[type=submit],body div.wpforms-container-full .wpforms-form .wpforms-page-button{border-style:solid}.theme-button,input[type="submit"],button[type="submit"],button,.button,body div.wpforms-container-full .wpforms-form input[type=submit],body div.wpforms-container-full .wpforms-form button[type=submit],body div.wpforms-container-full .wpforms-form .wpforms-page-button{border-width:1px}form input[type="text"],form input[type="password"],form input[type="email"],form input[type="url"],form input[type="date"],form input[type="month"],form input[type="time"],form input[type="datetime"],form input[type="datetime-local"],form input[type="week"],form input[type="number"],form input[type="search"],form input[type="tel"],form input[type="color"],form select,form textarea,.woocommerce .woocommerce-checkout .select2-container--default .select2-selection--single{border-style:solid}body div.wpforms-container-full .wpforms-form input[type=date],body div.wpforms-container-full .wpforms-form input[type=datetime],body div.wpforms-container-full .wpforms-form input[type=datetime-local],body div.wpforms-container-full .wpforms-form input[type=email],body div.wpforms-container-full .wpforms-form input[type=month],body div.wpforms-container-full .wpforms-form input[type=number],body div.wpforms-container-full .wpforms-form input[type=password],body div.wpforms-container-full .wpforms-form input[type=range],body div.wpforms-container-full .wpforms-form input[type=search],body div.wpforms-container-full .wpforms-form input[type=tel],body div.wpforms-container-full .wpforms-form input[type=text],body div.wpforms-container-full .wpforms-form input[type=time],body div.wpforms-container-full .wpforms-form input[type=url],body div.wpforms-container-full .wpforms-form input[type=week],body div.wpforms-container-full .wpforms-form select,body div.wpforms-container-full .wpforms-form textarea{border-style:solid}form input[type="text"],form input[type="password"],form input[type="email"],form input[type="url"],form input[type="date"],form input[type="month"],form input[type="time"],form input[type="datetime"],form input[type="datetime-local"],form input[type="week"],form input[type="number"],form input[type="search"],form input[type="tel"],form input[type="color"],form select,form textarea{border-radius:3px}body div.wpforms-container-full .wpforms-form input[type=date],body div.wpforms-container-full .wpforms-form input[type=datetime],body div.wpforms-container-full .wpforms-form input[type=datetime-local],body div.wpforms-container-full .wpforms-form input[type=email],body div.wpforms-container-full .wpforms-form input[type=month],body div.wpforms-container-full .wpforms-form input[type=number],body div.wpforms-container-full .wpforms-form input[type=password],body div.wpforms-container-full .wpforms-form input[type=range],body div.wpforms-container-full .wpforms-form input[type=search],body div.wpforms-container-full .wpforms-form input[type=tel],body div.wpforms-container-full .wpforms-form input[type=text],body div.wpforms-container-full .wpforms-form input[type=time],body div.wpforms-container-full .wpforms-form input[type=url],body div.wpforms-container-full .wpforms-form input[type=week],body div.wpforms-container-full .wpforms-form select,body div.wpforms-container-full .wpforms-form textarea{border-radius:3px}/* Header */#site-logo #site-logo-inner,.oceanwp-social-menu .social-menu-inner,#site-header.full_screen-header .menu-bar-inner,.after-header-content .after-header-content-inner{height:100px}#site-navigation-wrap .dropdown-menu >li >a,#site-navigation-wrap .dropdown-menu >li >span.opl-logout-link,.oceanwp-mobile-menu-icon a,.mobile-menu-close,.after-header-content-inner >a{line-height:100px}#site-header-inner{padding:0 20px 0 20px}@media (max-width:768px){#site-header-inner{padding:0 20px 0 20px}}@media (max-width:480px){#site-header-inner{padding:0 10px 0 10px}}#site-header,.has-transparent-header .is-sticky #site-header,.has-vh-transparent .is-sticky #site-header.vertical-header,#searchform-header-replace{background-color:rgba(255,255,255,0)}#site-header.has-header-media .overlay-header-media{background-color:rgba(0,0,0,0.5)}#site-header{border-color:#f7f8f8}#site-logo #site-logo-inner a img,#site-header.center-header #site-navigation-wrap .middle-site-logo a img{max-width:107px}.effect-one #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:after,.effect-three #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:after,.effect-five #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:before,.effect-five #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:after,.effect-nine #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:before,.effect-nine #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:after{background-color:#a160ff}.effect-four #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:before,.effect-four #site-navigation-wrap .dropdown-menu >li >a.menu-link >span:after,.effect-seven #site-navigation-wrap .dropdown-menu >li >a.menu-link:hover >span:after,.effect-seven #site-navigation-wrap .dropdown-menu >li.sfHover >a.menu-link >span:after{color:#a160ff}.effect-seven #site-navigation-wrap .dropdown-menu >li >a.menu-link:hover >span:after,.effect-seven #site-navigation-wrap .dropdown-menu >li.sfHover >a.menu-link >span:after{text-shadow:10px 0 #a160ff,-10px 0 #a160ff}#site-navigation-wrap .dropdown-menu >li >a,.oceanwp-mobile-menu-icon a,#searchform-header-replace-close{color:#0a0a0a}#site-navigation-wrap .dropdown-menu >li >a .owp-icon use,.oceanwp-mobile-menu-icon a .owp-icon use,#searchform-header-replace-close .owp-icon use{stroke:#0a0a0a}#site-navigation-wrap .dropdown-menu >li >a:hover,.oceanwp-mobile-menu-icon a:hover,#searchform-header-replace-close:hover{color:#000000}#site-navigation-wrap .dropdown-menu >li >a:hover .owp-icon use,.oceanwp-mobile-menu-icon a:hover .owp-icon use,#searchform-header-replace-close:hover .owp-icon use{stroke:#000000}#site-navigation-wrap .dropdown-menu >.current-menu-item >a,#site-navigation-wrap .dropdown-menu >.current-menu-ancestor >a,#site-navigation-wrap .dropdown-menu >.current-menu-item >a:hover,#site-navigation-wrap .dropdown-menu >.current-menu-ancestor >a:hover{color:#000000}#site-navigation-wrap .dropdown-menu >li >a:hover,#site-navigation-wrap .dropdown-menu >li.sfHover >a{background-color:#ffffff}.dropdown-menu .sub-menu,#searchform-dropdown,.current-shop-items-dropdown{border-color:#ffffff}.dropdown-menu ul li.menu-item,.navigation >ul >li >ul.megamenu.sub-menu >li,.navigation .megamenu li ul.sub-menu{border-color:rgba(17,17,17,0.22)}.dropdown-menu ul li a.menu-link{color:#000000}.dropdown-menu ul li a.menu-link .owp-icon use{stroke:#000000}.dropdown-menu ul li a.menu-link:hover{color:#000000}.dropdown-menu ul li a.menu-link:hover .owp-icon use{stroke:#000000}.dropdown-menu ul li a.menu-link:hover{background-color:rgba(0,0,0,0.08)}#searchform-dropdown input{background-color:#1b1b1b}#searchform-dropdown input{color:#ffffff}#searchform-dropdown input{border-color:#000000}#searchform-dropdown input:focus{border-color:#000000}@media (max-width:1280px){#top-bar-nav,#site-navigation-wrap,.oceanwp-social-menu,.after-header-content{display:none}.center-logo #site-logo{float:none;position:absolute;left:50%;padding:0;-webkit-transform:translateX(-50%);transform:translateX(-50%)}#site-header.center-header #site-logo,.oceanwp-mobile-menu-icon,#oceanwp-cart-sidebar-wrap{display:block}body.vertical-header-style #outer-wrap{margin:0 !important}#site-header.vertical-header{position:relative;width:100%;left:0 !important;right:0 !important}#site-header.vertical-header .has-template >#site-logo{display:block}#site-header.vertical-header #site-header-inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;align-items:center;padding:0;max-width:90%}#site-header.vertical-header #site-header-inner >*:not(.oceanwp-mobile-menu-icon){display:none}#site-header.vertical-header #site-header-inner >*{padding:0 !important}#site-header.vertical-header #site-header-inner #site-logo{display:block;margin:0;width:50%;text-align:left}body.rtl #site-header.vertical-header #site-header-inner #site-logo{text-align:right}#site-header.vertical-header #site-header-inner .oceanwp-mobile-menu-icon{width:50%;text-align:right}body.rtl #site-header.vertical-header #site-header-inner .oceanwp-mobile-menu-icon{text-align:left}#site-header.vertical-header .vertical-toggle,body.vertical-header-style.vh-closed #site-header.vertical-header .vertical-toggle{display:none}#site-logo.has-responsive-logo .custom-logo-link{display:none}#site-logo.has-responsive-logo .responsive-logo-link{display:block}.is-sticky #site-logo.has-sticky-logo .responsive-logo-link{display:none}.is-sticky #site-logo.has-responsive-logo .sticky-logo-link{display:block}#top-bar.has-no-content #top-bar-social.top-bar-left,#top-bar.has-no-content #top-bar-social.top-bar-right{position:inherit;left:auto;right:auto;float:none;height:auto;line-height:1.5em;margin-top:0;text-align:center}#top-bar.has-no-content #top-bar-social li{float:none;display:inline-block}.owp-cart-overlay,#side-panel-wrap a.side-panel-btn{display:none !important}}.mobile-menu .hamburger-inner,.mobile-menu .hamburger-inner::before,.mobile-menu .hamburger-inner::after{background-color:#0a0a0a}a.sidr-class-toggle-sidr-close{background-color:#222222}#sidr,#mobile-dropdown{background-color:#333333}body .sidr a,body .sidr-class-dropdown-toggle,#mobile-dropdown ul li a,#mobile-dropdown ul li a .dropdown-toggle,#mobile-fullscreen ul li a,#mobile-fullscreen .oceanwp-social-menu.simple-social ul li a{color:#cccccc}#mobile-fullscreen a.close .close-icon-inner,#mobile-fullscreen a.close .close-icon-inner::after{background-color:#cccccc}body .sidr a:hover,body .sidr-class-dropdown-toggle:hover,body .sidr-class-dropdown-toggle .fa,body .sidr-class-menu-item-has-children.active >a,body .sidr-class-menu-item-has-children.active >a >.sidr-class-dropdown-toggle,#mobile-dropdown ul li a:hover,#mobile-dropdown ul li a .dropdown-toggle:hover,#mobile-dropdown .menu-item-has-children.active >a,#mobile-dropdown .menu-item-has-children.active >a >.dropdown-toggle,#mobile-fullscreen ul li a:hover,#mobile-fullscreen .oceanwp-social-menu.simple-social ul li a:hover{color:#a160ff}#mobile-fullscreen a.close:hover .close-icon-inner,#mobile-fullscreen a.close:hover .close-icon-inner::after{background-color:#a160ff}body .sidr-class-mobile-searchform input,body .sidr-class-mobile-searchform input:focus,#mobile-dropdown #mobile-menu-search form input,#mobile-fullscreen #mobile-search input,#mobile-fullscreen #mobile-search .search-text{color:#ffffff}body .sidr-class-mobile-searchform input,#mobile-dropdown #mobile-menu-search form input,#mobile-fullscreen #mobile-search input{border-color:#111111}body .sidr-class-mobile-searchform input:focus,#mobile-dropdown #mobile-menu-search form input:focus,#mobile-fullscreen #mobile-search input:focus{border-color:#000000}.sidr-class-mobile-searchform button,#mobile-dropdown #mobile-menu-search form button{color:#cccccc}.sidr-class-mobile-searchform button .owp-icon use,#mobile-dropdown #mobile-menu-search form button .owp-icon use{stroke:#cccccc}.sidr-class-mobile-searchform button:hover,#mobile-dropdown #mobile-menu-search form button:hover{color:#ffffff}.sidr-class-mobile-searchform button:hover .owp-icon use,#mobile-dropdown #mobile-menu-search form button:hover .owp-icon use{stroke:#ffffff}/* Topbar */#top-bar-wrap,.oceanwp-top-bar-sticky{background-color:#05141f}#top-bar-wrap,#top-bar-content strong{color:#9ba1a5}#top-bar-content a:hover,#top-bar-social-alt a:hover{color:#9ba1a5}/* Blog CSS */.ocean-single-post-header ul.meta-item li a:hover{color:#333333}/* Footer Widgets */#footer-widgets{padding:0}/* Footer Copyright */#footer-bottom{padding:30px 0 30px 0}@media (max-width:768px){#footer-bottom{padding:30px 0 30px 0}}@media (max-width:480px){#footer-bottom{padding:30px 0 30px 0}}#footer-bottom{background-color:#05141f}#footer-bottom a,#footer-bottom #footer-bottom-menu a{color:#848484}#footer-bottom a:hover,#footer-bottom #footer-bottom-menu a:hover{color:#333333}/* Sticky Header CSS */.is-sticky #site-header.shrink-header #site-logo #site-logo-inner,.is-sticky #site-header.shrink-header .oceanwp-social-menu .social-menu-inner,.is-sticky #site-header.shrink-header.full_screen-header .menu-bar-inner,.after-header-content .after-header-content-inner{height:80px}.is-sticky #site-header.shrink-header #site-navigation-wrap .dropdown-menu >li >a,.is-sticky #site-header.shrink-header .oceanwp-mobile-menu-icon a,.after-header-content .after-header-content-inner >a,.after-header-content .after-header-content-inner >div >a{line-height:80px}/* Typography */body{font-family:KIA;font-size:14px;line-height:1.8}h1,h2,h3,h4,h5,h6,.theme-heading,.widget-title,.oceanwp-widget-recent-posts-title,.comment-reply-title,.entry-title,.sidebar-box .widget-title{line-height:1.4}h1{font-size:23px;line-height:1.4}h2{font-size:20px;line-height:1.4}h3{font-size:18px;line-height:1.4}h4{font-size:17px;line-height:1.4}h5{font-size:14px;line-height:1.4}h6{font-size:15px;line-height:1.4}.page-header .page-header-title,.page-header.background-image-page-header .page-header-title{font-size:32px;line-height:1.4}.page-header .page-subheading{font-size:15px;line-height:1.8}.site-breadcrumbs,.site-breadcrumbs a{font-size:13px;line-height:1.4}#top-bar-content,#top-bar-social-alt{font-size:10px;line-height:1.8;text-transform:capitalize}#site-logo a.site-logo-text{font-size:24px;line-height:1.8}#site-navigation-wrap .dropdown-menu >li >a,#site-header.full_screen-header .fs-dropdown-menu >li >a,#site-header.top-header #site-navigation-wrap .dropdown-menu >li >a,#site-header.center-header #site-navigation-wrap .dropdown-menu >li >a,#site-header.medium-header #site-navigation-wrap .dropdown-menu >li >a,.oceanwp-mobile-menu-icon a{font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.dropdown-menu ul li a.menu-link,#site-header.full_screen-header .fs-dropdown-menu ul.sub-menu li a{font-size:12px;line-height:1.2;letter-spacing:.6px}.sidr-class-dropdown-menu li a,a.sidr-class-toggle-sidr-close,#mobile-dropdown ul li a,body #mobile-fullscreen ul li a{font-size:15px;line-height:1.8}.blog-entry.post .blog-entry-header .entry-title a{font-family:'Josefin Sans';font-size:25px;line-height:1.4}.ocean-single-post-header .single-post-title{font-size:34px;line-height:1.4;letter-spacing:.6px}.ocean-single-post-header ul.meta-item li,.ocean-single-post-header ul.meta-item li a{font-size:13px;line-height:1.4;letter-spacing:.6px}.ocean-single-post-header .post-author-name,.ocean-single-post-header .post-author-name a{font-size:14px;line-height:1.4;letter-spacing:.6px}.ocean-single-post-header .post-author-description{font-size:12px;line-height:1.4;letter-spacing:.6px}.single-post .entry-title{font-family:'Josefin Sans';font-size:70px;line-height:1.4;letter-spacing:.6px}.single-post ul.meta li,.single-post ul.meta li a{font-size:14px;line-height:1.4;letter-spacing:.6px}.sidebar-box .widget-title,.sidebar-box.widget_block .wp-block-heading{font-size:13px;line-height:1;letter-spacing:1px}#footer-widgets .footer-box .widget-title{font-size:13px;line-height:1;letter-spacing:1px}#footer-bottom #copyright{font-size:11px;line-height:1;letter-spacing:1px;text-transform:uppercase}#footer-bottom #footer-bottom-menu{font-size:11px;line-height:1;letter-spacing:1px;text-transform:uppercase}.woocommerce-store-notice.demo_store{line-height:2;letter-spacing:1.5px}.demo_store .woocommerce-store-notice__dismiss-link{line-height:2;letter-spacing:1.5px}.woocommerce ul.products li.product li.title h2,.woocommerce ul.products li.product li.title a{font-size:14px;line-height:1.5}.woocommerce ul.products li.product li.category,.woocommerce ul.products li.product li.category a{font-size:12px;line-height:1}.woocommerce ul.products li.product .price{font-size:18px;line-height:1}.woocommerce ul.products li.product .button,.woocommerce ul.products li.product .product-inner .added_to_cart{font-size:12px;line-height:1.5;letter-spacing:1px}.woocommerce ul.products li.owp-woo-cond-notice span,.woocommerce ul.products li.owp-woo-cond-notice a{font-size:16px;line-height:1;letter-spacing:1px;font-weight:600;text-transform:capitalize}.woocommerce div.product .product_title{font-size:24px;line-height:1.4;letter-spacing:.6px}.woocommerce div.product p.price{font-size:36px;line-height:1}.woocommerce .owp-btn-normal .summary form button.button,.woocommerce .owp-btn-big .summary form button.button,.woocommerce .owp-btn-very-big .summary form button.button{font-size:12px;line-height:1.5;letter-spacing:1px;text-transform:uppercase}.woocommerce div.owp-woo-single-cond-notice span,.woocommerce div.owp-woo-single-cond-notice a{font-size:18px;line-height:2;letter-spacing:1.5px;font-weight:600;text-transform:capitalize}.ocean-preloader--active .preloader-after-content{font-size:20px;line-height:1.8;letter-spacing:.6px} </style></head> <body class="page-template-default page page-id-1639 wp-custom-logo wp-embed-responsive oceanwp-theme sidebar-mobile no-header-border content-full-screen has-topbar page-with-background-title page-header-disabled has-breadcrumbs has-blog-grid has-fixed-footer no-margins elementor-default elementor-kit-3542 elementor-page elementor-page-1639" itemscope="itemscope" itemtype="https://schema.org/WebPage"> <div id="outer-wrap" class="site clr"> <a class="skip-link screen-reader-text" href="#main">Skip to content</a> <div id="wrap" class="clr"> <div id="top-bar-wrap" class="clr"> <div id="top-bar" class="clr container"> <div id="top-bar-inner" class="clr"> <div id="top-bar-content" class="clr has-content top-bar-left"> <span class="topbar-content"> <a href="https://kia.com.cy/contact-kia/">CONTACT US</a>&emsp;&emsp;&emsp;<a href="https://kia.com.cy/privacy-policy/">PRIVACY POLICY</a> </span> </div><!-- #top-bar-content --> </div><!-- #top-bar-inner --> </div><!-- #top-bar --> </div><!-- #top-bar-wrap --> <header id="site-header" class="center-header clr" data-height="80" itemscope="itemscope" itemtype="https://schema.org/WPHeader" role="banner"> <div id="site-header-inner" class="clr centered"> <div id="site-logo" class="clr" itemscope itemtype="https://schema.org/Brand" > <div id="site-logo-inner" class="clr"> <a href="https://kia.com.cy/" class="custom-logo-link" rel="home"><img width="300" height="75" src="https://kia.com.cy/wp-content/uploads/2021/04/logo_kia_black-rbr.png" class="custom-logo" alt="Kia Cyprus" decoding="async" srcset="https://kia.com.cy/wp-content/uploads/2021/04/logo_kia_black-rbr.png 1x, https://kia.com.cy/wp-content/uploads/2021/04/logo_kia_black-rbr.png 2x" /></a> </div><!-- #site-logo-inner --> </div><!-- #site-logo --> <div id="site-navigation-wrap" class="no-top-border clr"> <nav id="site-navigation" class="navigation main-navigation clr" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" role="navigation"> <ul class="left-menu main-menu dropdown-menu sf-menu clr"> <li id="menu-item-323" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children dropdown menu-item-323 megamenu-li full-mega nav-no-click"><a href="#" class="menu-link"><span class="text-wrap">MODELS<i class="nav-arrow fa fa-angle-down" aria-hidden="true" role="img"></i></span></a> <ul class="megamenu col-3 sub-menu"> <li id="menu-item-14805" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14805"><a href="https://kia.com.cy/ev3/" class="menu-link"><span class="text-wrap"><img width="268" height="134" src="https://kia.com.cy/wp-content/uploads/2024/05/ev3_footer.png" class="icon before _image" alt="" aria-hidden="true" decoding="async" /><span class="menu-text">EV3</span></span></a></li> <li id="menu-item-7537" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7537"><a href="https://kia.com.cy/the-kia-ev6/" class="menu-link"><span class="text-wrap"><img width="240" height="135" src="https://kia.com.cy/wp-content/uploads/2022/04/ev6_KIA_Menu.png" class="icon before _image" alt="" aria-hidden="true" decoding="async" /><span class="menu-text">EV6</span></span></a></li> <li id="menu-item-13350" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13350"><a href="https://kia.com.cy/ev9/" class="menu-link"><span class="text-wrap"><img loading="lazy" width="240" height="135" src="https://kia.com.cy/wp-content/uploads/2023/04/EV9_Finance_240x135.webp" class="icon before _image" alt="" aria-hidden="true" decoding="async" /><span class="menu-text">EV9</span></span></a></li> <li id="menu-item-513" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-513"><a href="https://kia.com.cy/picanto/" class="menu-link"><span class="text-wrap"><img loading="lazy" width="240" height="135" src="https://kia.com.cy/wp-content/uploads/2024/06/kia-picanto_2024-gt-line-s-adventurous-green_left_facing_Nav_240x135.png" class="icon before _image" alt="" aria-hidden="true" decoding="async" /><span class="menu-text">PICANTO</span></span></a></li> <li id="menu-item-1375" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1375"><a href="https://kia.com.cy/stonic/" class="menu-link"><span class="text-wrap"><img loading="lazy" width="240" height="135" src="https://kia.com.cy/wp-content/uploads/2023/08/stonic-2023-menu-shadow.png" class="icon before _image" alt="" aria-hidden="true" decoding="async" /><span class="menu-text">STONIC</span></span></a></li> <li id="menu-item-1469" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1469"><a href="https://kia.com.cy/ceed/" class="menu-link"><span class="text-wrap"><img loading="lazy" width="240" height="135" src="https://kia.com.cy/wp-content/uploads/2022/05/Ceed_Nav.png" class="icon before _image" alt="" aria-hidden="true" decoding="async" /><span class="menu-text">CEED</span></span></a></li> <li id="menu-item-1634" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1634"><a href="https://kia.com.cy/xceed/" class="menu-link"><span class="text-wrap"><img loading="lazy" width="220" height="165" src="https://kia.com.cy/wp-content/uploads/2022/09/footer_xceed_MY23.png" class="icon before _image" alt="" aria-hidden="true" decoding="async" /><span class="menu-text">XCEED</span></span></a></li> <li id="menu-item-1819" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1819"><a href="https://kia.com.cy/niro/" class="menu-link"><span class="text-wrap"><img loading="lazy" width="240" height="135" src="https://kia.com.cy/wp-content/uploads/2022/06/NiroEV_Nav_240x135.webp" class="icon before _image" alt="" aria-hidden="true" decoding="async" /><span class="menu-text">NIRO HYBRID AND PLUG IN</span></span></a></li> <li id="menu-item-7173" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7173"><a href="https://kia.com.cy/the-kia-niro-electric/" class="menu-link"><span class="text-wrap"><img loading="lazy" width="240" height="135" src="https://kia.com.cy/wp-content/uploads/2022/05/NiroEV_NaV.png" class="icon before _image" alt="" aria-hidden="true" decoding="async" /><span class="menu-text">E-NIRO</span></span></a></li> <li id="menu-item-1668" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1639 current_page_item menu-item-1668"><a href="https://kia.com.cy/sportage/" class="menu-link"><span class="text-wrap"><img loading="lazy" width="240" height="135" src="https://kia.com.cy/wp-content/uploads/2024/10/sportage_2024_Menu_Icon.png" class="icon before _image" alt="" aria-hidden="true" decoding="async" /><span class="menu-text">SPORTAGE</span></span></a></li> <li id="menu-item-1846" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1846"><a href="https://kia.com.cy/sorento/" class="menu-link"><span class="text-wrap"><img loading="lazy" width="240" height="135" src="https://kia.com.cy/wp-content/uploads/2024/05/Sorento_HEV_MY25_Menu_240x135.png" class="icon before _image" alt="" aria-hidden="true" decoding="async" /><span class="menu-text">NEW SORENTO</span></span></a></li></ul> </li><li id="menu-item-8415" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown menu-item-8415"><a href="#" class="menu-link"><span class="text-wrap">ELECTRIC CARS<i class="nav-arrow fa fa-angle-down" aria-hidden="true" role="img"></i></span></a> <ul class="sub-menu"> <li id="menu-item-8416" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8416"><a href="https://kia.com.cy/discover-electric-hybrid/" class="menu-link"><span class="text-wrap">DISCOVER ELECTRIC &#038; HYBRID</span></a></li> <li id="menu-item-2543" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2543"><a href="https://kia.com.cy/electric-cars/" class="menu-link"><span class="text-wrap">BENEFITS</span></a></li> <li id="menu-item-2542" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2542"><a href="https://kia.com.cy/charging-electric-cars/" class="menu-link"><span class="text-wrap">CHARGING ELECTRIC CARS</span></a></li> <li id="menu-item-2563" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2563"><a href="https://kia.com.cy/ev6/" class="menu-link"><span class="text-wrap">EV6 INNOVATION</span></a></li> <li id="menu-item-14413" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14413"><a href="https://kia.com.cy/kia-ev-concept-cars/" class="menu-link"><span class="text-wrap">Kia EV Concept Cars</span></a></li></ul> </li><li id="menu-item-2161" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown menu-item-2161 nav-no-click"><a href="#" class="menu-link"><span class="text-wrap">INNOVATION<i class="nav-arrow fa fa-angle-down" aria-hidden="true" role="img"></i></span></a> <ul class="sub-menu"> <li id="menu-item-7662" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7662"><a href="https://kia.com.cy/kia-connect/" class="menu-link"><span class="text-wrap">KIA CONNECT</span></a></li> <li id="menu-item-14146" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14146"><a href="https://kia.com.cy/vehicle-to-load/" class="menu-link"><span class="text-wrap">VEHICLE TO LOAD</span></a></li> <li id="menu-item-2162" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2162"><a href="https://kia.com.cy/safety/" class="menu-link"><span class="text-wrap">SAFETY</span></a></li> <li id="menu-item-2246" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2246"><a href="https://kia.com.cy/advanced-safety/" class="menu-link"><span class="text-wrap">ADVANCED SAFETY</span></a></li> <li id="menu-item-2247" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2247"><a href="https://kia.com.cy/technology/" class="menu-link"><span class="text-wrap">TECHNOLOGY</span></a></li> <li id="menu-item-12722" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12722"><a href="https://kia.com.cy/kia-eu-regulation-on-engine-sound-levels/" class="menu-link"><span class="text-wrap">ENGINE SOUND LEVELS</span></a></li> <li id="menu-item-2544" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2544"><a href="https://kia.com.cy/adblue/" class="menu-link"><span class="text-wrap">ADBLUE</span></a></li> <li id="menu-item-11858" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11858"><a href="https://kia.com.cy/navigation-software-update/" class="menu-link"><span class="text-wrap">OTA SOFTWARE UPDATE</span></a></li></ul> </li> </ul> <div class="middle-site-logo clr"> <a href="https://kia.com.cy/" class="custom-logo-link" rel="home"><img width="300" height="75" src="https://kia.com.cy/wp-content/uploads/2021/04/logo_kia_black-rbr.png" class="custom-logo" alt="Kia Cyprus" decoding="async" srcset="https://kia.com.cy/wp-content/uploads/2021/04/logo_kia_black-rbr.png 1x, https://kia.com.cy/wp-content/uploads/2021/04/logo_kia_black-rbr.png 2x" /></a> </div> <ul class="right-menu main-menu dropdown-menu sf-menu clr"> <li id="menu-item-7609" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown menu-item-7609 nav-no-click"><a href="#" class="menu-link"><span class="text-wrap">BUYING ADVICE<i class="nav-arrow fa fa-angle-down" aria-hidden="true" role="img"></i></span></a> <ul class="sub-menu"> <li id="menu-item-7612" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7612"><a href="https://kia.com.cy/why-kia/" class="menu-link"><span class="text-wrap">WHY KIA</span></a></li> <li id="menu-item-7610" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7610"><a href="https://kia.com.cy/awards/" class="menu-link"><span class="text-wrap">AWARDS</span></a></li> <li id="menu-item-7611" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7611"><a href="https://kia.com.cy/warranty/" class="menu-link"><span class="text-wrap">KIA 7 YEARS WARRANTY</span></a></li></ul> </li><li id="menu-item-2163" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown menu-item-2163 nav-no-click"><a href="#" class="menu-link"><span class="text-wrap">AFTERSALES SERVICE<i class="nav-arrow fa fa-angle-down" aria-hidden="true" role="img"></i></span></a> <ul class="sub-menu"> <li id="menu-item-2409" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2409"><a href="https://kia.com.cy/service-maintenance/" class="menu-link"><span class="text-wrap">SERVICE &#038; MAINTENANCE</span></a></li> <li id="menu-item-16512" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16512"><a href="https://kia.com.cy/navigation-software-update/" class="menu-link"><span class="text-wrap">OTA SOFTWARE UPDATE</span></a></li> <li id="menu-item-2311" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2311"><a href="https://kia.com.cy/adblue/" class="menu-link"><span class="text-wrap">ADBLUE</span></a></li></ul> </li><li id="menu-item-2164" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown menu-item-2164"><a href="#" class="menu-link"><span class="text-wrap">ABOUT KIA<i class="nav-arrow fa fa-angle-down" aria-hidden="true" role="img"></i></span></a> <ul class="sub-menu"> <li id="menu-item-2457" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2457"><a href="https://kia.com.cy/kia-cyprus/" class="menu-link"><span class="text-wrap">KIA CYPRUS</span></a></li> <li id="menu-item-2456" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2456"><a href="https://kia.com.cy/kia-worldwide/" class="menu-link"><span class="text-wrap">KIA WORLDWIDE</span></a></li> <li id="menu-item-12849" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12849"><a href="https://kia.com.cy/our-movement/" class="menu-link"><span class="text-wrap">OUR MOVEMENT</span></a></li> <li id="menu-item-2455" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2455"><a href="https://kia.com.cy/our-commitment/" class="menu-link"><span class="text-wrap">OUR COMMITMENT</span></a></li> <li id="menu-item-2454" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2454"><a href="https://kia.com.cy/environment/" class="menu-link"><span class="text-wrap">ENVIRONMENT</span></a></li> <li id="menu-item-2458" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2458"><a href="https://kia.com.cy/warranty/" class="menu-link"><span class="text-wrap">KIA 7 YEARS WARRANTY</span></a></li> <li id="menu-item-2459" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2459"><a href="https://kia.com.cy/about-kia-business/" class="menu-link"><span class="text-wrap">ABOUT KIA BUSINESS</span></a></li></ul> </li> </ul> </nav><!-- #site-navigation --> </div><!-- #site-navigation-wrap --> <div class="oceanwp-mobile-menu-icon clr mobile-right"> <a href="https://kia.com.cy/#mobile-menu-toggle" class="mobile-menu" aria-label="Mobile Menu"> <div class="hamburger hamburger--minus" aria-expanded="false" role="navigation"> <div class="hamburger-box"> <div class="hamburger-inner"></div> </div> </div> </a> </div><!-- #oceanwp-mobile-menu-navbar --> </div><!-- #site-header-inner --> </header><!-- #site-header --> <main id="main" class="site-main clr" role="main"> <div id="content-wrap" class="container clr"> <div id="primary" class="content-area clr"> <div id="content" class="site-content clr"> <article class="single-page-article clr"> <div class="entry clr" itemprop="text"> <div data-elementor-type="wp-page" data-elementor-id="1639" class="elementor elementor-1639" data-elementor-post-type="page"> <section class="elementor-section elementor-top-section elementor-element elementor-element-e6f0120 elementor-section-full_width elementor-section-stretched elementor-section-content-middle elementor-section-height-default elementor-section-height-default" data-id="e6f0120" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c8b8515" data-id="c8b8515" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b5596c3 elementor-widget elementor-widget-image" data-id="b5596c3" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="253" height="74" src="https://kia.com.cy/wp-content/uploads/2021/05/sportage-logo.png" class="attachment-medium size-medium wp-image-1644" alt="" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-69fce04" data-id="69fce04" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d07635b elementor-widget elementor-widget-text-editor" data-id="d07635b" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><a href="#models">MODELS</a>  |  <a href="#colours">COLOURS</a>  |  <a href="#features">FEATURES</a></p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-e329cb3 elementor-section-height-min-height elementor-section-items-top elementor-section-stretched elementor-section-boxed elementor-section-height-default" data-id="e329cb3" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f64a462" data-id="f64a462" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-33469cf elementor-widget elementor-widget-heading" data-id="33469cf" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">The all-new Kia Sportage</h2> </div> </div> <section class="elementor-section elementor-inner-section elementor-element elementor-element-c790cd3 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="c790cd3" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-2c0b2cf" data-id="2c0b2cf" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-70ab709 elementor-widget elementor-widget-text-editor" data-id="70ab709" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> Built for endless inspiration. </div> </div> <div class="elementor-element elementor-element-cec0ed8 elementor-hidden-phone elementor-widget elementor-widget-heading" data-id="cec0ed8" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-large">Plug-in Hybrid now from €39,900 minus €7,500, only €32,400 </h3> </div> </div> </div> </div> </div> </section> <div class="elementor-element elementor-element-a900070 elementor-hidden-phone elementor-widget elementor-widget-heading" data-id="a900070" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <p class="elementor-heading-title elementor-size-large">The above prices are based on the <a href="https://www.mcw.gov.cy/mcw/rtd/rtd.nsf/0/be564b967d6ac569c2258abd002b1c66/$FILE/%CE%9F%CE%B4%CE%B7%CE%B3%CF%8C%CF%82%20%CE%A6%CE%92%202024-01-29v.2.pdf" target="_blank" style="TEXT-DECORATION: underline">government subsidy</a> (Category Γ1)</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-b299723 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b299723" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-160c22b" data-id="160c22b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-53307a6 elementor-widget elementor-widget-oew-buttons" data-id="53307a6" data-element_type="widget" data-widget_type="oew-buttons.default"> <div class="elementor-widget-container"> <ul class="oew-buttons"> <li class="oew-button-inner elementor-repeater-item-8168aa7"> <a href="https://kia.com.cy/test-drive/" target="_blank"> <span class="oew-button-icon elementor-align-icon-left"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-car-alt" viewBox="0 0 480 512" xmlns="http://www.w3.org/2000/svg"><path d="M438.66 212.33l-11.24-28.1-19.93-49.83C390.38 91.63 349.57 64 303.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4l-19.93 49.83-11.24 28.1C17.22 221.5 0 244.66 0 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-27.34-17.22-50.5-41.34-59.67zm-306.73-54.16c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L368 208H112l19.93-49.83zM80 319.8c-19.2 0-32-12.76-32-31.9S60.8 256 80 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S380.8 256 400 256s32 12.76 32 31.9-12.8 31.9-32 31.9z"></path></svg> </span> <span>Test Drive</span> </a> </li> </ul> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-f0e17ea" data-id="f0e17ea" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-811b139 elementor-widget elementor-widget-oew-buttons" data-id="811b139" data-element_type="widget" data-widget_type="oew-buttons.default"> <div class="elementor-widget-container"> <ul class="oew-buttons"> <li class="oew-button-inner elementor-repeater-item-8168aa7"> <a href="https://kia.com.cy/wp-content/uploads/2021/12/KIA_Sportage_Brochure_Dec-2021.pdf" target="_blank"> <span class="oew-button-icon elementor-align-icon-left"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-book-open" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z"></path></svg> </span> <span>Brochure</span> </a> </li> </ul> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-3896fc4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3896fc4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b326720" data-id="b326720" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e0dc1f6 elementor-widget elementor-widget-heading" data-id="e0dc1f6" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Pricelists</h2> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-3e04235 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3e04235" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-9efe37e" data-id="9efe37e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1374c20 elementor-widget elementor-widget-oew-buttons" data-id="1374c20" data-element_type="widget" data-widget_type="oew-buttons.default"> <div class="elementor-widget-container"> <ul class="oew-buttons"> <li class="oew-button-inner elementor-repeater-item-8168aa7"> <a href="https://kia.com.cy/wp-content/uploads/2024/12/KIA_Sportage_June-2024.pdf" target="_blank"> <span class="oew-button-icon elementor-align-icon-left"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-euro-sign" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"></path></svg> </span> <span>Baseline &amp; GT Line</span> </a> </li> </ul> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-9141d95" data-id="9141d95" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ac0155f elementor-widget elementor-widget-oew-buttons" data-id="ac0155f" data-element_type="widget" data-widget_type="oew-buttons.default"> <div class="elementor-widget-container"> <ul class="oew-buttons"> <li class="oew-button-inner elementor-repeater-item-8168aa7"> <a href="https://kia.com.cy/wp-content/uploads/2024/12/KIA_Sportage_Plugin_Oct-2024.pdf" target="_blank"> <span class="oew-button-icon elementor-align-icon-left"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-euro-sign" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"></path></svg> </span> <span>Hybrid &amp; Plugin Hybrid</span> </a> </li> </ul> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a8960a2" data-id="a8960a2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ce4b754 elementor-widget elementor-widget-oew-buttons" data-id="ce4b754" data-element_type="widget" data-widget_type="oew-buttons.default"> <div class="elementor-widget-container"> <ul class="oew-buttons"> <li class="oew-button-inner elementor-repeater-item-8168aa7"> <a href="https://kia.com.cy/wp-content/uploads/2024/12/KIA_Sportage_Anniversary_Oct-2024.pdf" target="_blank"> <span class="oew-button-icon elementor-align-icon-left"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-euro-sign" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"></path></svg> </span> <span>Anniversary Edition </span> </a> </li> </ul> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-99c1dab elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="99c1dab" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-98d70c9" data-id="98d70c9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0d5ccd8 elementor-position-top elementor-widget elementor-widget-image-box" data-id="0d5ccd8" data-element_type="widget" data-widget_type="image-box.default"> <div class="elementor-widget-container"> <div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><img decoding="async" src="https://kia.com.cy/wp-content/uploads/elementor/thumbs/fuel-icon-p5y6gc3k7giarexmmqmqn4u9fyqp3pwerd8hosqjo0.png" title="fuel-icon" alt="fuel-icon" loading="lazy" /></figure><div class="elementor-image-box-content"><h3 class="elementor-image-box-title">Fuel Consumption</h3><p class="elementor-image-box-description"><b>6.3-6.6 Lt/100km</b></p></div></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4fa63c9" data-id="4fa63c9" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c9e8482 elementor-position-top elementor-widget elementor-widget-image-box" data-id="c9e8482" data-element_type="widget" data-widget_type="image-box.default"> <div class="elementor-widget-container"> <div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><img decoding="async" src="https://kia.com.cy/wp-content/uploads/elementor/thumbs/icon_spec_08-p5ybbiaruyb0fahiqyirtfhqu1c8l2bl6e12e70a34.png" title="icon_spec_08" alt="icon_spec_08" loading="lazy" /></figure><div class="elementor-image-box-content"><h3 class="elementor-image-box-title">Engine</h3><p class="elementor-image-box-description"><b>1598CC Petrol Auto 160PS</b></p></div></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-3d4091d" data-id="3d4091d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-10381e2 elementor-position-top elementor-widget elementor-widget-image-box" data-id="10381e2" data-element_type="widget" data-widget_type="image-box.default"> <div class="elementor-widget-container"> <div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><img decoding="async" src="https://kia.com.cy/wp-content/uploads/elementor/thumbs/warranty-icon-p5y6o6355r8bifk0w4itf5ojnk4t8wzvu4y5nt4ftc.png" title="warranty-icon" alt="warranty-icon" loading="lazy" /></figure><div class="elementor-image-box-content"><h3 class="elementor-image-box-title">Warranty</h3><p class="elementor-image-box-description"><b>7 YEARS </b> / 150,000 km</p></div></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-e3ef2b2" data-id="e3ef2b2" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5b35362 elementor-position-top elementor-widget elementor-widget-image-box" data-id="5b35362" data-element_type="widget" data-widget_type="image-box.default"> <div class="elementor-widget-container"> <div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><img decoding="async" src="https://kia.com.cy/wp-content/uploads/elementor/thumbs/emissions-icon-p5y6ga7vtsfq470cxpthi5bc96zyoboy33xiq8tc0g.png" title="emissions-icon" alt="emissions-icon" loading="lazy" /></figure><div class="elementor-image-box-content"><h3 class="elementor-image-box-title">CO<sub>2</sub> Emissions</h3><p class="elementor-image-box-description"><b>142.8-149.8</b></p></div></div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-16bd583 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="16bd583" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-673ada4" data-id="673ada4" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-dcbf757 elementor-widget elementor-widget-video" data-id="dcbf757" data-element_type="widget" data-settings="{&quot;youtube_url&quot;:&quot;https:\/\/www.youtube.com\/watch?v=L-ExIpWkTaE&amp;list=PLEAFX11b3tC4e4DZsH8jo2CiMlsTqdXA2&quot;,&quot;lazy_load&quot;:&quot;yes&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}" data-widget_type="video.default"> <div class="elementor-widget-container"> <div class="elementor-wrapper elementor-open-inline"> <div class="elementor-video"></div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-cdbe9d9 elementor-section-full_width elementor-section-height-min-height elementor-section-items-top elementor-section-stretched elementor-section-height-default" data-id="cdbe9d9" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ff28cb7" data-id="ff28cb7" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-83f4e36 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="83f4e36" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-4fc2d89" data-id="4fc2d89" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1d472f8 elementor-widget elementor-widget-heading" data-id="1d472f8" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-xl">DESIGN</h2> </div> </div> <div class="elementor-element elementor-element-272e433 elementor-widget elementor-widget-heading" data-id="272e433" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-large">Refinement redefined</h3> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-a26e804 elementor-section-full_width elementor-section-height-min-height elementor-section-items-stretch elementor-section-stretched elementor-section-height-default" data-id="a26e804" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-3f4f0e0" data-id="3f4f0e0" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0208508 oew-align-center elementor-widget elementor-widget-oew-modal" data-id="0208508" data-element_type="widget" data-widget_type="oew-modal.default"> <div class="elementor-widget-container"> <div class="oew-modal-button"> <a href="#oew-modal-0208508" class="button"> <span></span> <span class="oew-button-icon elementor-align-icon-right"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-plus-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"></path></svg> </span> </a> </div> <div id="oew-modal-0208508" class="oew-modal-wrap oew-temp-styles"> <div class="oew-modal-container"> <div class="oew-modal-inner"> <button aria-label="Close this modal window" type="button" class="oew-modal-close oew-modal-close-inside"> <svg focusable="false" aria-hidden="true" role="img" width="14" height="14" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve"> <path d="M505.943,6.058c-8.077-8.077-21.172-8.077-29.249,0L6.058,476.693c-8.077,8.077-8.077,21.172,0,29.249 C10.096,509.982,15.39,512,20.683,512c5.293,0,10.586-2.019,14.625-6.059L505.943,35.306 C514.019,27.23,514.019,14.135,505.943,6.058z"/> <path d="M505.942,476.694L35.306,6.059c-8.076-8.077-21.172-8.077-29.248,0c-8.077,8.076-8.077,21.171,0,29.248l470.636,470.636 c4.038,4.039,9.332,6.058,14.625,6.058c5.293,0,10.587-2.019,14.624-6.057C514.018,497.866,514.018,484.771,505.942,476.694z"/> </svg> </button> <h3><a href="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-ice-gls-my22-elp-gallery.webp"><img loading="lazy" decoding="async" class="alignnone wp-image-7717 size-full" src="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-ice-gls-my22-elp-gallery.webp" alt="" width="964" height="723" srcset="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-ice-gls-my22-elp-gallery.webp 964w, https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-ice-gls-my22-elp-gallery-300x225.webp 300w, https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-ice-gls-my22-elp-gallery-768x576.webp 768w" sizes="(max-width: 964px) 100vw, 964px" /></a></h3><h3>Dynamic Design</h3><p>Make a statement each time you slide behind the wheel of the Kia Sportage. Designed and produced in Europe, with an eye-catching commanding side profile, sculpted sporty front with the Kia signature grille and refined chrome window trim. The bold rear design and sweeping rear lights finish it off with sleekness and style.</p> </div> </div> <div class="oew-modal-overlay"></div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-34ecf55" data-id="34ecf55" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3813496 oew-align-center elementor-widget elementor-widget-oew-modal" data-id="3813496" data-element_type="widget" data-widget_type="oew-modal.default"> <div class="elementor-widget-container"> <div class="oew-modal-button"> <a href="#oew-modal-3813496" class="button"> <span></span> <span class="oew-button-icon elementor-align-icon-right"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-plus-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"></path></svg> </span> </a> </div> <div id="oew-modal-3813496" class="oew-modal-wrap oew-temp-styles"> <div class="oew-modal-container"> <div class="oew-modal-inner"> <button aria-label="Close this modal window" type="button" class="oew-modal-close oew-modal-close-inside"> <svg focusable="false" aria-hidden="true" role="img" width="14" height="14" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve"> <path d="M505.943,6.058c-8.077-8.077-21.172-8.077-29.249,0L6.058,476.693c-8.077,8.077-8.077,21.172,0,29.249 C10.096,509.982,15.39,512,20.683,512c5.293,0,10.586-2.019,14.625-6.059L505.943,35.306 C514.019,27.23,514.019,14.135,505.943,6.058z"/> <path d="M505.942,476.694L35.306,6.059c-8.076-8.077-21.172-8.077-29.248,0c-8.077,8.076-8.077,21.171,0,29.248l470.636,470.636 c4.038,4.039,9.332,6.058,14.625,6.058c5.293,0,10.587-2.019,14.624-6.057C514.018,497.866,514.018,484.771,505.942,476.694z"/> </svg> </button> <p><img loading="lazy" decoding="async" class="alignnone wp-image-7718 size-full" src="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-gallery-drivemodes-moving.webp" alt="" width="964" height="723" srcset="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-gallery-drivemodes-moving.webp 964w, https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-gallery-drivemodes-moving-300x225.webp 300w, https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-gallery-drivemodes-moving-768x576.webp 768w" sizes="(max-width: 964px) 100vw, 964px" /></p><h3>Bold SUV style</h3><p>From bonnet to boot, the new Kia Sportage boasts SUV-like traits. Like the highly positioned full LED headlamps and the low, wide grille that give the front an imposing appearance and stable stance. Sweeping lines and sharp features create a dynamic profile. At the rear, clearly defined lines and smooth bodywork meet striking lights – it's a look you won't forget.</p> </div> </div> <div class="oew-modal-overlay"></div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-0928d00" data-id="0928d00" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-978d7a9 oew-align-center elementor-widget elementor-widget-oew-modal" data-id="978d7a9" data-element_type="widget" data-widget_type="oew-modal.default"> <div class="elementor-widget-container"> <div class="oew-modal-button"> <a href="#oew-modal-978d7a9" class="button"> <span></span> <span class="oew-button-icon elementor-align-icon-right"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-plus-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"></path></svg> </span> </a> </div> <div id="oew-modal-978d7a9" class="oew-modal-wrap oew-temp-styles"> <div class="oew-modal-container"> <div class="oew-modal-inner"> <button aria-label="Close this modal window" type="button" class="oew-modal-close oew-modal-close-inside"> <svg focusable="false" aria-hidden="true" role="img" width="14" height="14" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve"> <path d="M505.943,6.058c-8.077-8.077-21.172-8.077-29.249,0L6.058,476.693c-8.077,8.077-8.077,21.172,0,29.249 C10.096,509.982,15.39,512,20.683,512c5.293,0,10.586-2.019,14.625-6.059L505.943,35.306 C514.019,27.23,514.019,14.135,505.943,6.058z"/> <path d="M505.942,476.694L35.306,6.059c-8.076-8.077-21.172-8.077-29.248,0c-8.077,8.076-8.077,21.171,0,29.248l470.636,470.636 c4.038,4.039,9.332,6.058,14.625,6.058c5.293,0,10.587-2.019,14.624-6.057C514.018,497.866,514.018,484.771,505.942,476.694z"/> </svg> </button> <p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-16465" src="https://kia.com.cy/wp-content/uploads/2024/12/kia_sportage_2024_inside.jpg" alt="" width="964" height="723" srcset="https://kia.com.cy/wp-content/uploads/2024/12/kia_sportage_2024_inside.jpg 964w, https://kia.com.cy/wp-content/uploads/2024/12/kia_sportage_2024_inside-300x225.jpg 300w, https://kia.com.cy/wp-content/uploads/2024/12/kia_sportage_2024_inside-768x576.jpg 768w" sizes="(max-width: 964px) 100vw, 964px" /></p><h3>Sporty from the inside out</h3><p>You have to experience the new Kia Sportage GT Line to believe it. Imagine sitting on supple, genuine leather seats in the sporty interior cabin, with a striking black roof. Imagine placing your hands on a D-shaped steering wheel with three spokes and perforated leather. Comfortable? Now just press the aluminum-finish pedals – and off you go!</p> </div> </div> <div class="oew-modal-overlay"></div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-beba170" data-id="beba170" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9cbf1f8 oew-align-center elementor-widget elementor-widget-oew-modal" data-id="9cbf1f8" data-element_type="widget" data-widget_type="oew-modal.default"> <div class="elementor-widget-container"> <div class="oew-modal-button"> <a href="#oew-modal-9cbf1f8" class="button"> <span></span> <span class="oew-button-icon elementor-align-icon-right"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-plus-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"></path></svg> </span> </a> </div> <div id="oew-modal-9cbf1f8" class="oew-modal-wrap oew-temp-styles"> <div class="oew-modal-container"> <div class="oew-modal-inner"> <button aria-label="Close this modal window" type="button" class="oew-modal-close oew-modal-close-inside"> <svg focusable="false" aria-hidden="true" role="img" width="14" height="14" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve"> <path d="M505.943,6.058c-8.077-8.077-21.172-8.077-29.249,0L6.058,476.693c-8.077,8.077-8.077,21.172,0,29.249 C10.096,509.982,15.39,512,20.683,512c5.293,0,10.586-2.019,14.625-6.059L505.943,35.306 C514.019,27.23,514.019,14.135,505.943,6.058z"/> <path d="M505.942,476.694L35.306,6.059c-8.076-8.077-21.172-8.077-29.248,0c-8.077,8.076-8.077,21.171,0,29.248l470.636,470.636 c4.038,4.039,9.332,6.058,14.625,6.058c5.293,0,10.587-2.019,14.624-6.057C514.018,497.866,514.018,484.771,505.942,476.694z"/> </svg> </button> <h2><img loading="lazy" decoding="async" class="alignnone wp-image-7725 size-full" src="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-gallery-intelligent-space.webp" alt="" width="964" height="723" srcset="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-gallery-intelligent-space.webp 964w, https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-gallery-intelligent-space-300x225.webp 300w, https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-gallery-intelligent-space-768x576.webp 768w" sizes="(max-width: 964px) 100vw, 964px" /></h2><h3>Smart Power Tailgate</h3><p>A hands-free boot opener? Talk about smart. When you're loaded down with gear or groceries, simply approach the Kia Sportage with the Smart Key in your pocket, stand in the zone for 3 seconds and the boot opens automatically. The Smart Key also grants you easy keyless access to the vehicle and lets you start the engine with the press of a button. (* Feature available on the GT Line S)</p> </div> </div> <div class="oew-modal-overlay"></div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-646b964 elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="646b964" data-element_type="section" id="models" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3f9b5a8" data-id="3f9b5a8" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-f82daf4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="f82daf4" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-cee7b01" data-id="cee7b01" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-65541aa elementor-widget elementor-widget-heading" data-id="65541aa" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-xl">Sportage Anniversary Edition</h2> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-243c045 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="243c045" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-72e9621" data-id="72e9621" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-48a5ee6 elementor-widget elementor-widget-oew-image-gallery" data-id="48a5ee6" data-element_type="widget" data-widget_type="oew-image-gallery.default"> <div class="elementor-widget-container"> <div class="oew-image-gallery oew-has-lightbox"> <div class="oew-gallery-item"> <a class="oew-gallery-item-inner no-lightbox" href="https://kia.com.cy/wp-content/uploads/2024/01/Kia_Sportage_Anniversary_Edition_2.jpg" data-width="900" data-height="600" data-elementor-open-lightbox="no"> <div class="oew-gallery-thumbnail"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2024/01/Kia_Sportage_Anniversary_Edition_2-768x512.jpg" alt="Kia_Sportage_Anniversary_Edition_2"> </div> <div class="oew-gallery-overlay oew-gallery-transition-fade"> <div class="oew-gallery-item-icon"> <i aria-hidden="true" class="fas fa-search"></i> </div> </div> </a> </div> <div class="oew-gallery-item"> <a class="oew-gallery-item-inner no-lightbox" href="https://kia.com.cy/wp-content/uploads/2024/01/Kia_Sportage_Anniversary_Edition_900x600.jpg" data-width="900" data-height="600" data-elementor-open-lightbox="no"> <div class="oew-gallery-thumbnail"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2024/01/Kia_Sportage_Anniversary_Edition_900x600-768x512.jpg" alt="Kia_Sportage_Anniversary_Edition_900x600"> </div> <div class="oew-gallery-overlay oew-gallery-transition-fade"> <div class="oew-gallery-item-icon"> <i aria-hidden="true" class="fas fa-search"></i> </div> </div> </a> </div> <div class="oew-gallery-item"> <a class="oew-gallery-item-inner no-lightbox" href="https://kia.com.cy/wp-content/uploads/2024/01/Kia_Sportage_Anniversary_Edition_Wolf.jpg" data-width="900" data-height="600" data-elementor-open-lightbox="no"> <div class="oew-gallery-thumbnail"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2024/01/Kia_Sportage_Anniversary_Edition_Wolf-768x512.jpg" alt="Kia_Sportage_Anniversary_Edition_Wolf"> </div> <div class="oew-gallery-overlay oew-gallery-transition-fade"> <div class="oew-gallery-item-icon"> <i aria-hidden="true" class="fas fa-search"></i> </div> </div> </a> </div> <div class="oew-gallery-item"> <a class="oew-gallery-item-inner no-lightbox" href="https://kia.com.cy/wp-content/uploads/2024/01/Kia_Sportage_Anniversary_Green_Inside.jpg" data-width="900" data-height="600" data-elementor-open-lightbox="no"> <div class="oew-gallery-thumbnail"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2024/01/Kia_Sportage_Anniversary_Green_Inside-768x512.jpg" alt="Kia_Sportage_Anniversary_Green_Inside"> </div> <div class="oew-gallery-overlay oew-gallery-transition-fade"> <div class="oew-gallery-item-icon"> <i aria-hidden="true" class="fas fa-search"></i> </div> </div> </a> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-4a03342 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4a03342" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-1dc7739" data-id="1dc7739" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-686af72 elementor-align-center elementor-widget elementor-widget-button" data-id="686af72" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="https://kia.com.cy/wp-content/uploads/2024/04/SPORTAGE-Anniversary-Edition-Mobile-Brochure.pdf" target="_blank"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">Anniversary Edition Brochure</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-8f5913e elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="8f5913e" data-element_type="section" id="colours" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-95d0f29" data-id="95d0f29" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-884f7bf elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="884f7bf" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-bc4d937" data-id="bc4d937" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-fb9135c elementor-widget elementor-widget-heading" data-id="fb9135c" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-xl">360° Visualiser</h2> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-9ef50b3 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9ef50b3" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9e10241" data-id="9e10241" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-68d74e6 elementor-widget elementor-widget-shortcode" data-id="68d74e6" data-element_type="widget" data-widget_type="shortcode.default"> <div class="elementor-widget-container"> <div class="elementor-shortcode"> <div class="devvn_ireel_wrap"> <div class="devvn_ireel_headerimg devvn_ireel_img_responsive"> <img loading="lazy" decoding="async" src="https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0000.jpg" width="800" height="450" class="reel no-lazyload devvn-no-lazyload" id="image_7774" data-images="https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0000.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0024.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0027.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0030.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0033.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0036.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0039.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0042.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0045.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0048.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0051.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0054.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0057.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0060.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0063.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0066.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0069.jpg" data-frames="24" data-frame="1" data-responsive="true" data-steppable="false" data-delay="3" data-loops="true" data-speed="0"> </div> <div class="nav_color_wrap"> <span class="title_color">Yuka Steel Gray</span> <ul class="nav_color"> <li class="color_click" data-preimage="https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0000.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0024.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0027.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0030.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0033.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0036.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0039.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0042.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0045.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0048.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0051.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0054.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0057.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0060.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0063.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0066.jpg,https://kia.com.cy/wp-content/uploads/2022/02/kia-sportage-ice-gls-my22-usgyukasteelgrey-18a_0069.jpg" data-for="image_7774" data-title="Yuka Steel Gray" id="color_7774_1"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2022/02/yuka_steel_gray.jpg" alt="Yuka Steel Gray"> </li> <li class="color_click" data-preimage="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0023.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0022.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0020.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0019.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0017.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0016.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0014.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0013.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0011.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0010.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0008.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0007.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0005.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0004.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0002.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0001.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-1kpearlblack-18b_0000.jpg" data-for="image_7774" data-title="Pearl Black" id="color_7774_2"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2021/07/Black-Pearl.jpg" alt="Pearl Black"> </li> <li class="color_click" data-preimage="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0000.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0001.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0002.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0004.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0005.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0007.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0008.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0010.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0011.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0013.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0014.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0016.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0017.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0019.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0020.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0022.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-aa9infrared-18b_0023.jpg" data-for="image_7774" data-title="Infrared" id="color_7774_3"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2021/07/Infra-Red.jpg" alt="Infrared"> </li> <li class="color_click" data-preimage="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0000.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0001.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0002.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0004.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0005.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0007.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0008.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0010.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0011.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0013.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0014.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0016.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0017.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0019.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0020.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0022.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-b3lpacificblue-18b_0023.jpg" data-for="image_7774" data-title="Pacific Blue" id="color_7774_4"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2021/12/DU3_yacht_blue_0000.webp" alt="Pacific Blue"> </li> <li class="color_click" data-preimage=",https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0001.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0002.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0004.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0005.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0007.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0008.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0010.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0011.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0013.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0014.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0016.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0017.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0019.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0020.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0022.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-csslunarsilver-18b_0023.jpg" data-for="image_7774" data-title="Lunar Silver" id="color_7774_5"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2021/07/Lunar-Silver.jpg" alt="Lunar Silver"> </li> <li class="color_click" data-preimage="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0000.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0001.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0002.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0004.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0005.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0007.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0008.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0010.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0011.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0013.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0014.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0016.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0017.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0019.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0020.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0022.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-h8gpentametal-18b_0023.jpg" data-for="image_7774" data-title="Penta Metal" id="color_7774_6"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2021/07/Penta-Metal.jpg" alt="Penta Metal"> </li> <li class="color_click" data-preimage="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0000.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0001.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0002.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0004.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0005.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0007.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0008.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0010.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0011.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0013.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0014.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0016.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0017.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0019.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0020.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0022.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha2deluxewhiteblackroof-18b_0023.jpg" data-for="image_7774" data-title="GT Line - Deluxe White / Black Roof" id="color_7774_7"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2021/07/UD_clearwhite__aurorablackpearl_0000.jpg" alt="GT Line - Deluxe White / Black Roof"> </li> <li class="color_click" data-preimage="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0000.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0001.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0002.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0004.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0005.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0007.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0008.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0010.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0011.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0013.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0014.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0016.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0017.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0019.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0020.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0022.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha5lunarsilverblackroof-18b_0023.jpg" data-for="image_7774" data-title="GT Line - Lunar Silver / Black Roof" id="color_7774_8"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2021/07/4SS_silkysilver__aurorablackpearl_0000.jpg" alt="GT Line - Lunar Silver / Black Roof"> </li> <li class="color_click" data-preimage="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0000.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0001.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0002.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0004.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0005.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0007.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0008.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0010.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0011.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0013.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0014.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0016.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0017.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0019.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0020.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0022.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha6pentametalblackroof-18b_0023.jpg" data-for="image_7774" data-title="GT Line - Penta Metal / Black Roof" id="color_7774_9"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2022/01/penta_metal_pearl_black.jpg" alt="GT Line - Penta Metal / Black Roof"> </li> <li class="color_click" data-preimage="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0000.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0001.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0002.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0004.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0005.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0007.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0008.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0010.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0011.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0013.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0014.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0016.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0017.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0019.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0020.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0022.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-ha7infraredblackroof-18b_0023.jpg" data-for="image_7774" data-title="GT Line - Infra Red / Black Roof" id="color_7774_10"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2021/07/BEG_signalred__aurorablackpearl_0000.jpg" alt="GT Line - Infra Red / Black Roof"> </li> <li class="color_click" data-preimage="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0000.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0001.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0002.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0004.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0005.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0007.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0008.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0010.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0011.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0013.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0014.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0016.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0017.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0019.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0020.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0022.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbcexperiencegreenblackroof-18b_0023.jpg" data-for="image_7774" data-title="GT Line - Experience Green / Black Roof" id="color_7774_11"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2022/01/kia_sportage_green_black.jpg" alt="GT Line - Experience Green / Black Roof"> </li> <li class="color_click" data-preimage="https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0000.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0001.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0002.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0003.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0004.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0005.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0006.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0007.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0008.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0009.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0010.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0011.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0012.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0013.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0014.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0015.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0016.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0017.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0018.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0019.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0020.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0021.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0022.jpg,https://kia.com.cy/wp-content/uploads/2022/01/kia-sportage-hev-gtl-my22-hbborangefusionblackroof-18b_0023.jpg" data-for="image_7774" data-title="GT Line - Orange Fusion / Black Roof" id="color_7774_12"> <img decoding="async" src="https://kia.com.cy/wp-content/uploads/2022/01/kia_sportage_orange_black.jpg" alt="GT Line - Orange Fusion / Black Roof"> </li> </ul></div> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-d470c46 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d470c46" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3eb7777" data-id="3eb7777" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-84e4bcd elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="84e4bcd" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-a477803" data-id="a477803" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6f56509 elementor-widget elementor-widget-heading" data-id="6f56509" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-xl">SPORTAGE VERSION</h2> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-089e1f8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="089e1f8" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-651d960" data-id="651d960" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c30c9b5 elementor-widget elementor-widget-oew-tabs" data-id="c30c9b5" data-element_type="widget" data-settings="{&quot;active_item&quot;:1}" data-widget_type="oew-tabs.default"> <div class="elementor-widget-container"> <div class="oew-tabs oew-tabs-top oew-has-active-item"> <div class="oew-tabs-wrap oew-tabs-normal oew-tabs-"> <div id="oew-tab-title-2041" class="oew-tab-title oew-active" data-tab="1" tabindex="2041" role="tab" aria-controls="oew-tab-content-2041"> <span class="oew-icon-align-left"> <i aria-hidden="true" class=""></i> </span> Comfort </div> <div id="oew-tab-title-2042" class="oew-tab-title " data-tab="2" tabindex="2042" role="tab" aria-controls="oew-tab-content-2042"> <span class="oew-icon-align-left"> <i aria-hidden="true" class=""></i> </span> Premium </div> <div id="oew-tab-title-2043" class="oew-tab-title " data-tab="3" tabindex="2043" role="tab" aria-controls="oew-tab-content-2043"> <span class="oew-icon-align-left"> <i aria-hidden="true" class=""></i> </span> Anniversary </div> <div id="oew-tab-title-2044" class="oew-tab-title " data-tab="4" tabindex="2044" role="tab" aria-controls="oew-tab-content-2044"> <span class="oew-icon-align-left"> <i aria-hidden="true" class=""></i> </span> GT-Line Executive </div> <div id="oew-tab-title-2045" class="oew-tab-title " data-tab="5" tabindex="2045" role="tab" aria-controls="oew-tab-content-2045"> <span class="oew-icon-align-left"> <i aria-hidden="true" class=""></i> </span> GT-Line Luxury </div> </div> <div class="oew-tabs-content-wrap"> <div class="oew-tab-title oew-tab-mobile-title oew-active" tabindex="2041" data-tab="1" role="tab"> <span class="oew-icon-align-left"> <i aria-hidden="true" class=""></i> </span> Comfort </div> <div id="oew-tab-content-1" class="oew-tab-content oew-active" role="tabpanel" aria-labelledby="oew-tab-title-2041"> <h2><img loading="lazy" decoding="async" class="wp-image-7679 size-full alignright" src="https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_Comfort.jpg" alt="" width="475" height="300" srcset="https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_Comfort.jpg 475w, https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_Comfort-300x189.jpg 300w" sizes="(max-width: 475px) 100vw, 475px" />Sportage Comfort</h2><ul><li>Automatic Climate Control Three zone</li><li>Forward Collision Avoidance Assist (FCA) - City/Ped/Cyc</li><li>Lane Keep Assist (LKAS) – Line/Road-Edge</li><li>Lane Following Assist (LFA)</li><li>Front And Rear Parking Sensors</li><li>Cruise Control with Speed Limiter</li><li>Silver Roof Racks</li><li>E-Call (Europe)</li><li>12.3’’ Supervision Colour Cluster Display TFT-LCD+RHEOSTAT</li><li>12.3’’ Touchscreen with Navigation &amp; Cyprus Maps</li><li>Telematics System with UVO Connect Services</li><li>17’’ Alloy Wheels with 215/65R17 tyres</li><li>Emergency Spare Tyre (Manual Only)</li><li>Tyre Mobility Kit (Auto Only)</li><li>LED Headlights with Low and High Projection</li></ul> </div> <div class="oew-tab-title oew-tab-mobile-title " tabindex="2042" data-tab="2" role="tab"> <span class="oew-icon-align-left"> <i aria-hidden="true" class=""></i> </span> Premium </div> <div id="oew-tab-content-2" class="oew-tab-content " role="tabpanel" aria-labelledby="oew-tab-title-2042"> <h2><img loading="lazy" decoding="async" class="wp-image-7681 size-full alignright" src="https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_Premium.jpg" alt="" width="475" height="300" srcset="https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_Premium.jpg 475w, https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_Premium-300x189.jpg 300w" sizes="(max-width: 475px) 100vw, 475px" />Sportage Premium</h2><ul><li>Shift by Wire (Only Auto)</li><li>Adaptive Cruise Control (Only Auto)</li><li>Premium Cloth Seats</li><li>Engine Start/Stop with Smart Entry System</li><li>Heated Seats Front &amp; Rear</li><li>Heated Steering Wheel</li><li>Forward Collision Avoidance Assist (FCA) –City/Ped/Cyc/Junc/Turn (Only Auto)</li><li>LED Front Fog Lights</li><li>12.3’’ Supervision Colour Cluster Display TFT-LCD+RHEOSTAT</li><li>12.3’’ Touchscreen with Navigation &amp; Cyprus Maps</li><li>Telematics System with UVO Connect Services</li><li>18’’ Alloy Wheels with 235/55R18 tires</li></ul> </div> <div class="oew-tab-title oew-tab-mobile-title " tabindex="2043" data-tab="3" role="tab"> <span class="oew-icon-align-left"> <i aria-hidden="true" class=""></i> </span> Anniversary </div> <div id="oew-tab-content-3" class="oew-tab-content " role="tabpanel" aria-labelledby="oew-tab-title-2043"> <h2><img loading="lazy" decoding="async" class="wp-image-14163 size-full alignright" src="https://kia.com.cy/wp-content/uploads/2024/01/kia_sportage_anniverasry.jpg" alt="" width="475" height="300" srcset="https://kia.com.cy/wp-content/uploads/2024/01/kia_sportage_anniverasry.jpg 475w, https://kia.com.cy/wp-content/uploads/2024/01/kia_sportage_anniverasry-300x189.jpg 300w" sizes="(max-width: 475px) 100vw, 475px" />Sportage Anniversary</h2><ul><li>Leather Seats with Suede Accent (GreenColour)</li><li>E-Call (Europe)</li><li>19’’ Glossy Black</li><li>Alloy Wheels with 235/50/R19 tires</li><li>10-way Driver’s Power Adjuastable Seat</li><li>8-way Passenger’s Power Adjustable Seat</li><li>Rear Dark Chrome Skid Plate</li><li>Highway Driving Assist(HAD)</li><li>Ambient Mood Lighting (64 Colour Mood Light)</li><li>Forward Collision Avoidance Assist (FCA) – City/Ped/Cyc/Junc/Turn</li><li>Lane Keeping Assist System (LKAS): Line/Road-Edge</li><li>Adaptive Smart Cruise Control with Stop &amp; Go</li><li>12.3’’ Supervision Colour Cluster Display TFT LCD + RHEOSTAT</li><li>12.3’’ Touchscreen with Navigation &amp; Cyprus Maps</li></ul> </div> <div class="oew-tab-title oew-tab-mobile-title " tabindex="2044" data-tab="4" role="tab"> <span class="oew-icon-align-left"> <i aria-hidden="true" class=""></i> </span> GT-Line Executive </div> <div id="oew-tab-content-4" class="oew-tab-content " role="tabpanel" aria-labelledby="oew-tab-title-2044"> <h2><img loading="lazy" decoding="async" class="wp-image-7680 size-full alignright" src="https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_GT-LINE-PREMIUM.jpg" alt="" width="475" height="300" srcset="https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_GT-LINE-PREMIUM.jpg 475w, https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_GT-LINE-PREMIUM-300x189.jpg 300w" sizes="(max-width: 475px) 100vw, 475px" />Sportage GT-Line Executive</h2><ul><li>GT Line Exterior Styling</li><li>Leather Seats with Suede Accent</li><li>Electric Front Adjustable Seats (6 ways)</li><li>Blind Spot Collision Avoidance Assist (BCA)</li><li>Smart Electric Tailgate with Adjustable Height</li><li>Glossy Black Roof Rack</li><li>Wireless Smart Phone Charger</li><li>19" Alloy Wheels with 235/50R19 (Mild Hybrid &amp; Plug In Hybrid)</li><li>18" Alloy Wheels with 235/55R18 (Hybrid Only)</li></ul> </div> <div class="oew-tab-title oew-tab-mobile-title " tabindex="2045" data-tab="5" role="tab"> <span class="oew-icon-align-left"> <i aria-hidden="true" class=""></i> </span> GT-Line Luxury </div> <div id="oew-tab-content-5" class="oew-tab-content " role="tabpanel" aria-labelledby="oew-tab-title-2045"> <h2><img loading="lazy" decoding="async" class="wp-image-7691 size-full alignright" src="https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_GT-LINE-Executive.jpg" alt="" width="475" height="300" srcset="https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_GT-LINE-Executive.jpg 475w, https://kia.com.cy/wp-content/uploads/2022/01/Sportage_22_GT-LINE-Executive-300x189.jpg 300w" sizes="(max-width: 475px) 100vw, 475px" />Sportage GT-Line Luxury</h2><ul><li>Leather Seats<br />Ventilated Front Seats</li><li>Memory Driver’s Seat</li><li>10-Way Driver’s Power Adjustable Seat</li><li>8-Way Front Passenger’s Power Adjustable Seat</li><li>360 Surround View Monitor (SVM)</li><li>Panoramic Sunroof with Tilting &amp; Sliding Function</li><li>Harman/Kardon Premium Sound System</li><li>Blind Spot View Monitor (BVM)</li><li>Reverse Parking Collision Avoidance Assist (PCA)</li><li>Rear Cross Traffic Avoidance Assist (RCCA)</li></ul> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-f6edb9d elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="f6edb9d" data-element_type="section" id="features" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-36a1592" data-id="36a1592" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-26a017c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="26a017c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-0d08703" data-id="0d08703" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c88095c elementor-widget elementor-widget-heading" data-id="c88095c" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-xl">MILD HYBRID TECHNOLOGY</h2> </div> </div> <div class="elementor-element elementor-element-12a9033 elementor-widget elementor-widget-text-editor" data-id="12a9033" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: left;">Introducing the new mild hybrid technology available across the entire Sportage diesel range.</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-5a1c224 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5a1c224" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-3df1f6e" data-id="3df1f6e" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f5d8055 elementor-widget elementor-widget-image" data-id="f5d8055" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="2069" height="1159" src="https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-1.jpg" class="attachment-full size-full wp-image-1697" alt="" srcset="https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-1.jpg 2069w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-1-300x168.jpg 300w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-1-1024x574.jpg 1024w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-1-768x430.jpg 768w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-1-1536x860.jpg 1536w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-1-2048x1147.jpg 2048w" sizes="(max-width: 2069px) 100vw, 2069px" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-850f6d3" data-id="850f6d3" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7335c1a elementor-widget elementor-widget-image" data-id="7335c1a" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="2069" height="1159" src="https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-2.jpg" class="attachment-full size-full wp-image-1698" alt="" srcset="https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-2.jpg 2069w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-2-300x168.jpg 300w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-2-1024x574.jpg 1024w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-2-768x430.jpg 768w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-2-1536x860.jpg 1536w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-2-2048x1147.jpg 2048w" sizes="(max-width: 2069px) 100vw, 2069px" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-ec5f1dd" data-id="ec5f1dd" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3d7f5b2 elementor-widget elementor-widget-image" data-id="3d7f5b2" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="2069" height="1159" src="https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-3.jpg" class="attachment-full size-full wp-image-1699" alt="" srcset="https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-3.jpg 2069w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-3-300x168.jpg 300w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-3-1024x574.jpg 1024w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-3-768x430.jpg 768w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-3-1536x860.jpg 1536w, https://kia.com.cy/wp-content/uploads/2021/05/sportage-hybrid-3-2048x1147.jpg 2048w" sizes="(max-width: 2069px) 100vw, 2069px" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-58aa0a1 elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="58aa0a1" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-7f5e024" data-id="7f5e024" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ab770d elementor-hidden-phone elementor-widget elementor-widget-text-editor" data-id="4ab770d" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3>Use Smart Power Assistance</h3><p>By cleverly pairing the 1.6 CRDi diesel engine with a 48-volt lithium-ion battery, the EcoDynamics+ mild hybrid system can reduce fuel consumption and vehicle emission levels. What&#8217;s more, the integrated &#8216;e-system&#8217; recovers kinetic energy during deceleration phases to provide torque assistance whilst accelerating.</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8b21ede" data-id="8b21ede" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-679b2ba elementor-hidden-phone elementor-widget elementor-widget-text-editor" data-id="679b2ba" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3>Starting, Torque Assist, Cruising</h3><p>The engine is started by the &#8216;e-system&#8217; to ensure a prompt and smooth start. During acceleration or uphill driving, the &#8216;e-system&#8217; provides torque assistance by taking energy from the battery. When cruising at constant speed, the combustion engine partially recharged the battery if the charge level is low.</p><p> </p> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6c396e0" data-id="6c396e0" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6481240 elementor-hidden-phone elementor-widget elementor-widget-text-editor" data-id="6481240" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3>Recharging, Moving Stop &amp; Start</h3><p>When decelerating or braking, the energy generated by the vehicle motion is converted into electrical energy to recharge the battery. When decelerating to a stop, the combustion engine turns off automatically during in-gear deceleration and braking to save fuel.</p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-e8151a9 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e8151a9" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fa2763c" data-id="fa2763c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-91de390 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="91de390" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-d3e2a77" data-id="d3e2a77" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-bcd6fdf elementor-widget elementor-widget-heading" data-id="bcd6fdf" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-xl">FEATURES</h2> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-54ad767 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default" data-id="54ad767" data-element_type="section"> <div class="elementor-container elementor-column-gap-custom"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-eff1600" data-id="eff1600" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9fcf9b3 elementor-widget elementor-widget-image" data-id="9fcf9b3" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="500" height="334" src="https://kia.com.cy/wp-content/uploads/2022/01/Integrated-curved-displays.jpg" class="attachment-medium_large size-medium_large wp-image-7750" alt="" srcset="https://kia.com.cy/wp-content/uploads/2022/01/Integrated-curved-displays.jpg 500w, https://kia.com.cy/wp-content/uploads/2022/01/Integrated-curved-displays-300x200.jpg 300w" sizes="(max-width: 500px) 100vw, 500px" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-de65576" data-id="de65576" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e395595 elementor-widget elementor-widget-image" data-id="e395595" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="500" height="334" src="https://kia.com.cy/wp-content/uploads/2022/01/sportage_Blind-Spot-View-Monitor-BVM.jpg" class="attachment-medium_large size-medium_large wp-image-7753" alt="" srcset="https://kia.com.cy/wp-content/uploads/2022/01/sportage_Blind-Spot-View-Monitor-BVM.jpg 500w, https://kia.com.cy/wp-content/uploads/2022/01/sportage_Blind-Spot-View-Monitor-BVM-300x200.jpg 300w" sizes="(max-width: 500px) 100vw, 500px" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-e20f32c elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e20f32c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-be1bf80" data-id="be1bf80" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b71313d elementor-hidden-phone elementor-widget elementor-widget-text-editor" data-id="b71313d" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3>Integrated Curved Displays</h3><p>Directly in front of the driver is a 12.3’’ Supervision Cluster displaying all key Information at a glance <strong>(Premium and GT-Line versions)</strong>. Adjacent is a 12.3’’ high resolution LCD screen combining the navigation, infotainment and menu systems. Paired together in a seamless curve, they create a near-cinematic display and maximize user friendliness.</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1eeb8a2" data-id="1eeb8a2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-fe93aea elementor-hidden-phone elementor-widget elementor-widget-text-editor" data-id="fe93aea" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3>Blind-Spot View Monitor (BVM)</h3><p>Blind-Spot View Monitor (BVM) assists driver in changing lanes by providing a live view of the blind spots on either side of the vehicle and an audible alert if another vehicle is detected. Turn signal must be activated and other system limitations apply. <strong>(GT-Line Luxury version only)</strong></p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-61d9070 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="61d9070" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-e39cb2f" data-id="e39cb2f" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-655988e elementor-widget elementor-widget-image" data-id="655988e" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="1024" height="576" src="https://kia.com.cy/wp-content/uploads/2022/01/360-Sourround-View-Monitor-SVM-1-1024x576.webp" class="attachment-large size-large wp-image-7760" alt="" srcset="https://kia.com.cy/wp-content/uploads/2022/01/360-Sourround-View-Monitor-SVM-1-1024x576.webp 1024w, https://kia.com.cy/wp-content/uploads/2022/01/360-Sourround-View-Monitor-SVM-1-300x169.webp 300w, https://kia.com.cy/wp-content/uploads/2022/01/360-Sourround-View-Monitor-SVM-1-768x432.webp 768w, https://kia.com.cy/wp-content/uploads/2022/01/360-Sourround-View-Monitor-SVM-1-1536x864.webp 1536w, https://kia.com.cy/wp-content/uploads/2022/01/360-Sourround-View-Monitor-SVM-1.webp 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-cc3e5cb" data-id="cc3e5cb" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-08983ab elementor-widget elementor-widget-image" data-id="08983ab" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="300" height="169" src="https://kia.com.cy/wp-content/uploads/2022/01/Forward-Collision-Avoidance-Assist-FCA.jpg" class="attachment-large size-large wp-image-7762" alt="" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-a3b4a64" data-id="a3b4a64" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-612293f elementor-widget elementor-widget-image" data-id="612293f" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="300" height="169" src="https://kia.com.cy/wp-content/uploads/2022/01/kia_sportage_smartphone_charger.jpg" class="attachment-large size-large wp-image-7763" alt="" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-903a856" data-id="903a856" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1d68233 elementor-widget elementor-widget-image" data-id="1d68233" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="300" height="169" src="https://kia.com.cy/wp-content/uploads/2022/01/Adaptive-Smart-Cruise-Control-with-Stop-Go-1.jpg" class="attachment-large size-large wp-image-7766" alt="" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-b2d9783 elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b2d9783" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-b1b0527" data-id="b1b0527" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-91c9d12 elementor-hidden-phone elementor-widget elementor-widget-text-editor" data-id="91c9d12" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3>360° Around View Monitor</h3><p>The intuitive Around View Monitor (AVM) with parking guidance combines four wide-angle images from cameras at the front, rear and sides of the new Kia Sportage. It gives you a bird&#8217;s eye view of the space around the vehicle while you park or drive at speeds below 9 mph. <strong>(Feature available on the GT-Line Luxury version only)</strong></p> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-23f98e0" data-id="23f98e0" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c695dce elementor-hidden-phone elementor-widget elementor-widget-text-editor" data-id="c695dce" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3>Forward Collision Avoidance Assist</h3><p>By warning and braking automatically, the FCA system assists you in avoiding or mitigating an accident. A radar on the car’s front bumper and a camera on the windscreen monitor for hazards on the horizon, such as pedestrians or other cars. <strong>(All versions)</strong></p> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-e86e061" data-id="e86e061" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-57505cf elementor-hidden-phone elementor-widget elementor-widget-text-editor" data-id="57505cf" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3>Wireless Smart Phone Charger</h3><p>Low battery? No problem! Conveniently place your compatible mobile on the console tray in the Kia Sportage and let it charge wirelessly. Place other objects on the tray and the foreign object detection system senses them and blocks the charging function, for enhanced safety. <strong>(Feature available on the GT-Line versions only)</strong></p> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-2b7f212" data-id="2b7f212" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-deebe34 elementor-hidden-phone elementor-widget elementor-widget-text-editor" data-id="deebe34" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3>Adaptive Smart Cruise Control with Stop &amp; Go</h3> <p>Adaptive cruise control enables more comfortable driving, thanks to the predictive radar or front camera system, which detects cars in front and can automatically adjust the vehicle&#8217;s speed on highways and maintain a safe distance from a slower vehicle. <strong>(Premium and GT-Line versions only)</strong></p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-7b91f14b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7b91f14b" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3da93b82" data-id="3da93b82" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7df6d009 elementor-widget elementor-widget-text-editor" data-id="7df6d009" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3><b>Notes</b></h3> <ul> <li> <h3>Images shown are for illustration purposes only and may not be to full <span lang="EN-GB">CY</span> specifications.</h3> </li> <li> <h3><span lang="EN-GB">Price, specifications and equipment are subject to change without notice.</span></h3> </li> </ul> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-afb6919 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="afb6919" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f4db15c" data-id="f4db15c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-049367a elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="049367a" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-93c16e9" data-id="93c16e9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3d948e2 elementor-widget elementor-widget-heading" data-id="3d948e2" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-xl">PEACE OF MIND </h2> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-bb17e39 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="bb17e39" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-95d4966" data-id="95d4966" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-426a329 elementor-widget elementor-widget-image" data-id="426a329" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="290" height="217" src="https://kia.com.cy/wp-content/uploads/2021/04/kia-promise-img.png" class="attachment-large size-large wp-image-552" alt="" /> </div> </div> <div class="elementor-element elementor-element-ea5c927 elementor-widget elementor-widget-text-editor" data-id="ea5c927" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3 style="text-align: left;"><strong>Kia Promise</strong></h3><p style="text-align: left;">7 more reasons to join our Kia family</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-0670d8b" data-id="0670d8b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6398a9f elementor-widget elementor-widget-image" data-id="6398a9f" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="290" height="217" src="https://kia.com.cy/wp-content/uploads/2021/04/7-year-warranty-img.png" class="attachment-large size-large wp-image-549" alt="" /> </div> </div> <div class="elementor-element elementor-element-1828fac elementor-widget elementor-widget-text-editor" data-id="1828fac" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3><strong>You&#8217;re Covered</strong></h3><p>We&#8217;ve got you covered with our unbeatable 7-year warranty across our whole range</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-d3bc250" data-id="d3bc250" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-214f438 elementor-widget elementor-widget-image" data-id="214f438" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="240" height="135" src="https://kia.com.cy/wp-content/uploads/2022/05/KIA_All_New_Sportage.png" class="attachment-large size-large wp-image-11668" alt="" /> </div> </div> <div class="elementor-element elementor-element-a0d2354 elementor-widget elementor-widget-text-editor" data-id="a0d2354" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h3><strong>Safety</strong></h3><p>Safety is our highest priority, that&#8217;s why all Kia models are equipped with safety technologies.</p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> </div> </article> </div><!-- #content --> </div><!-- #primary --> </div><!-- #content-wrap --> </main><!-- #main --> <footer id="footer" class="site-footer" itemscope="itemscope" itemtype="https://schema.org/WPFooter" role="contentinfo"> <div id="footer-inner" class="clr"> <div id="footer-widgets" class="oceanwp-row clr"> <div class="footer-widgets-inner"> <div data-elementor-type="wp-post" data-elementor-id="360" class="elementor elementor-360" data-elementor-post-type="oceanwp_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-400f18d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="400f18d" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-0a03d3d" data-id="0a03d3d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6d1c88c elementor-widget elementor-widget-text-editor" data-id="6d1c88c" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>MODELS</strong></p><p><a href="https://kia.com.cy/the-kia-ev6/">EV6</a><br /><a href="https://kia.com.cy/ev9/">EV9</a><br /><a href="http://kia.com.cy/new_site/picanto/">PICANTO</a><br /><a href="http://kia.com.cy/new_site/stonic/">STONIC</a><br /><a href="http://kia.com.cy/new_site/ceed/">CEED</a><br /><a href="http://kia.com.cy/new_site/xceed/">XCEED</a><br /><a href="http://kia.com.cy/new_site/niro/">NIRO HYBRID</a><br /><a href="https://kia.com.cy/the-kia-niro-electric/">E-NIRO</a><br /><a href="http://kia.com.cy/new_site/sportage/">SPORTAGE</a><br /><a href="http://kia.com.cy/new_site/sorento/">SORENTO</a></p> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-d843e06" data-id="d843e06" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-af4b52a elementor-widget elementor-widget-text-editor" data-id="af4b52a" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>INNOVATION</strong></p><p><a href="http://kia.com.cy/new_site/safety/">Safety</a><br /><a href="http://kia.com.cy/new_site/advanced-safety/">Advanced Safety</a><br /><a href="http://kia.com.cy/new_site/technology/">Technology</a><br /><a href="https://kia.com.cy/kia-eu-regulation-on-engine-sound-levels/">Engine Sound Levels</a><br /><a href="https://kia.com.cy/kia-ev-concept-cars/">Concept Cars</a><br /><a href="http://kia.com.cy/new_site/electric-cars/">Electric Cars</a><br /><a href="http://kia.com.cy/new_site/charging-electric-cars/">Charging Electric Cars</a><br /><a href="https://kia.com.cy/navigation-software-update/">Software Updates</a></p> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-b7bab47" data-id="b7bab47" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-72980a5 elementor-widget elementor-widget-text-editor" data-id="72980a5" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>BUYING ADVICE</strong></p><p><a href="http://kia.com.cy/new_site/why-kia/">Why KIA</a><br /><a href="http://kia.com.cy/new_site/awards/">Awards</a><br /><a href="http://kia.com.cy/new_site/warranty/">Warranty</a></p> </div> </div> <div class="elementor-element elementor-element-dedd8a3 elementor-widget elementor-widget-text-editor" data-id="dedd8a3" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>AFTERSALES SERVICE</strong></p><p><a href="http://kia.com.cy/new_site/service-maintenance/">Service &amp; Maintenance</a><br /><a href="http://kia.com.cy/new_site/tyres/">Tyres</a><br /><a href="http://kia.com.cy/new_site/adblue/">AdBlue</a></p> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-82ce311" data-id="82ce311" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-484e92f elementor-widget elementor-widget-text-editor" data-id="484e92f" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>ABOUT KIA</strong></p><p><a href="http://kia.com.cy/new_site/kia-cyprus/">KIA Cyprus</a><br /><a href="http://kia.com.cy/new_site/kia-worldwide/">KIA Worldwide</a><br /><a href="http://kia.com.cy/new_site/our-commitment/">Our Commitment</a><br /><a href="http://kia.com.cy/new_site/environment/">Environment</a><br /><a href="https://kia.com.cy/about-kia-business/">KIA Business</a></p> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-e767253" data-id="e767253" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-619d2eb elementor-widget elementor-widget-text-editor" data-id="619d2eb" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>CONTACT US</strong></p><p>Head Office<br />90, Omonia Ave., <br />3048 Limassol, Cyprus<br /><br />Tel: +357 25 576576,<br />Fax: +357 25 575041<br /><a href="mailto:info@loutsiosgroup.com">info@loutsiosgroup.com</a></p> </div> </div> </div> </div> </div> </section> </div> </div><!-- .container --> </div><!-- #footer-widgets --> <div id="footer-bottom" class="clr no-footer-nav"> <div id="footer-bottom-inner" class="container clr"> <div id="copyright" class="clr" role="contentinfo"> © KIA CYPRUS 2025 | webiste by <a href="https://capeit.com.cy" target="_blank">CAPE IT LTD</a> </div><!-- #copyright --> </div><!-- #footer-bottom-inner --> </div><!-- #footer-bottom --> </div><!-- #footer-inner --> </footer><!-- #footer --> </div><!-- #wrap --> </div><!-- #outer-wrap --> <a aria-label="Scroll to the top of the page" href="#" id="scroll-top" class="scroll-top-right"><i class=" fa fa-angle-up" aria-hidden="true" role="img"></i></a> <div id="sidr-close"> <a href="https://kia.com.cy/#sidr-menu-close" class="toggle-sidr-close" aria-label="Close mobile menu"> <i class="icon icon-close" aria-hidden="true"></i><span class="close-text">Close Menu</span> </a> </div> <!--googleoff: all--><div id="cookie-law-info-bar" data-nosnippet="true"><span><div class="cli-bar-container cli-style-v2"><div class="cli-bar-message">We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.</div><div class="cli-bar-btn_container"><a role='button' class="medium cli-plugin-button cli-plugin-main-button cli_settings_button" style="margin:0px 5px 0px 0px">Cookie Settings</a><a id="wt-cli-accept-all-btn" role='button' data-cli_action="accept_all" class="wt-cli-element medium cli-plugin-button wt-cli-accept-all-btn cookie_action_close_header cli_action_button">Accept All</a></div></div></span></div><div id="cookie-law-info-again" data-nosnippet="true"><span id="cookie_hdr_showagain">Manage consent</span></div><div class="cli-modal" data-nosnippet="true" id="cliSettingsPopup" tabindex="-1" role="dialog" aria-labelledby="cliSettingsPopup" aria-hidden="true"> <div class="cli-modal-dialog" role="document"> <div class="cli-modal-content cli-bar-popup"> <button type="button" class="cli-modal-close" id="cliModalClose"> <svg class="" viewBox="0 0 24 24"><path d="M19 6.41l-1.41-1.41-5.59 5.59-5.59-5.59-1.41 1.41 5.59 5.59-5.59 5.59 1.41 1.41 5.59-5.59 5.59 5.59 1.41-1.41-5.59-5.59z"></path><path d="M0 0h24v24h-24z" fill="none"></path></svg> <span class="wt-cli-sr-only">Close</span> </button> <div class="cli-modal-body"> <div class="cli-container-fluid cli-tab-container"> <div class="cli-row"> <div class="cli-col-12 cli-align-items-stretch cli-px-0"> <div class="cli-privacy-overview"> <h4>Privacy Overview</h4> <div class="cli-privacy-content"> <div class="cli-privacy-content-text">This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.</div> </div> <a class="cli-privacy-readmore" aria-label="Show more" role="button" data-readmore-text="Show more" data-readless-text="Show less"></a> </div> </div> <div class="cli-col-12 cli-align-items-stretch cli-px-0 cli-tab-section-container"> <div class="cli-tab-section"> <div class="cli-tab-header"> <a role="button" tabindex="0" class="cli-nav-link cli-settings-mobile" data-target="necessary" data-toggle="cli-toggle-tab"> Necessary </a> <div class="wt-cli-necessary-checkbox"> <input type="checkbox" class="cli-user-preference-checkbox" id="wt-cli-checkbox-necessary" data-id="checkbox-necessary" checked="checked" /> <label class="form-check-label" for="wt-cli-checkbox-necessary">Necessary</label> </div> <span class="cli-necessary-caption">Always Enabled</span> </div> <div class="cli-tab-content"> <div class="cli-tab-pane cli-fade" data-id="necessary"> <div class="wt-cli-cookie-description"> Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously. <table class="cookielawinfo-row-cat-table cookielawinfo-winter"><thead><tr><th class="cookielawinfo-column-1">Cookie</th><th class="cookielawinfo-column-3">Duration</th><th class="cookielawinfo-column-4">Description</th></tr></thead><tbody><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">cookielawinfo-checkbox-analytics</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">cookielawinfo-checkbox-functional</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">cookielawinfo-checkbox-necessary</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">cookielawinfo-checkbox-others</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">cookielawinfo-checkbox-performance</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">viewed_cookie_policy</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.</td></tr></tbody></table> </div> </div> </div> </div> <div class="cli-tab-section"> <div class="cli-tab-header"> <a role="button" tabindex="0" class="cli-nav-link cli-settings-mobile" data-target="functional" data-toggle="cli-toggle-tab"> Functional </a> <div class="cli-switch"> <input type="checkbox" id="wt-cli-checkbox-functional" class="cli-user-preference-checkbox" data-id="checkbox-functional" /> <label for="wt-cli-checkbox-functional" class="cli-slider" data-cli-enable="Enabled" data-cli-disable="Disabled"><span class="wt-cli-sr-only">Functional</span></label> </div> </div> <div class="cli-tab-content"> <div class="cli-tab-pane cli-fade" data-id="functional"> <div class="wt-cli-cookie-description"> Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features. </div> </div> </div> </div> <div class="cli-tab-section"> <div class="cli-tab-header"> <a role="button" tabindex="0" class="cli-nav-link cli-settings-mobile" data-target="performance" data-toggle="cli-toggle-tab"> Performance </a> <div class="cli-switch"> <input type="checkbox" id="wt-cli-checkbox-performance" class="cli-user-preference-checkbox" data-id="checkbox-performance" /> <label for="wt-cli-checkbox-performance" class="cli-slider" data-cli-enable="Enabled" data-cli-disable="Disabled"><span class="wt-cli-sr-only">Performance</span></label> </div> </div> <div class="cli-tab-content"> <div class="cli-tab-pane cli-fade" data-id="performance"> <div class="wt-cli-cookie-description"> Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors. </div> </div> </div> </div> <div class="cli-tab-section"> <div class="cli-tab-header"> <a role="button" tabindex="0" class="cli-nav-link cli-settings-mobile" data-target="analytics" data-toggle="cli-toggle-tab"> Analytics </a> <div class="cli-switch"> <input type="checkbox" id="wt-cli-checkbox-analytics" class="cli-user-preference-checkbox" data-id="checkbox-analytics" /> <label for="wt-cli-checkbox-analytics" class="cli-slider" data-cli-enable="Enabled" data-cli-disable="Disabled"><span class="wt-cli-sr-only">Analytics</span></label> </div> </div> <div class="cli-tab-content"> <div class="cli-tab-pane cli-fade" data-id="analytics"> <div class="wt-cli-cookie-description"> Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc. </div> </div> </div> </div> <div class="cli-tab-section"> <div class="cli-tab-header"> <a role="button" tabindex="0" class="cli-nav-link cli-settings-mobile" data-target="advertisement" data-toggle="cli-toggle-tab"> Advertisement </a> <div class="cli-switch"> <input type="checkbox" id="wt-cli-checkbox-advertisement" class="cli-user-preference-checkbox" data-id="checkbox-advertisement" /> <label for="wt-cli-checkbox-advertisement" class="cli-slider" data-cli-enable="Enabled" data-cli-disable="Disabled"><span class="wt-cli-sr-only">Advertisement</span></label> </div> </div> <div class="cli-tab-content"> <div class="cli-tab-pane cli-fade" data-id="advertisement"> <div class="wt-cli-cookie-description"> Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads. </div> </div> </div> </div> <div class="cli-tab-section"> <div class="cli-tab-header"> <a role="button" tabindex="0" class="cli-nav-link cli-settings-mobile" data-target="others" data-toggle="cli-toggle-tab"> Others </a> <div class="cli-switch"> <input type="checkbox" id="wt-cli-checkbox-others" class="cli-user-preference-checkbox" data-id="checkbox-others" /> <label for="wt-cli-checkbox-others" class="cli-slider" data-cli-enable="Enabled" data-cli-disable="Disabled"><span class="wt-cli-sr-only">Others</span></label> </div> </div> <div class="cli-tab-content"> <div class="cli-tab-pane cli-fade" data-id="others"> <div class="wt-cli-cookie-description"> Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet. </div> </div> </div> </div> </div> </div> </div> </div> <div class="cli-modal-footer"> <div class="wt-cli-element cli-container-fluid cli-tab-container"> <div class="cli-row"> <div class="cli-col-12 cli-align-items-stretch cli-px-0"> <div class="cli-tab-footer wt-cli-privacy-overview-actions"> <a id="wt-cli-privacy-save-btn" role="button" tabindex="0" data-cli-action="accept" class="wt-cli-privacy-btn cli_setting_save_button wt-cli-privacy-accept-btn cli-btn">SAVE &amp; ACCEPT</a> </div> </div> </div> </div> </div> </div> </div> </div> <div class="cli-modal-backdrop cli-fade cli-settings-overlay"></div> <div class="cli-modal-backdrop cli-fade cli-popupbar-overlay"></div> <!--googleon: all--> <script> 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 id='core-block-supports-inline-css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='cookie-law-info-table-css' href='https://kia.com.cy/wp-content/plugins/cookie-law-info/legacy/public/css/cookie-law-info-table.css?ver=3.2.8' media='all' /> <script src="https://kia.com.cy/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.js?ver=8.4.5" id="swiper-js"></script> <script id="jquery-reel-js-extra"> var ireel_array = {"site_url":"https:\/\/kia.com.cy","ajaxurl":"https:\/\/kia.com.cy\/wp-admin\/admin-ajax.php","pluginURI_img":"https:\/\/kia.com.cy\/wp-content\/plugins\/devvn-360-images-view\/frontend\/images\/"}; </script> <script src="https://kia.com.cy/wp-content/plugins/devvn-360-images-view/frontend/js/jquery.reel.js?ver=1.3.0" id="jquery-reel-js"></script> <script src="https://kia.com.cy/wp-content/plugins/devvn-360-images-view/frontend/js/jquery.devvn_ireel.js?ver=1.0" id="devvn-ireel-jquery-js"></script> <script src="https://kia.com.cy/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js"></script> <script id="oceanwp-main-js-extra"> var oceanwpLocalize = {"nonce":"2dca788f4b","isRTL":"","menuSearchStyle":"disabled","mobileMenuSearchStyle":"disabled","sidrSource":"#sidr-close, #site-navigation","sidrDisplace":"1","sidrSide":"left","sidrDropdownTarget":"link","verticalHeaderTarget":"link","customScrollOffset":"0","customSelects":".woocommerce-ordering .orderby, #dropdown_product_cat, .widget_categories select, .widget_archive select, .single-product .variations_form .variations select","ajax_url":"https:\/\/kia.com.cy\/wp-admin\/admin-ajax.php","oe_mc_wpnonce":"b832c2871c","stickyChoose":"manual","stickyStyle":"shrink","shrinkLogoHeight":"60","stickyEffect":"none","hasStickyTopBar":"","hasStickyMobile":""}; </script> <script src="https://kia.com.cy/wp-content/themes/oceanwp/assets/js/theme.min.js?ver=1.0" id="oceanwp-main-js"></script> <script src="https://kia.com.cy/wp-content/themes/oceanwp/assets/js/vendors/sidr.js?ver=1.0" id="ow-sidr-js"></script> <script src="https://kia.com.cy/wp-content/themes/oceanwp/assets/js/sidebar-mobile-menu.min.js?ver=1.0" id="oceanwp-sidebar-mobile-menu-js"></script> <script src="https://kia.com.cy/wp-content/themes/oceanwp/assets/js/vendors/magnific-popup.min.js?ver=1.0" id="ow-magnific-popup-js"></script> <script src="https://kia.com.cy/wp-content/themes/oceanwp/assets/js/ow-lightbox.min.js?ver=1.0" id="oceanwp-lightbox-js"></script> <script src="https://kia.com.cy/wp-content/themes/oceanwp/assets/js/vendors/flickity.pkgd.min.js?ver=1.0" id="ow-flickity-js"></script> <script src="https://kia.com.cy/wp-content/themes/oceanwp/assets/js/ow-slider.min.js?ver=1.0" id="oceanwp-slider-js"></script> <script src="https://kia.com.cy/wp-content/themes/oceanwp/assets/js/scroll-effect.min.js?ver=1.0" id="oceanwp-scroll-effect-js"></script> <script src="https://kia.com.cy/wp-content/themes/oceanwp/assets/js/scroll-top.min.js?ver=1.0" id="oceanwp-scroll-top-js"></script> <script src="https://kia.com.cy/wp-content/themes/oceanwp/assets/js/select.min.js?ver=1.0" id="oceanwp-select-js"></script> <script id="flickr-widget-script-js-extra"> var flickrWidgetParams = {"widgets":[]}; </script> <script src="https://kia.com.cy/wp-content/plugins/ocean-extra/includes/widgets/js/flickr.min.js?ver=6.7.2" id="flickr-widget-script-js"></script> <script src="https://kia.com.cy/wp-content/plugins/elementor/assets/js/webpack.runtime.js?ver=3.28.0" id="elementor-webpack-runtime-js"></script> <script src="https://kia.com.cy/wp-content/plugins/elementor/assets/js/frontend-modules.js?ver=3.28.0" id="elementor-frontend-modules-js"></script> <script src="https://kia.com.cy/wp-includes/js/jquery/ui/core.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script id="elementor-frontend-js-before"> 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.28.0","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"e_local_google_fonts":true,"editor_v2":true,"home_screen":true},"urls":{"assets":"https:\/\/kia.com.cy\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/kia.com.cy\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/kia.com.cy\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"792135d0fb"},"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":1639,"title":"The%20Kia%20Sportage%20%E2%80%93%20Kia%20Cyprus","excerpt":"","featuredImage":false}}; </script> <script src="https://kia.com.cy/wp-content/plugins/elementor/assets/js/frontend.js?ver=3.28.0" id="elementor-frontend-js"></script> <script src="https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/js/modal.js?ver=6.7.2" id="oew-modal-js"></script> <script src="https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/js/vendors/photoswipe.min.js?ver=6.7.2" id="oew-photoswipe-js"></script> <script src="https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/js/vendors/photoswipe-ui-default.min.js?ver=6.7.2" id="oew-photoswipe-ui-default-js"></script> <script src="https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/js/vendors/salvattore.min.js?ver=6.7.2" id="salvattore-js"></script> <script src="https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/js/vendors/isotope.pkgd.min.js?ver=3.0.6" id="ow-isotop-js"></script> <script src="https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/js/image-gallery.js?ver=6.7.2" id="oew-image-gallery-js"></script> <script src="https://kia.com.cy/wp-content/plugins/ocean-elementor-widgets/assets/js/tabs.js?ver=6.7.2" id="oew-tabs-js"></script> <script src="https://kia.com.cy/wp-content/plugins/ocean-social-sharing/assets/js/social.js?ver=2.2.0" id="oss-social-share-script-js"></script> <script src="https://kia.com.cy/wp-content/plugins/ocean-sticky-header/assets/js/sticky-header.min.js" id="osh-js-scripts-js"></script> <script src="https://kia.com.cy/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.js?ver=3.28.0" id="elementor-pro-webpack-runtime-js"></script> <script src="https://kia.com.cy/wp-includes/js/dist/hooks.js?ver=5b4ec27a7b82f601224a" id="wp-hooks-js"></script> <script src="https://kia.com.cy/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script> <script id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); </script> <script id="elementor-pro-frontend-js-before"> var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/kia.com.cy\/wp-admin\/admin-ajax.php","nonce":"67c657e50b","urls":{"assets":"https:\/\/kia.com.cy\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/kia.com.cy\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}}, "facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/kia.com.cy\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; </script> <script src="https://kia.com.cy/wp-content/plugins/elementor-pro/assets/js/frontend.js?ver=3.28.0" id="elementor-pro-frontend-js"></script> <script src="https://kia.com.cy/wp-content/plugins/elementor-pro/assets/js/elements-handlers.js?ver=3.28.0" id="pro-elements-handlers-js"></script> </body> </html> <!-- Cached by WP-Optimize (gzip) - https://getwpo.com - Last modified: 20/03/2025 12:25 pm (UTC:3) -->

Pages: 1 2 3 4 5 6 7 8 9 10