CINXE.COM

InternetCorp - Brand New Media - RO - InternetCorp

<!doctype html> <html lang="ro-RO"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel="alternate" href="https://internetcorp.ro/" hreflang="ro" /> <link rel="alternate" href="https://internetcorp.ro/en/internetcorp-brand-new-media/" hreflang="en" /> <!-- This site is optimized with the Yoast SEO plugin v24.8.1 - https://yoast.com/wordpress/plugins/seo/ --> <title>InternetCorp - Brand New Media - RO - InternetCorp</title> <link rel="canonical" href="https://internetcorp.ro/" /> <meta property="og:locale" content="ro_RO" /> <meta property="og:locale:alternate" content="en_US" /> <meta property="og:type" content="website" /> <meta property="og:title" content="InternetCorp" /> <meta property="og:description" content="Brand New Media" /> <meta property="og:url" content="https://internetcorp.ro/" /> <meta property="og:site_name" content="InternetCorp" /> <meta property="article:modified_time" content="2025-03-14T09:39:55+00:00" /> <meta property="og:image" content="https://internetcorp.ro/wp-content/uploads/2023/02/og-image-1200x630-2.jpg" /> <meta property="og:image:width" content="1200" /> <meta property="og:image:height" content="630" /> <meta property="og:image:type" content="image/jpeg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="InternetCorp" /> <meta name="twitter:description" content="Brand New Media" /> <meta name="twitter:image" content="https://internetcorp.ro/wp-content/uploads/2023/02/og-image-1200x630-2.jpg" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://internetcorp.ro/","url":"https://internetcorp.ro/","name":"InternetCorp - Brand New Media - RO - InternetCorp","isPartOf":{"@id":"https://internetcorp.ro/#website"},"about":{"@id":"https://internetcorp.ro/#organization"},"primaryImageOfPage":{"@id":"https://internetcorp.ro/#primaryimage"},"image":{"@id":"https://internetcorp.ro/#primaryimage"},"thumbnailUrl":"https://internetcorp.ro/wp-content/uploads/2023/01/office-team-about.jpg","datePublished":"2023-02-14T10:00:51+00:00","dateModified":"2025-03-14T09:39:55+00:00","breadcrumb":{"@id":"https://internetcorp.ro/#breadcrumb"},"inLanguage":"ro-RO","potentialAction":[{"@type":"ReadAction","target":["https://internetcorp.ro/"]}]},{"@type":"ImageObject","inLanguage":"ro-RO","@id":"https://internetcorp.ro/#primaryimage","url":"https://internetcorp.ro/wp-content/uploads/2023/01/office-team-about.jpg","contentUrl":"https://internetcorp.ro/wp-content/uploads/2023/01/office-team-about.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https://internetcorp.ro/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home"}]},{"@type":"WebSite","@id":"https://internetcorp.ro/#website","url":"https://internetcorp.ro/","name":"InternetCorp","description":"Brand new media","publisher":{"@id":"https://internetcorp.ro/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://internetcorp.ro/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ro-RO"},{"@type":"Organization","@id":"https://internetcorp.ro/#organization","name":"InternetCorp","url":"https://internetcorp.ro/","logo":{"@type":"ImageObject","inLanguage":"ro-RO","@id":"https://internetcorp.ro/#/schema/logo/image/","url":"https://internetcorp.ro/wp-content/uploads/2022/11/InternetCorp-Logo.png","contentUrl":"https://internetcorp.ro/wp-content/uploads/2022/11/InternetCorp-Logo.png","width":350,"height":64,"caption":"InternetCorp"},"image":{"@id":"https://internetcorp.ro/#/schema/logo/image/"}}]}</script> <!-- / Yoast SEO plugin. --> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel="alternate" type="application/rss+xml" title="InternetCorp &raquo; Flux" href="https://internetcorp.ro/feed/" /> <link rel="alternate" type="application/rss+xml" title="InternetCorp &raquo; Flux comentarii" href="https://internetcorp.ro/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:\/\/internetcorp.ro\/wp-includes\/js\/wp-emoji.js?ver=6.7.2","twemoji":"https:\/\/internetcorp.ro\/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> <link rel='stylesheet' id='wp-block-library-css' href='https://internetcorp.ro/wp-includes/css/dist/block-library/style.css?ver=6.7.2' media='all' /> <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='contact-form-7-css' href='https://internetcorp.ro/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.5' media='all' /> <link rel='stylesheet' id='animate-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/animate/animate.min.css?ver=1669210417' media='all' /> <link rel='stylesheet' id='bootstrap-select-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/bootstrap-select/css/bootstrap-select.min.css?ver=1669210417' media='all' /> <link rel='stylesheet' id='bxslider-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/bxslider/jquery.bxslider.css?ver=1669210417' media='all' /> <link rel='stylesheet' id='jarallax-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/jarallax/jarallax.css?ver=1669210417' media='all' /> <link rel='stylesheet' id='jquery-magnific-popup-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/jquery-magnific-popup/jquery.magnific-popup.css?ver=1669210417' media='all' /> <link rel='stylesheet' id='odometer-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/odometer/odometer.min.css?ver=1669210417' media='all' /> <link rel='stylesheet' id='owl-carousel-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/owl-carousel/owl.carousel.min.css?ver=1669210417' media='all' /> <link rel='stylesheet' id='owl-theme-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/owl-carousel/owl.theme.default.min.css?ver=1669210417' media='all' /> <link rel='stylesheet' id='reey-font-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/reey-font/stylesheet.css?ver=1669210417' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://internetcorp.ro/wp-content/plugins/elementor/assets/lib/swiper/css/swiper.css?ver=5.3.6' media='all' /> <link rel='stylesheet' id='qutiiz-addon-style-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/css/qutiiz-addon.css?ver=1669210417' media='all' /> <link rel='stylesheet' id='qutiiz-fonts-css' href='//fonts.googleapis.com/css?family=DM+Sans%3A400%2C400i%2C500%2C500i%2C700%2C700i%7CBarlow+Condensed%3A200%2C200i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C600%2C600i%2C700%2C700i%2C800%2C800i%2C900%2C900i%26subset%3Dlatin%2Clatin-ext' media='all' /> <link rel='stylesheet' id='qutiiz-icons-css' href='https://internetcorp.ro/wp-content/themes/qutiiz/assets/vendors/qutiiz-icons/style.css?ver=1.0' media='all' /> <link rel='stylesheet' id='qutiiz-icons-two-css' href='https://internetcorp.ro/wp-content/themes/qutiiz/assets/vendors/qutiiz-icons-two/style.css?ver=1.0' media='all' /> <link rel='stylesheet' id='flaticons-css' href='https://internetcorp.ro/wp-content/themes/qutiiz/assets/vendors/flaticons/css/flaticon.css?ver=1.1' media='all' /> <link rel='stylesheet' id='bootstrap-css' href='https://internetcorp.ro/wp-content/themes/qutiiz/assets/vendors/bootstrap/css/bootstrap.min.css?ver=5.0.0' media='all' /> <link rel='stylesheet' id='fontawesome-css' href='https://internetcorp.ro/wp-content/themes/qutiiz/assets/vendors/fontawesome/css/all.min.css?ver=5.15.1' media='all' /> <link rel='stylesheet' id='qutiiz-style-css' href='https://internetcorp.ro/wp-content/themes/qutiiz/style.css?ver=1744058891' media='all' /> <style id='qutiiz-style-inline-css'> :root { --qutiiz-primary: #4354a1; --qutiiz-primary-rgb: 67, 84, 161; --qutiiz-black: #000000; --qutiiz-black-rgb: 0, 0, 0; }.page-header-bg { background-image: url(https://internetcorp.ro/wp-content/uploads/2023/02/team-headbanner.jpg); } .preloader .preloader__image { background-image: url(https://internetcorp.ro/wp-content/uploads/2022/11/cropped-favicon-IC.png); } :root { --qutiiz-primary: #4354a1; --qutiiz-primary-rgb: 67, 84, 161; --qutiiz-black: #000000; --qutiiz-black-rgb: 0, 0, 0; }.page-header-bg { background-image: url(https://internetcorp.ro/wp-content/uploads/2023/02/team-headbanner.jpg); } </style> <link rel='stylesheet' id='recent-posts-widget-with-thumbnails-public-style-css' href='https://internetcorp.ro/wp-content/plugins/recent-posts-widget-with-thumbnails/public.css?ver=7.1.1' media='all' /> <style id='akismet-widget-style-inline-css'> .a-stats { --akismet-color-mid-green: #357b49; --akismet-color-white: #fff; --akismet-color-light-grey: #f6f7f7; max-width: 350px; width: auto; } .a-stats * { all: unset; box-sizing: border-box; } .a-stats strong { font-weight: 600; } .a-stats a.a-stats__link, .a-stats a.a-stats__link:visited, .a-stats a.a-stats__link:active { background: var(--akismet-color-mid-green); border: none; box-shadow: none; border-radius: 8px; color: var(--akismet-color-white); cursor: pointer; display: block; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen-Sans', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif; font-weight: 500; padding: 12px; text-align: center; text-decoration: none; transition: all 0.2s ease; } /* Extra specificity to deal with TwentyTwentyOne focus style */ .widget .a-stats a.a-stats__link:focus { background: var(--akismet-color-mid-green); color: var(--akismet-color-white); text-decoration: none; } .a-stats a.a-stats__link:hover { filter: brightness(110%); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.16); } .a-stats .count { color: var(--akismet-color-white); display: block; font-size: 1.5em; line-height: 1.4; padding: 0 13px; white-space: nowrap; } </style> <link rel='stylesheet' id='elementor-icons-css' href='https://internetcorp.ro/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css?ver=5.21.0' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://internetcorp.ro/wp-content/plugins/elementor/assets/css/frontend.css?ver=3.15.2' media='all' /> <link rel='stylesheet' id='elementor-post-8-css' href='https://internetcorp.ro/wp-content/uploads/elementor/css/post-8.css?ver=1692569679' media='all' /> <link rel='stylesheet' id='elementor-global-css' href='https://internetcorp.ro/wp-content/uploads/elementor/css/global.css?ver=1692569679' media='all' /> <link rel='stylesheet' id='elementor-post-2177-css' href='https://internetcorp.ro/wp-content/uploads/elementor/css/post-2177.css?ver=1739186647' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CBarlow+Condensed%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap&#038;subset=latin-ext&#038;ver=6.7.2' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://internetcorp.ro/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css?ver=5.15.3' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://internetcorp.ro/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css?ver=5.15.3' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-1-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/qutiiz-icons/style.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-2-css' href='https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/qutiiz-icons-two/style.css?ver=1' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script src="https://internetcorp.ro/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script src="https://internetcorp.ro/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <link rel="https://api.w.org/" href="https://internetcorp.ro/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://internetcorp.ro/wp-json/wp/v2/pages/2177" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://internetcorp.ro/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.2" /> <link rel='shortlink' href='https://internetcorp.ro/' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://internetcorp.ro/wp-json/oembed/1.0/embed?url=https%3A%2F%2Finternetcorp.ro%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://internetcorp.ro/wp-json/oembed/1.0/embed?url=https%3A%2F%2Finternetcorp.ro%2F&#038;format=xml" /> <script async src="https://www.googletagmanager.com/gtag/js?id=G-WMDGK7WE4W"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-WMDGK7WE4W'); </script> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-KWBDGHG');</script><meta name="generator" content="Elementor 3.15.2; features: e_dom_optimization, e_optimized_assets_loading, e_optimized_css_loading, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"> <link rel="icon" href="https://internetcorp.ro/wp-content/uploads/2022/11/cropped-favicon-IC-32x32.png" sizes="32x32" /> <link rel="icon" href="https://internetcorp.ro/wp-content/uploads/2022/11/cropped-favicon-IC-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://internetcorp.ro/wp-content/uploads/2022/11/cropped-favicon-IC-180x180.png" /> <meta name="msapplication-TileImage" content="https://internetcorp.ro/wp-content/uploads/2022/11/cropped-favicon-IC-270x270.png" /> <style id="wp-custom-css"> .services-three__arrow, .page-header-shape-1, #main-slider-pagination, .main-slider__nav { display: none; } .image-layer { background-image: url("https://internetcorp.ro/wp-content/uploads/2023/02/img-header-homepage.jpg")!important; } .owl-stage-outer .services-three__icon { display: none; } .services-three__single-img-inner { background: none; } .main-menu-wrapper__call { width: 170px!important; } .project-details__content-right { display: none!important; } .project-details__img > img, .business-growth-one__single-img img { mix-blend-mode: normal; } .get-in-touch-one { padding-top: 70px; margin-top: 0!important; background: none!important; } @media only screen and (min-width: 1200px) { .get-in-touch-one__bg { top: 70px; } .stricky-header.main-menu { padding: 0; } } @media only screen and (max-width: 1200px) { .get-in-touch-one { padding-top: 0px; }} .why-choose-two__bottom { padding-bottom: 70px; } @media (max-width: 1199px) { .stricky-header { display: block!important; } } .main-slider--three .container { padding-bottom: 305px; } .main-menu .main-menu_list > li.current > a::before, .main-menu .main-menulist > li.current-menu-ancestor > a::before, .main-menu .main-menulist > li.current_page_item > a::before, .main-menu .main-menulist > li.current-menu-item > a::before, .main-menu .main-menu_list > li.current-menu-parent > a::before, .main-menu .main-menu__list>li>a, .stricky-header .main-menu__list>li>a { background-color:transparent!important; } .main-menu .main-menu__list>li.current>a::before, .main-menu .main-menu__list>li.current-menu-ancestor>a::before, .main-menu .main-menu__list>li.current_page_item>a::before, .main-menu .main-menu__list>li.current-menu-item>a::before, .main-menu .main-menu__list>li.current-menu-parent>a::before { background-color:transparent!important; } .section-title__title a, .elementor-heading-title a { color: black; } .section-title__title a:hover, .elementor-heading-title a:hover { color: #4354a1!important; } .main-menu .main-menu__list>li:last-child>a::before, .stricky-header .main-menu__list>li:last-child>a::before { bottom: -4px; } /* lang underline fix */ .odometer-formatting-mark { display: inline-block!important; } /* add comma on counters */ .main-menu-wrapper__call{ cursor:pointer; } </style> <style id="kirki-inline-styles"></style></head> <body class="home page-template page-template-elementor_header_footer page page-id-2177 wp-custom-logo elementor-default elementor-template-full-width elementor-kit-8 elementor-page elementor-page-2177"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KWBDGHG" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <!-- Preloader --> <div class="preloader"> <div class="preloader__image"></div> </div> <!-- /.preloader --> <div id="page" class="site page-wrapper"> <a class="skip-link screen-reader-text" href="#primary">Skip to content</a> <!-- the loop --> <div data-elementor-type="wp-post" data-elementor-id="847" class="elementor elementor-847"> <section class="elementor-section elementor-top-section elementor-element elementor-element-42c297ec elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="42c297ec" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-176760c3" data-id="176760c3" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-260deed2 elementor-widget elementor-widget-qutiiz-header" data-id="260deed2" data-element_type="widget" data-widget_type="qutiiz-header.default"> <div class="elementor-widget-container"> <header class="main-header main-header--three clearfix"> <nav class="main-menu main-menu--three clearfix"> <div class="main-menu-wrapper clearfix"> <div class="main-menu-wrapper__logo"> <a href="https://internetcorp.ro/"><img decoding="async" width="200" height="36" src="https://internetcorp.ro/wp-content/uploads/2022/09/InternetCorp-Logo-White.png" id="thm-logo" alt="InternetCorp"></a> </div> <div class="main-menu-wrapper__left"> <div class=" main-menu-wrapper__main-menu"> <a href="#" class="mobile-nav__toggler"><i class="fa fa-bars"></i></a> <div class="menu-primary-romanian-container"><ul id="menu-primary-romanian" class="main-menu__list one-page-scroll-menu"><li id="menu-item-2204" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2177 current_page_item menu-item-2204"><a href="https://internetcorp.ro/" aria-current="page">ACASĂ</a></li> <li id="menu-item-2623" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2623"><a href="#">DESPRE NOI</a> <ul class="sub-menu"> <li id="menu-item-2210" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2210"><a href="https://internetcorp.ro/info/">CINE SUNTEM</a></li> <li id="menu-item-2624" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2624"><a href="https://internetcorp.ro/media-center/">MEDIA CENTER</a></li> </ul> </li> <li id="menu-item-2188" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-2188"><a href="/#services" aria-current="page">SERVICII</a></li> <li id="menu-item-2189" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-2189"><a href="#">BRANDURI IC</a> <ul class="sub-menu"> <li id="menu-item-2190" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-2190"><a href="/#icbrands" aria-current="page">BRANDURI PROPRII</a></li> <li id="menu-item-2191" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-2191"><a href="/#icevents" aria-current="page">IC EVENTS</a></li> <li id="menu-item-2192" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-2192"><a href="/#icvideo" aria-current="page">VIDEOCORP</a></li> </ul> </li> <li id="menu-item-2198" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2198"><a href="https://internetcorp.ro/regie-vanzari/">REGIE VÂNZĂRI</a></li> <li id="menu-item-2201" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2201"><a href="https://internetcorp.ro/blog/">BLOG</a></li> <li id="menu-item-2202" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-2202"><a href="/#contactadress" aria-current="page">CONTACT</a></li> <li id="menu-item-2184-en" class="lang-item lang-item-40 lang-item-en lang-item-first menu-item menu-item-type-custom menu-item-object-custom menu-item-2184-en"><a href="https://internetcorp.ro/en/internetcorp-brand-new-media/" hreflang="en-US" lang="en-US"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAMAAABBPP0LAAAAmVBMVEViZsViZMJiYrf9gnL8eWrlYkjgYkjZYkj8/PujwPybvPz4+PetraBEgfo+fvo3efkydfkqcvj8Y2T8UlL8Q0P8MzP9k4Hz8/Lu7u4DdPj9/VrKysI9fPoDc/EAZ7z7IiLHYkjp6ekCcOTk5OIASbfY/v21takAJrT5Dg6sYkjc3Nn94t2RkYD+y8KeYkjs/v7l5fz0dF22YkjWvcOLAAAAgElEQVR4AR2KNULFQBgGZ5J13KGGKvc/Cw1uPe62eb9+Jr1EUBFHSgxxjP2Eca6AfUSfVlUfBvm1Ui1bqafctqMndNkXpb01h5TLx4b6TIXgwOCHfjv+/Pz+5vPRw7txGWT2h6yO0/GaYltIp5PT1dEpLNPL/SdWjYjAAZtvRPgHJX4Xio+DSrkAAAAASUVORK5CYII=" alt="English" width="16" height="11" style="width: 16px; height: 11px;" /></a></li> </ul></div> </div> </div> <div class="main-menu-wrapper__right"> <div class="main-menu-wrapper__call"> <div class="main-menu-wrapper__call-icon icon-svg"> <span aria-hidden="true" class=" fas fa-download"></span> </div> <div class="main-menu-wrapper__call-number"> <h5><a href="tel:Rate-Card">Rate Card</a></h5> </div> </div> </div> </div> </nav> </header> <div class="stricky-header stricked-menu main-menu"> <div class="sticky-header__content"></div><!-- /.sticky-header__content --> </div><!-- /.stricky-header --> <div class="mobile-nav__wrapper"> <div class="mobile-nav__overlay mobile-nav__toggler"></div> <!-- /.mobile-nav__overlay --> <div class="mobile-nav__content"> <span class="mobile-nav__close mobile-nav__toggler"></span> <div class="logo-box"> <a href="https://internetcorp.ro/"> <img decoding="async" width="200" height="36" src="https://internetcorp.ro/wp-content/uploads/2022/09/InternetCorp-Logo-White.png" id="mobile-thm-logo" alt="InternetCorp"> </a> </div> <!-- /.logo-box --> <div class="mobile-nav__container"></div> <!-- /.mobile-nav__container --> <ul class="mobile-nav__contact list-unstyled ml-0"> <li> <i class="fa fa-envelope"></i> <a href="office@internetcorp.ro">office@internetcorp.ro</a> </li> <li> <i class="fa fa-phone-alt"></i> <a href="tel:031-228-61-20">031 228 61 20</a> </li> </ul><!-- /.mobile-nav__contact --> <div class="mobile-nav__top"> <div class="mobile-nav__social"> <a href="https://www.linkedin.com/company/internet-corp/" class="fab fa-linkedin"></a> <a href="https://www.facebook.com/InternetCorp" class="fab fa-facebook"></a> <a href="https://twitter.com/internetcorp" class="fab fa-twitter"></a> </div><!-- /.mobile-nav__social --> </div><!-- /.mobile-nav__top --> </div> <!-- /.mobile-nav__content --> </div> <span data-target="html" class="scroll-to-target scroll-to-top"> <span class="bar-inner"></span><!-- /.bar-inner --><i class="fa fa-angle-up"></i> </span> </div> </div> </div> </div> </div> </section> </div> <!-- end of the loop --> <div data-elementor-type="wp-page" data-elementor-id="2177" class="elementor elementor-2177"> <section class="elementor-section elementor-top-section elementor-element elementor-element-205d8ad2 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="205d8ad2" data-element_type="section" id="home"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e8dbdbc" data-id="e8dbdbc" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3dfca078 elementor-widget elementor-widget-qutiiz-main-slider" data-id="3dfca078" data-element_type="widget" data-widget_type="qutiiz-main-slider.default"> <div class="elementor-widget-container"> <!--Main Slider Start--> <section class="main-slider main-slider--three"> <div class="swiper-container thm-swiper__slider" data-swiper-options='{"slidesPerView": 1, "loop": true, "effect": "fade", "pagination": { "el": "#main-slider-pagination", "type": "bullets", "clickable": true }, "navigation": { "nextEl": "#main-slider__swiper-button-next", "prevEl": "#main-slider__swiper-button-prev" }, "autoplay": { "delay": 5000 }}'> <div class="swiper-wrapper"> <!--Start Swiper Slide --> <div class="swiper-slide"> <div class="image-layer" style="background-image: url(https://internetcorp.ro/wp-content/uploads/2023/02/img-header-homepage.jpg;)"></div> <!-- /.image-layer --> <div class="main-slider-border"></div> <div class="main-slider-border main-slider-border-two"></div> <div class="main-slider-border main-slider-border-three"></div> <div class="main-slider-border main-slider-border-four"></div> <div class="main-slider-border main-slider-border-five"></div> <div class="main-slider-border main-slider-border-six"></div> <div class="main-slider--three__shape1"></div> <div class="main-slider--three__shape2"></div> <div class="main-slider--three__shape3"></div> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="main-slider__content"> <h2>BRAND NEW MEDIA</h2> <p>Publishing. Awareness media. Design și Dezvoltare Web &amp; App. IC Events. Videocorp.</p> <div class="main-slider--three__btn"> <div class="main-slider--three__btn1"> <a href="/ro/info" class="thm-btn">DESPRE NOI</a> </div> </div> </div> </div> </div> </div> </div> <!--End Swiper Slide --> </div> <!-- If we need navigation buttons --> <div class="swiper-pagination" id="main-slider-pagination"></div> <div class="main-slider__nav main-slider__nav--two"> <div class="swiper-button-prev" id="main-slider__swiper-button-next"> <i class="icon-right-arrow icon-left-arrow"></i> </div> <div class="swiper-button-next" id="main-slider__swiper-button-prev"> <i class="icon-right-arrow"></i> </div> </div> </div> </section> <!--Main Slider End--> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-3bde0f6c elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="3bde0f6c" data-element_type="section" id="about"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-62f1acad" data-id="62f1acad" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-326c2c9d elementor-widget elementor-widget-qutiiz-about" data-id="326c2c9d" data-element_type="widget" data-widget_type="qutiiz-about.default"> <div class="elementor-widget-container"> <!--Start Welcome One --> <section class="welcome-one"> <div class="container"> <div class="row"> <!--Start Welcome One Img--> <div class="col-xl-6"> <div class="welcome-one__img wow slideInLeft" data-wow-delay="100ms" data-wow-duration="2500ms"> <div class="welcome-one__img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/01/office-team-about.jpg" alt="" /> </div> </div> </div> <!--End Welcome One Img--> <!--Start Welcome One Content--> <div class="col-xl-6"> <div class="welcome-one__content"> <div class="section-title text-left"> <span class="section-title__tagline">INFO</span> <h2 class="section-title__title"><a href="/ro/info">DESPRE NOI</a></h2> </div> <p class="welcome-one__text"><strong>InternetCorp. Brand New Media,</strong> fondat în 2005, este <strong>unul dintre cei mai mari publisheri online din România</strong> (8 website-uri proprii pe verticale diferite de conținut, de la business, start up și tehnologie, lifestyle, știri generale, retail, digital banking, sustenabilitate) și <strong>una din cele mai importante regii de vânzări</strong> (cu peste 50 de site-uri în portofoliu)<br> Cu 14 ani de experiență în organizarea de evenimente, în 2020 am lansat <strong>platforma de engagement digital pentru evenimente online, offline și hibride IC Events.</strong><br> Tot în 2020 am lansat divizia de servicii integrate video și audio, <strong>VideoCorp.</strong></p> <div class="welcome-one__content-bottom-content"> <div class="row"> </div> </div> </div> </div> <!--End Welcome One Content--> </div> </div> </section> <!--End Welcome One --> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-c2adc92 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="c2adc92" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c1c2d6f" data-id="c1c2d6f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a010fbb elementor-widget elementor-widget-heading" data-id="a010fbb" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-xl"><a href="/ro/info/#teamleaders">ECHIPA NOASTRĂ</a></h2> </div> </div> <div class="elementor-element elementor-element-4a4bfa9 elementor-widget elementor-widget-qutiiz-team" data-id="4a4bfa9" data-element_type="widget" data-widget_type="qutiiz-team.default"> <div class="elementor-widget-container"> <!--Team Page Start--> <section class="team-page"> <div class="container"> <div class="thm-owl__carousel carousel--have-shadow carousel-dot-style-1 owl-carousel owl-theme" data-owl-options=' { &quot;loop&quot;: true, &quot;margin&quot;: 0, &quot;items&quot;: 1 ,&quot;nav&quot;: true ,&quot;navText&quot;: [ &quot;&lt;i class=\&quot; fa fa-angle-left\&quot;&gt;&lt;/i&gt;&quot;, &quot;&lt;i class=\&quot; fa fa-angle-right\&quot;&gt;&lt;/i&gt;&quot; ] ,&quot;dots&quot;: true ,&quot;smartSpeed&quot;: 700 , &quot;responsive&quot;: { &quot;0&quot;: { &quot;margin&quot;: 0, &quot;items&quot;: 1 }, &quot;768&quot;: { &quot;margin&quot;: 30, &quot;items&quot;: 2 }, &quot;992&quot;: { &quot;margin&quot;: 30, &quot;items&quot;: 3 } } } '> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img fetchpriority="high" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2023/02/raluca-mateiu-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/raluca-mateiu-2/">Raluca Mateiu</a></h4> <p class="team-one__title">CEO</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/raluca-mateiu-2/">Raluca Mateiu</a></h4> <p class="team-one__hover-title">CEO</p> <div class="team-one__social"> <a href="mailto:raluca@internetcorp.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/ralucamateiu/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2021/12/cristiana-pandele-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/cristiana-pandele-2/">Cristiana Pandele</a></h4> <p class="team-one__title">CFO</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/cristiana-pandele-2/">Cristiana Pandele</a></h4> <p class="team-one__hover-title">CFO</p> <div class="team-one__social"> <a href="mailto:cristiana.pandele@internetcorp.ro"><i class="fab fa-envelope-open"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2021/12/daniel-bindea-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/daniel-bindea-2">Daniel Bindea</a></h4> <p class="team-one__title">CTO</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/daniel-bindea-2">Daniel Bindea</a></h4> <p class="team-one__hover-title">CTO</p> <div class="team-one__social"> <a href="mailto:daniel@internetcorp.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/bindeadaniel/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2021/12/roxana-grosu-1-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/roxana-grosu-2">Roxana Grosu</a></h4> <p class="team-one__title">Redactor Șef - Wall-Street.ro</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/roxana-grosu-2">Roxana Grosu</a></h4> <p class="team-one__hover-title">Redactor Șef - Wall-Street.ro</p> <div class="team-one__social"> <a href="http://roxana.grosu@wall-street.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/roxana-grosu-5ab8677/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2021/12/vlad-andriescu-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/vlad-andriescu-2">Vlad Andriescu</a></h4> <p class="team-one__title">Redactor Șef - start-up.ro</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/vlad-andriescu-2">Vlad Andriescu</a></h4> <p class="team-one__hover-title">Redactor Șef - start-up.ro</p> <div class="team-one__social"> <a href="mailto:vlad@start-up.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/vladandriescu/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2023/02/carmen-olteanu-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/carmen-ioana-olteanu-2">Carmen Ioana Olteanu</a></h4> <p class="team-one__title">Project Manager Kudika.ro &amp; Garbo.ro</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/carmen-ioana-olteanu-2">Carmen Ioana Olteanu</a></h4> <p class="team-one__hover-title">Project Manager Kudika.ro &amp; Garbo.ro</p> <div class="team-one__social"> <a href="mailto:carmen.olteanu@kudika.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/carmen-olteanu-50766817b/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2023/02/razvan-dumitru-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/razvan-dumitru-2">Răzvan Dumitru</a></h4> <p class="team-one__title">Creative Director</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/razvan-dumitru-2">Răzvan Dumitru</a></h4> <p class="team-one__hover-title">Creative Director</p> <div class="team-one__social"> <a href="mailto:razvan@internetcorp.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/dumitrurazvan/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2021/12/cristina-bucea-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/cristina-bucea-2">Cristina Bucea</a></h4> <p class="team-one__title">Sales Director</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/cristina-bucea-2">Cristina Bucea</a></h4> <p class="team-one__hover-title">Sales Director</p> <div class="team-one__social"> <a href="mailto:cristina.bucea@internetcorp.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/cristina-bucea-91492069/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2023/01/ana-maria-nedelcu-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/ana-maria-nedelcu-2">Ana-Maria Nedelcu</a></h4> <p class="team-one__title">Events Sales Director</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/ana-maria-nedelcu-2">Ana-Maria Nedelcu</a></h4> <p class="team-one__hover-title">Events Sales Director</p> <div class="team-one__social"> <a href="mailto:anamaria.nedelcu@internetcorp.ro"><i class="fab fa-envelope-open"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2023/01/liana-nicolae-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/liana-nicolae-2">Liana Nicolae</a></h4> <p class="team-one__title">Project Manager IC Events</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/liana-nicolae-2">Liana Nicolae</a></h4> <p class="team-one__hover-title">Project Manager IC Events</p> <div class="team-one__social"> <a href="mailto:liana@internetcorp.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/liananicolae/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2023/01/cristina-marin-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/cristina-marin-2">Cristina Marin</a></h4> <p class="team-one__title">Project Manager Retail.ro</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/cristina-marin-2">Cristina Marin</a></h4> <p class="team-one__hover-title">Project Manager Retail.ro</p> <div class="team-one__social"> <a href="mailto:cristina.marin@retail.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/cristina-marin-91466019b/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2023/01/oana-cosman-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/oana-cosman-2">Oana Coșman</a></h4> <p class="team-one__title">Redactor Șef - green.start-up.ro</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/oana-cosman-2">Oana Coșman</a></h4> <p class="team-one__hover-title">Redactor Șef - green.start-up.ro</p> <div class="team-one__social"> <a href="mailto:oana@start-up.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/oana-cosman-72513880/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2023/01/razvan-enache-1-370x400.jpeg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/razvan-enache-2">Răzvan Enache</a></h4> <p class="team-one__title">Business Development Manager</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/razvan-enache-2">Răzvan Enache</a></h4> <p class="team-one__hover-title">Business Development Manager</p> <div class="team-one__social"> <a href="mailto:razvan.enache@wall-street.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/razvan-enache-8570951a/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="400" src="https://internetcorp.ro/wp-content/uploads/2023/01/florin-casota-370x400.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/florin-casota-2">Florin Cașotă</a></h4> <p class="team-one__title">Project Manager VideoCorp</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/florin-casota-2">Florin Cașotă</a></h4> <p class="team-one__hover-title">Project Manager VideoCorp</p> <div class="team-one__social"> <a href="mailto:florin@start-up.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/florin-caot-88803367/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="418" src="https://internetcorp.ro/wp-content/uploads/2024/09/Sep-21-2023-120-scaled-e1726470995145-370x418.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/ro/bianca-gheorghiu">Bianca Gheorghiu</a></h4> <p class="team-one__title">Digital Marketing Manager</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/ro/bianca-gheorghiu">Bianca Gheorghiu</a></h4> <p class="team-one__hover-title">Digital Marketing Manager</p> <div class="team-one__social"> <a href="mailto:bianca.gheorghiu@internetcorp.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/gheorghiu-bianca-8752171a8"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> <div class="item"> <!--Team One Single--> <div class="team-one__single"> <div class="team-one__img"> <img loading="lazy" decoding="async" width="370" height="418" src="https://internetcorp.ro/wp-content/uploads/2024/09/64782055_2508858536066956_6888788369216634880_n-1-370x418.jpg" class="attachment-qutiiz_team_370X418 size-qutiiz_team_370X418 wp-post-image" alt="" /> </div> <div class="team-one__content"> <h4 class="team-one__name"><a href="/ro/luminita-mindrila">Luminița Mîndrilă</a></h4> <p class="team-one__title">Project Manager - Future Banking</p> </div> <div class="team-one__hover"> <h4 class="team-one__hover-name"><a href="/ro/luminita-mindrila">Luminița Mîndrilă</a></h4> <p class="team-one__hover-title">Project Manager - Future Banking</p> <div class="team-one__social"> <a href="mailto:luminita@futurebanking.ro"><i class="fab fa-envelope-open"></i></a> <a href="https://www.linkedin.com/in/luminia-mndril-6311ba1b2/"><i class="fab fa-linkedin"></i></a> </div> </div> </div> </div> </div> </div> </section> <!--Team Page End--> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-6eb71002 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="6eb71002" data-element_type="section" id="services"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7401437d" data-id="7401437d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-439cb054 elementor-widget elementor-widget-qutiiz-fancybox" data-id="439cb054" data-element_type="widget" id="ourserviceslist" data-widget_type="qutiiz-fancybox.default"> <div class="elementor-widget-container"> <!--Start Services Three--> <section class="services-three"> <div class="services-three__bg wow slideInDown" data-wow-delay="100ms" data-wow-duration="2500ms"></div> <div class="container"> <div class="section-title text-center"> <span class="section-title__tagline">SERVICII</span> <h2 class="section-title__title">CE SERVICII OFERIM</h2> </div> <div class="row"> <!--Start Services Three Single--> <div class="col-xl-4 col-lg-4 wow fadeInLeft" data-wow-delay="000ms"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/01/ads-services-img.jpg" alt=""> </div> <div class="services-three__icon"> <span aria-hidden="true" class=" fas fa-mobile-alt"></span> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="#donothing">Awareness Media</a></h2> <p class="services-three__text">Branding &amp; Concepte creative<br> Strategii de media digitală <br> Display &amp; Video Advertising <br> Proiecte speciale<br> Conținut nativ și Social media</p> <a class="services-three__arrow" target=_blank href="#donothing"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="col-xl-4 col-lg-4 wow fadeInLeft" data-wow-delay="100ms"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/01/development-services-img.jpg" alt=""> </div> <div class="services-three__icon"> <span aria-hidden="true" class=" fas fa-laptop-code"></span> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="#donothing">Creație și dezvoltare</a></h2> <p class="services-three__text">Design<br> Editare Video <br> Grafica <br> Dezvoltare Web &amp; App <br> <a href="https://internetcorp.dev/">Internetcorp.dev</a> </p> <a class="services-three__arrow" target=_blank href="#donothing"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="col-xl-4 col-lg-4 wow fadeInLeft" data-wow-delay="200ms"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/01/icevents-services-img.jpg" alt=""> </div> <div class="services-three__icon"> <span aria-hidden="true" class=" fas fa-video"></span> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="#donothing">Platforma de <br>engagement digital</a></h2> <p class="services-three__text">pentru evenimente online, offline &amp; hibride <br> <a href="https://ic.events">IC events</a></p> <a class="services-three__arrow" target=_blank href="#donothing"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="col-xl-4 col-lg-4 wow fadeInLeft" data-wow-delay="300ms"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/01/videocorp-img.jpg" alt=""> </div> <div class="services-three__icon"> <span aria-hidden="true" class=" fas fa-camera"></span> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="#donothing">Conținut Audio <br>&amp; Video</a></h2> <p class="services-three__text">Servicii integrate de realizare a conținutului video și audio pentru companii, agenții media și publisheri<br> <a href="https://videocorp.eu/">VideoCorp</a></p> <a class="services-three__arrow" target=_blank href="#donothing"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> </div> </div> </section> <!--End Services Three--> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-2aa2db00 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="2aa2db00" data-element_type="section" id="icbrands"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-70a8e0a5" data-id="70a8e0a5" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7758803d elementor-widget elementor-widget-qutiiz-portfolio" data-id="7758803d" data-element_type="widget" data-widget_type="qutiiz-portfolio.default"> <div class="elementor-widget-container"> <!--Start Project One--> <section class="project-one project-one--three"> <div class="container"> <div class="section-title text-center"> <span class="section-title__tagline">BRANDURI IC</span> <h2 class="section-title__title">InternetCorp deține site-uri din următoarele <br>verticale de conținut online:</h2> </div> <div class="row"> <div class="col-xl-12"> <ul class="project-filter style1 post-filter has-dynamic-filters-counter list-unstyled"> <li data-filter=".filter-item" class="active"><span class="filter-text">All</span></li> <li data-filter=".antreprenoriat"><span class="filter-text">Antreprenoriat</span></li> <li data-filter=".business"><span class="filter-text">Business</span></li> <li data-filter=".economie"><span class="filter-text">Economie</span></li> <li data-filter=".fintech"><span class="filter-text">Fintech</span></li> <li data-filter=".lifestyle-feminin"><span class="filter-text">Lifestyle Feminin</span></li> <li data-filter=".retail"><span class="filter-text">Retail</span></li> <li data-filter=".stiri-generale"><span class="filter-text">Știri Generale</span></li> <li data-filter=".sustenabilitate"><span class="filter-text">Sustenabilitate</span></li> <li data-filter=".tehnologie"><span class="filter-text">Tehnologie</span></li> </ul> </div> </div> <div class="row filter-layout masonary-layout"> <div class="col-xl-4 col-lg-6 col-md-6 filter-item business economie fintech"> <!--Portfolio One Single--> <div class="project-one__single"> <div class="project-one__img"> <img loading="lazy" decoding="async" width="370" height="440" src="https://internetcorp.ro/wp-content/uploads/2023/02/wall-street-lat-370x440.jpg" class="attachment-qutiiz_portfolio_370X440 size-qutiiz_portfolio_370X440 wp-post-image" alt="" /> <div class="project-one__hover"> <p class="project-one__tagline">Business</p> <h3 class="project-one__title"><a href="https://internetcorp.ro/portfolio/wall-street-ro-2/">Wall-street.ro</a> </h3> </div> </div> </div> </div> <div class="col-xl-4 col-lg-6 col-md-6 filter-item antreprenoriat business tehnologie"> <!--Portfolio One Single--> <div class="project-one__single"> <div class="project-one__img"> <img loading="lazy" decoding="async" width="370" height="440" src="https://internetcorp.ro/wp-content/uploads/2023/02/startup-lat-370x440.jpg" class="attachment-qutiiz_portfolio_370X440 size-qutiiz_portfolio_370X440 wp-post-image" alt="start-up" /> <div class="project-one__hover"> <p class="project-one__tagline">Antreprenoriat</p> <h3 class="project-one__title"><a href="https://internetcorp.ro/portfolio/start-up-ro-2/">Start-up.ro</a> </h3> </div> </div> </div> </div> <div class="col-xl-4 col-lg-6 col-md-6 filter-item retail"> <!--Portfolio One Single--> <div class="project-one__single"> <div class="project-one__img"> <img loading="lazy" decoding="async" width="370" height="440" src="https://internetcorp.ro/wp-content/uploads/2023/02/retail-lat-370x440.jpg" class="attachment-qutiiz_portfolio_370X440 size-qutiiz_portfolio_370X440 wp-post-image" alt="retail" /> <div class="project-one__hover"> <p class="project-one__tagline">Retail</p> <h3 class="project-one__title"><a href="https://internetcorp.ro/portfolio/retail-ro-2/">Retail.ro</a> </h3> </div> </div> </div> </div> <div class="col-xl-4 col-lg-6 col-md-6 filter-item lifestyle-feminin"> <!--Portfolio One Single--> <div class="project-one__single"> <div class="project-one__img"> <img loading="lazy" decoding="async" width="370" height="440" src="https://internetcorp.ro/wp-content/uploads/2023/02/kudika-lat-370x440.jpg" class="attachment-qutiiz_portfolio_370X440 size-qutiiz_portfolio_370X440 wp-post-image" alt="kudika" /> <div class="project-one__hover"> <p class="project-one__tagline">Lifestyle Feminin</p> <h3 class="project-one__title"><a href="https://internetcorp.ro/portfolio/kudika-ro/">Kudika.ro</a> </h3> </div> </div> </div> </div> <div class="col-xl-4 col-lg-6 col-md-6 filter-item antreprenoriat sustenabilitate"> <!--Portfolio One Single--> <div class="project-one__single"> <div class="project-one__img"> <img loading="lazy" decoding="async" width="370" height="440" src="https://internetcorp.ro/wp-content/uploads/2023/02/green-lat-370x440.jpg" class="attachment-qutiiz_portfolio_370X440 size-qutiiz_portfolio_370X440 wp-post-image" alt="startup green" /> <div class="project-one__hover"> <p class="project-one__tagline">Antreprenoriat</p> <h3 class="project-one__title"><a href="https://internetcorp.ro/portfolio/green-start-up-ro-2/">Green.start-up.ro</a> </h3> </div> </div> </div> </div> <div class="col-xl-4 col-lg-6 col-md-6 filter-item lifestyle-feminin"> <!--Portfolio One Single--> <div class="project-one__single"> <div class="project-one__img"> <img loading="lazy" decoding="async" width="370" height="440" src="https://internetcorp.ro/wp-content/uploads/2023/02/garbo-lat-370x440.jpg" class="attachment-qutiiz_portfolio_370X440 size-qutiiz_portfolio_370X440 wp-post-image" alt="" /> <div class="project-one__hover"> <p class="project-one__tagline">Lifestyle Feminin</p> <h3 class="project-one__title"><a href="https://internetcorp.ro/portfolio/garbo-ro-2/">Garbo.ro</a> </h3> </div> </div> </div> </div> <div class="col-xl-4 col-lg-6 col-md-6 filter-item business fintech tehnologie"> <!--Portfolio One Single--> <div class="project-one__single"> <div class="project-one__img"> <img loading="lazy" decoding="async" width="370" height="440" src="https://internetcorp.ro/wp-content/uploads/2023/02/futurebanking-lat-370x440.jpg" class="attachment-qutiiz_portfolio_370X440 size-qutiiz_portfolio_370X440 wp-post-image" alt="" /> <div class="project-one__hover"> <p class="project-one__tagline">Business</p> <h3 class="project-one__title"><a href="https://internetcorp.ro/portfolio/futurebanking-ro-2/">Futurebanking.ro</a> </h3> </div> </div> </div> </div> <div class="col-xl-4 col-lg-6 col-md-6 filter-item stiri-generale"> <!--Portfolio One Single--> <div class="project-one__single"> <div class="project-one__img"> <img loading="lazy" decoding="async" width="370" height="440" src="https://internetcorp.ro/wp-content/uploads/2023/09/9news-lat-370x440.jpg" class="attachment-qutiiz_portfolio_370X440 size-qutiiz_portfolio_370X440 wp-post-image" alt="" /> <div class="project-one__hover"> <p class="project-one__tagline">Știri Generale</p> <h3 class="project-one__title"><a href="https://internetcorp.ro/portfolio/9news-ro/">9news.ro</a> </h3> </div> </div> </div> </div> <div class="col-xl-4 col-lg-6 col-md-6 filter-item stiri-generale"> <!--Portfolio One Single--> <div class="project-one__single"> <div class="project-one__img"> <img loading="lazy" decoding="async" width="370" height="440" src="https://internetcorp.ro/wp-content/uploads/2023/02/9am-lat-370x440.jpg" class="attachment-qutiiz_portfolio_370X440 size-qutiiz_portfolio_370X440 wp-post-image" alt="" /> <div class="project-one__hover"> <p class="project-one__tagline">Știri Generale</p> <h3 class="project-one__title"><a href="https://internetcorp.ro/portfolio/9am-ro-2/">9am.ro</a> </h3> </div> </div> </div> </div> </div> </div> </section> <!--End Project One--> </div> </div> <div class="elementor-element elementor-element-f4bd14d elementor-widget elementor-widget-spacer" data-id="f4bd14d" data-element_type="widget" id="sales" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-7fd46a2 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="7fd46a2" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ab19d48" data-id="ab19d48" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-1578ca8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1578ca8" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-extended"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-88dd9d2 elementor-invisible" data-id="88dd9d2" data-element_type="column" data-settings="{&quot;animation&quot;:&quot;fadeInLeft&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-bf6186d elementor-widget__width-initial section-title__tagline text-center elementor-widget elementor-widget-heading" data-id="bf6186d" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <span class="elementor-heading-title elementor-size-default">regia de vânzări</span> </div> </div> <div class="elementor-element elementor-element-91e5194 elementor-widget elementor-widget-heading" data-id="91e5194" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-xl"><a href="/ro/regie-vanzari">InternetCorp oferă servicii de advertising în cele peste 50 site-uri din regia de vânzări</a></h2> </div> </div> </div> </div> <div class="elementor-column elementor-col-66 elementor-inner-column elementor-element elementor-element-6033c65 elementor-invisible" data-id="6033c65" data-element_type="column" data-settings="{&quot;animation&quot;:&quot;fadeInRight&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-75b1159 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="75b1159" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-dot-circle"></i> </span> <span class="elementor-icon-list-text">Afișare standard și rich media - formate compatibile cu IAB și Better Ads</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-dot-circle"></i> </span> <span class="elementor-icon-list-text">Formate speciale - formate animate sau personalizate, dezvoltate pentru nevoile clientului</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-dot-circle"></i> </span> <span class="elementor-icon-list-text">Campanii programatice - nu numai campanii de brand awareness, ci și performanță</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-dot-circle"></i> </span> <span class="elementor-icon-list-text">Conținut plătit video / text - articole plătite, content marketing, interviuri, documentare</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-dot-circle"></i> </span> <span class="elementor-icon-list-text">Proiecte speciale - pentru fiecare brief primit de la clienții care doresc sa încerce ceva nou</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-dot-circle"></i> </span> <span class="elementor-icon-list-text">Proiecte influencers - social media, trends, insta-famous, creatori digitali și multe altele</span> </li> </ul> </div> </div> </div> </div> </div> </section> <div class="elementor-element elementor-element-eda3187 elementor-widget elementor-widget-qutiiz-fancybox" data-id="eda3187" data-element_type="widget" data-widget_type="qutiiz-fancybox.default"> <div class="elementor-widget-container"> <!--Start Services Three--> <section class="services-three"> <div class="container"> <div class="thm-owl__carousel carousel--have-shadow carousel-dot-style-1 owl-carousel owl-theme" data-owl-options=' { &quot;loop&quot;: true, &quot;margin&quot;: 0, &quot;items&quot;: 4 ,&quot;nav&quot;: true ,&quot;navText&quot;: [ &quot;&lt;i class=\&quot; fa fa-angle-left\&quot;&gt;&lt;/i&gt;&quot;, &quot;&lt;i class=\&quot; fa fa-angle-right\&quot;&gt;&lt;/i&gt;&quot; ] ,&quot;dots&quot;: true ,&quot;smartSpeed&quot;: 700 , &quot;responsive&quot;: { &quot;0&quot;: { &quot;margin&quot;: 0, &quot;items&quot;: 1 }, &quot;768&quot;: { &quot;margin&quot;: 0, &quot;items&quot;: 2 }, &quot;992&quot;: { &quot;margin&quot;: 0, &quot;items&quot;: 4 } } } '> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/01/acasa-300x200-1.jpg" alt=""> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="http://acasa.ro">acasa.ro</a></h2> <p class="services-three__text">Sfaturi utile pentru toti cei care vor sa-si amenajeze locuinta, de la cei mai buni specialisti<br><br><br></p> <a class="services-three__arrow" target=_blank href="http://acasa.ro"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/01/amfostacolo-300x200-1.jpg" alt=""> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://amfostacolo.ro">amfostacolo.ro</a></h2> <p class="services-three__text">Site de recenzii cazari si locuri din Romania si din toata lumea<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://amfostacolo.ro"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/01/andreearaicu-300x200-1.jpg" alt=""> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://andreearaicu.ro">andreearaicu.ro</a></h2> <p class="services-three__text">Revista online de lifestyle feminin cu accent pe dezvoltare personala<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://andreearaicu.ro"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/animalzoo-300x200-1.jpg" alt="animalzoo logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://animalzoo.ro">Animalzoo.ro</a></h2> <p class="services-three__text">Site dedicat iubitorilor si proprietarilor de animale<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://animalzoo.ro"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/avocatnet-300x200-1.jpg" alt="avocatnet logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://avocatnet.ro">Avocatnet.ro</a></h2> <p class="services-three__text">site de informare legislativa<br><br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://avocatnet.ro"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/breslo-300x200-1.jpg" alt=""> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.breslo.ro/">Breslo.ro</a></h2> <p class="services-three__text">Primul marketplace de produse handmade dedicat artizanilor din Romania<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.breslo.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/business24-300x200-1.jpg" alt="business24 logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://business24.ro/">Business24.ro</a></h2> <p class="services-three__text">Cele mai recente stiri din business-ul romanesc si international<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://business24.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/capital-300x200-1.jpg" alt="capital logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.capital.ro/">Capital.ro</a></h2> <p class="services-three__text">Publicatie online care prezinta stiri de ultima ora din business si economie cat si informatii de interes public<br><br></p> <a class="services-three__arrow" target=_blank href="https://www.capital.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/catchy-300x200-1.jpg" alt="catchy logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.catchy.ro/">catchy.ro</a></h2> <p class="services-three__text">Revista online de lifestyle feminin.<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.catchy.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/03/conf-300x200-1.jpg" alt=""> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.confesiunileuneifeterele.ro">confesiunileuneifeterele.ro</a></h2> <p class="services-three__text">Lifestyle feminin.<br> Cu un trafic lunar de aprox. 600.000 pageviews, site-ul este insotit de o comunitate fidela a paginii de Facebook (116.000 followers)</p> <a class="services-three__arrow" target=_blank href="https://www.confesiunileuneifeterele.ro"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/dcnews-300x200-1.jpg" alt=""> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.dcnews.ro/">dcnews.ro</a></h2> <p class="services-three__text">Ultimele stiri politice, economice si de lifestyle.<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.dcnews.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/dcnewstv-300x200-1.jpg" alt="dcnewstv logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.dcnewstv.ro/">dcnewstv.ro</a></h2> <p class="services-three__text">Interviuri in exclusivitate; intreaga colectie de continut video DCNEWS.<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.dcnewstv.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/dcbusiness-300x200-1.jpg" alt="dcbusiness logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.dcbusiness.ro/">dcbusiness.ro</a></h2> <p class="services-three__text">Site de stiri dedicat domeniului de business<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.dcbusiness.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/dcmedical-300x200-1.jpg" alt="dcmedical logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.dcmedical.ro/">dcmedical.ro</a></h2> <p class="services-three__text">Ultimele stiri din domeniul medical<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.dcmedical.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/deezer-300x200-1.jpg" alt="deezer logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.deezer.com/">deezer.com</a></h2> <p class="services-three__text">Platforma de streaming audio cu peste 43 de milioane de playlist-uri<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.deezer.com/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/defenseromania-300x200-1.jpg" alt="defenseromania logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.defenseromania.ro/">defenseromania.ro</a></h2> <p class="services-three__text">Un site dedicat apararii, informatiilor si tehnologiilor militare<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.defenseromania.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/divainbucatarie-300x200-1.jpg" alt="divainbucatarie logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://divainbucatarie.ro/">divainbucatarie.ro</a></h2> <p class="services-three__text">Ponturi despre gatit, retete, sesiuni de gatit live. 600k useri lunar, 1.2M vizualizari lunar<br><br><br></p> <a class="services-three__arrow" target=_blank href="https://divainbucatarie.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/doctorulzilei-300x200-1.jpg" alt="doctorulzilei logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.doctorulzilei.ro/">doctorulzilei.ro</a></h2> <p class="services-three__text">teme actuale din domeniul sanatatii<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.doctorulzilei.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/educatieprivata-300x200-1.jpg" alt="educatieprivata logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.educatieprivata.ro/">educatieprivata.ro</a></h2> <p class="services-three__text">Ultimele stiri despre sistemul privat de invatamant<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.educatieprivata.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/eurosport-300x200-1.jpg" alt="eurosport logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.eurosport.ro/">eurosport.ro</a></h2> <p class="services-three__text">Destinatia pentru sport nr 1 in Europa<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.eurosport.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/evenimentulistoric-300x200-1.jpg" alt="evenimentulistoric logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://evenimentulistoric.ro/">evenimentulistoric.ro</a></h2> <p class="services-three__text">Site de stiri generale<br><br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://evenimentulistoric.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/evz-300x200-1.jpg" alt="evz logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://evz.ro/">evz.ro</a></h2> <p class="services-three__text">Unul dintre site-urile cu traditie in presa locala. Acopera atat evenimentele interne, cat si cele externe, pe cele mai importante domenii de interes.</p> <a class="services-three__arrow" target=_blank href="https://evz.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/evztransilvania-300x200-1.jpg" alt="evzdetransilvania logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://evzdetransilvania.ro/">evzdetransilvania.ro</a></h2> <p class="services-three__text">Este structurat pe categorii precum: Actualitate, Economic, Extern, Anchete si reportaje, Social si Premium si prezinta cele mai relevante evenimente din zona de vest a tarii</p> <a class="services-three__arrow" target=_blank href="https://evzdetransilvania.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/03/financiarul-300x200-1.jpg" alt="financiarul logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://financiarul.ro/">financiarul.ro</a></h2> <p class="services-three__text">Infiintat in 2008, cu o pozitionare solida pe piata editoriala financiara, acest ziar online inregistreaza in prezent peste 500,000 page views pe luna</p> <a class="services-three__arrow" target=_blank href="https://financiarul.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/forumsoftpedia-300x200-1.jpg" alt="forumul softpedia logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://forum.softpedia.com/">forum.softpedia.com</a></h2> <p class="services-three__text">Cel mai mare forum din Romania care acopera o plaja larga de subiecte<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://forum.softpedia.com/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/infoactual-300x200-1.jpg" alt="infoactual logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.infoactual.ro/">infoactual.ro</a></h2> <p class="services-three__text">Platforma de stiri<br><br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.infoactual.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/infofinanciar-300x200-1.jpg" alt="infofinanciar logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.infofinanciar.ro/">infofinanciar.ro</a></h2> <p class="services-three__text">Platforma de stiri financiare<br><br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.infofinanciar.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/icars-300x200-1.jpg" alt="icars logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://icars.ro/">icars.ro</a></h2> <p class="services-three__text">Pentru pasionații de toate tipurile de motoare<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://icars.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/lalena-300x200-1.jpg" alt="lalena logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.lalena.ro/">lalena.ro</a></h2> <p class="services-three__text">Site de retete culinare<br><br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.lalena.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/ll-300x200-1.jpg" alt="lauralaurentiu logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.lauralaurentiu.ro/">lauralaurentiu.ro</a></h2> <p class="services-three__text">Site-ul culinar este cea mai bună sursă de informație în ceea ce privește rețete de comfort food<br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.lauralaurentiu.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/life-300x200-1.jpg" alt="life logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.life.ro/">life.ro</a></h2> <p class="services-three__text">site-ul unde găsești povești de viață așa cum nu ți le spune nimeni<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.life.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/mamasicopilul-300x200-1.jpg" alt="mamasicopilul logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://mamisicopilul.ro/">mamisicopilul.ro</a></h2> <p class="services-three__text">Informatii utile despre sanatatea, dezvoltarea si ingrijirea copilului, articole din domeniul medical sau despre sarcina, nastere sau puericultura</p> <a class="services-three__arrow" target=_blank href="https://mamisicopilul.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/newmoney-300x200-1.jpg" alt="newmoney logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.newmoney.ro/">newmoney.ro</a></h2> <p class="services-three__text">Revista de business<br><br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.newmoney.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/obsph-300x200-1.jpg" alt="observatorulph logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.observatorulph.ro/">observatorulph.ro</a></h2> <p class="services-three__text">Cel mai accesat site de media din Prahova<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.observatorulph.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/obsbv-300x200-1.jpg" alt=""> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.observatorulbv.ro/">observatorulbv.ro</a></h2> <p class="services-three__text">Cel mai accesat site de media din Brasov<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.observatorulbv.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/povesteacasei-300x200-1.jpg" alt="povesteacasei logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://povesteacasei.ro/">povesteacasei.ro</a></h2> <p class="services-three__text">Inspiratie pura in amenajarea casei<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://povesteacasei.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/radiodcnews-300x200-2.jpg" alt=""> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.radiodcnews.ro/">radiodcnews.ro</a></h2> <p class="services-three__text">Ultimele stiri - DCNEWS Radio<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.radiodcnews.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/romedic-300x200-1.jpg" alt="romedic logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.romedic.ro/">romedic.ro</a></h2> <p class="services-three__text">Portal despre informatii medicale<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.romedic.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/recomandpe-300x200-1.jpg" alt="recomandpe logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://recomandpe.ro/">recomandpe.ro</a></h2> <p class="services-three__text">Pentru oameni, companii sau organizații care merită respectul comunității.<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://recomandpe.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/retete-300x200-1.jpg" alt=""> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://retetesivedete.ro/">retetesivedete.ro</a></h2> <p class="services-three__text">Un site unde gasim cele mai recente informatii din lumea mondena si nu numai<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://retetesivedete.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/sentimente-300x200-1.jpg" alt="sentimente logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.sentimente.ro/">sentimente.ro</a></h2> <p class="services-three__text">Platforma de dating<br><br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.sentimente.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/stareanatiei-300x200-1.jpg" alt="stareanatiei logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.stareanatiei.ro/">stareanatiei.ro</a></h2> <p class="services-three__text">Unul dintre cele mai cunoscute brand-uri din zona social-politica<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.stareanatiei.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/stiridiaspora-300x200-1.jpg" alt="stiridiaspora logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.stiridiaspora.ro/">stiridiaspora.ro</a></h2> <p class="services-three__text">Un site de stiri dedicat diasporei<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.stiridiaspora.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/spectacola-300x200-1.jpg" alt="spectacola logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.spectacola.ro/">spectacola.ro</a></h2> <p class="services-three__text"><br><br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.spectacola.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/teamdeals-300x200-1.jpg" alt="teamdeals logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://teamdeals.ro/">teamdeals.ro</a></h2> <p class="services-three__text">Unul dintre cele mai cunoscute site-uri din zona de e-commerce. Aici vom gasi cele mai bune oferte din toate categoriile<br><br></p> <a class="services-three__arrow" target=_blank href="https://teamdeals.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/tnr-300x200-1.jpg" alt="timesnewroman logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://www.timesnewroman.ro/">timesnewroman.ro</a></h2> <p class="services-three__text">Cea mai citita publicatie de satira din Romania<br><br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://www.timesnewroman.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/travelator-300x200-1.jpg" alt="travelator logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://travelator.ro/">travelator.ro</a></h2> <p class="services-three__text">Cel mai mare site de vacante de tip DIY din Romania<br><br><br><br></p> <a class="services-three__arrow" target=_blank href="https://travelator.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/tunein-300x200-1.jpg" alt="tunein logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://tunein.com/">tunein.com</a></h2> <p class="services-three__text">Cea mai mare platforma de radio online din lume: peste 240,000 useri activi lunar doar pe Ro<br><br><br></p> <a class="services-three__arrow" target=_blank href="https://tunein.com/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/vacantata-300x200-1.jpg" alt=""> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://vacanta-ta.ro/">vacanta-ta.ro</a></h2> <p class="services-three__text">Pentru cei care caută destinații de timp liber, este proiect editorial al Grupului Observatorul Prahovean<br><br><br></p> <a class="services-three__arrow" target=_blank href="https://vacanta-ta.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/zonait-300x200-1.jpg" alt="zonait logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://zonait.ro/">zonait.ro</a></h2> <p class="services-three__text">acopera domeniul tehnologiei de la smartphones, PC-uri si componente, pana la aplicatii si jocuri, in recenzii cuprinzatoare, teste comparative si stiri</p> <a class="services-three__arrow" target=_blank href="https://zonait.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/ziare-300x200-1.jpg" alt="ziare logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://ziare.com/">ziare.com</a></h2> <p class="services-three__text">Cuprinde o larga gama de domenii de interes, de la actualitate si politica pana la business, sport si curiozitati din toata lumea<br><br></p> <a class="services-three__arrow" target=_blank href="https://ziare.com/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> <!--Start Services Three Single--> <div class="item"> <div class="services-three__single"> <div class="services-three__single-img"> <div class="services-three__single-img-inner"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/7lucruri-300x200-1.jpg" alt="7lucruri logo"> </div> <div class="services-three__icon"> </div> </div> <div class="services-three__single-content"> <h2 class="services-three__title"><a target=_blank href="https://7lucruri.ro/">7lucruri.ro</a></h2> <p class="services-three__text">Al doilea cel mai important site de umor din România și este creația echipei de la cel mai important site de umor din România, timesnewroman.ro</p> <a class="services-three__arrow" target=_blank href="https://7lucruri.ro/"><span class="icon-right-arrow"></span></a> </div> </div> </div> <!--End Services Three Single--> </div> </div> </section> <!--End Services Three--> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-9bea57d elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="9bea57d" data-element_type="section" id="icevents"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-99927dc" data-id="99927dc" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7f960cf elementor-widget elementor-widget-qutiiz-video" data-id="7f960cf" data-element_type="widget" data-widget_type="qutiiz-video.default"> <div class="elementor-widget-container"> <section class="why-choose-two"> <div class="container"> <div class="why-choose-two__top"> <div class="row"> <div class="col-xl-6"> <div class="why-choose-two__top-left"> <div class="why-choose-two__top-img"> <img decoding="async" src="https://internetcorp.ro/wp-content/uploads/2023/02/img-video-icevents-blacknwhite.png" alt=""> <div class="why-choose-two__video-link"> <a href="https://vimeo.com/722894693" class="video-popup"> <div class="why-choose-two__video-icon"> <span class="icon-play-button"></span> <i class="ripple"></i> </div> </a> </div> </div> </div> </div> <div class="col-xl-6"> <div class="why-choose-two__right"> <div class="section-title text-left"> <span class="section-title__tagline">IC EVENTS</span> <h2 class="section-title__title">IC Events - o singură platformă pentru toate nevoile de promovare și networking ale companiei tale</h2> </div> <p class="why-choose-two__text">Noua variantă a platformei IC Events folosește o abordare SaaS (Software as a Services) și se concentrează pe o experiență interactivă la 360 de grade pentru a le permite partenerilor să folosească la maximum potențialul evenimentelor pe care le organizează, fie că vorbim de întâlniri private de business, lansări de produse sau servicii, conferințe de presă sau crearea de comunități.<br> Contact: <a href="mailto:team@ic.events">team@ic.events</a> <br><br> <a href="https://ic.events/" class="thm-btn">IC EVENTS</a></p> <ul class="list-unstyled why-choose-two__points ml-0"> </ul> <div class="why-choose-two__counter"> <div class="why-choose-two__counter-icon"> <span aria-hidden="true" class=" icon-conversation"></span> </div> <div class="why-choose-two__counter-content"> <h3 class="odometer" data-count="60">00</h3> <p>de evenimente hibride și online</p> </div> </div> </div> </div> </div> </div> <div class="why-choose-two__bottom"> <div class="row"> <div class="col-xl-4 col-lg-4 wow fadeInUp" data-wow-delay="100ms"> <!--Why Choose Two Signle--> <div class="why-choose-two__single"> <div class="why-choose-two__icon icon-svg"> <span aria-hidden="true" class=" fas fa-video"></span> </div> <div class="why-choose-two__content"> <h4 class="why-choose-two__content-text">live stream </h4> </div> </div> </div> <div class="col-xl-4 col-lg-4 wow fadeInUp" data-wow-delay="100ms"> <!--Why Choose Two Signle--> <div class="why-choose-two__single"> <div class="why-choose-two__icon icon-svg"> <span aria-hidden="true" class=" icon-lamp"></span> </div> <div class="why-choose-two__content"> <h4 class="why-choose-two__content-text">webinarii</h4> </div> </div> </div> <div class="col-xl-4 col-lg-4 wow fadeInUp" data-wow-delay="100ms"> <!--Why Choose Two Signle--> <div class="why-choose-two__single"> <div class="why-choose-two__icon icon-svg"> <span aria-hidden="true" class=" qutiiz-icon-two-planning"></span> </div> <div class="why-choose-two__content"> <h4 class="why-choose-two__content-text">ateliere și paneluri de dezbateri</h4> </div> </div> </div> <div class="col-xl-4 col-lg-4 wow fadeInUp" data-wow-delay="100ms"> <!--Why Choose Two Signle--> <div class="why-choose-two__single"> <div class="why-choose-two__icon icon-svg"> <span aria-hidden="true" class=" fas fa-store-alt"></span> </div> <div class="why-choose-two__content"> <h4 class="why-choose-two__content-text">Zona Expo</h4> </div> </div> </div> <div class="col-xl-4 col-lg-4 wow fadeInUp" data-wow-delay="100ms"> <!--Why Choose Two Signle--> <div class="why-choose-two__single"> <div class="why-choose-two__icon icon-svg"> <span aria-hidden="true" class=" fas fa-people-arrows"></span> </div> <div class="why-choose-two__content"> <h4 class="why-choose-two__content-text">opțiunea de Networking 1 to 1</h4> </div> </div> </div> <div class="col-xl-4 col-lg-4 wow fadeInUp" data-wow-delay="100ms"> <!--Why Choose Two Signle--> <div class="why-choose-two__single"> <div class="why-choose-two__icon icon-svg"> <span aria-hidden="true" class=" fas fa-network-wired"></span> </div> <div class="why-choose-two__content"> <h4 class="why-choose-two__content-text">Social Lounge</h4> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-6a35d1e0 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="6a35d1e0" data-element_type="section" id="icvideo"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-231ac70" data-id="231ac70" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6129fa1e elementor-widget elementor-widget-qutiiz-video" data-id="6129fa1e" data-element_type="widget" data-widget_type="qutiiz-video.default"> <div class="elementor-widget-container"> <!--Start Get In Touch One--> <section class="get-in-touch-one"> <div class="shape1"><img decoding="async" src="http://layerdrops.com/qutiizwp/wp-content/uploads/2022/09/get-in-touch-v1-shape1.png" alt="" /></div> <div class="get-in-touch-one__bg" style="background-image: url(https://internetcorp.ro/wp-content/uploads/2023/02/img-video-videocorp.jpg);"> <div class="get-in-touch-one__video-link"> <a href="https://vimeo.com/752995344" class="video-popup"> <div class="get-in-touch-one__video-icon"> <span class="icon-play-button"></span> </div> </a> </div> </div> <div class="container"> <div class="row"> <!--Start Get In Touch One Content--> <div class="col-xl-12"> <div class="get-in-touch-one__content"> <div class="section-title text-left"> <span class="section-title__tagline">IC VIDEO</span> <h2 class="section-title__title">VIDEOCORP - servicii integrate de realizare a conținutului video și audio</h2> </div> <p class="get-in-touch-one__text1"><strong>VideoCorp</strong> oferă servicii integrate de realizare a conținutului video și audio pentru companii, agenții media și publisheri, de la concept creativ și dezvoltare strategică, la producție și amplificare, pentru partenerii care vor să inspire, să informeze, să surprindă.<br><br> Formată dintr-o echipă de jurnaliști cu experiență, producători multimedia, designeri, directori de creație și manageri de proiect, agenția de producție video transpune nevoile de comunicare ale companiilor într-o formă atrăgătoare și captivantă, potrivită obiectivelor pe care partenerii își doresc să le atingă.<br><br> We don’t just make videos, we tell stories <strong>to remember!</strong> <br><br> CONTACT VideoCorp:<br> <a href="/?page_id=1388">Florin Casota - Project Manager</a><br> <a href="mailto:video@internetcorp.ro">video@internetcorp.ro</a><br><br> <a href="https://videocorp.eu/" class="thm-btn">VIDEOCORP</a></p> <div class="get-in-touch-one__content-middle"> <div class="row"> </div> </div> <div class="get-in-touch-one__progress"> </div> </div> </div> <!--End Get In Touch One Content--> </div> </div> </section> <!--End Get In Touch One--> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-2e1a875d elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="2e1a875d" data-element_type="section" id="blog"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-50633ab9" data-id="50633ab9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-72c3b6a0 elementor-widget elementor-widget-qutiiz-blog" data-id="72c3b6a0" data-element_type="widget" data-widget_type="qutiiz-blog.default"> <div class="elementor-widget-container"> <!--Start Blog Three--> <section class="blog-three"> <div class="container"> <div class="row"> <!--Start Blog Three Content--> <div class="col-xl-4"> <div class="blog-three__content"> <div class="section-title text-left"> <span class="section-title__tagline">BLOG</span> <h2 class="section-title__title">CE AM MAI FĂCUT</h2> </div> <p class="blog-three__text">Ultimelele noastre anunțuri și noutăți </p> </div> </div> <!--End Blog Three Content--> <!--Start Blog Three Right--> <div class="col-xl-8"> <div class="blog-three__right"> <div class="blog-three__carousel owl-carousel owl-theme"> <!--Start Blog One Single--> <div class="blog-one__single"> <div class="blog-one__img"> <img loading="lazy" decoding="async" width="370" height="265" src="https://internetcorp.ro/wp-content/uploads/2025/03/IC-G4Media-370x265.jpg" class="attachment-qutiiz_blog_370X265 size-qutiiz_blog_370X265 wp-post-image" alt="" srcset="https://internetcorp.ro/wp-content/uploads/2025/03/IC-G4Media-370x265.jpg 370w, https://internetcorp.ro/wp-content/uploads/2025/03/IC-G4Media-180x130.jpg 180w" sizes="auto, (max-width: 370px) 100vw, 370px" /> <a href="https://internetcorp.ro/internetcorp-devine-partenerul-de-vanzari-pentru-proiectele-speciale-ale-g4media-group/"> <span class="blog-one__plus"></span> </a> <div class="blog-one__date"> <p>03 <br> mart.</p> </div> </div> <div class="blog-one__content"> <ul class="list-unstyled blog-one__meta ml-0"> <li><a href="https://internetcorp.ro/category/business-and-news/blog/"><i class="far fa-folder-open"></i> blog </a> </li> </ul> <h3 class="blog-one__title"> <a href="https://internetcorp.ro/internetcorp-devine-partenerul-de-vanzari-pentru-proiectele-speciale-ale-g4media-group/">InternetCorp devine partenerul de vânzări pentru proiectele speciale ale G4Media Group</a> </h3> <div class="blog-one__person"> <div class="blog-one__person-img"> <img alt='' src='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=33&#038;d=mm&#038;r=g' srcset='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=66&#038;d=mm&#038;r=g 2x' class='avatar avatar-33 photo' height='33' width='33' /> </div> <div class="blog-one__person-content"> <p>by Bianca Gheorghiu</p> </div> </div> </div> </div> <!--End Blog One Single--> <!--Start Blog One Single--> <div class="blog-one__single"> <div class="blog-one__img"> <img loading="lazy" decoding="async" width="370" height="265" src="https://internetcorp.ro/wp-content/uploads/2025/02/Social-Media-Specialist-HD-370x265.png" class="attachment-qutiiz_blog_370X265 size-qutiiz_blog_370X265 wp-post-image" alt="" srcset="https://internetcorp.ro/wp-content/uploads/2025/02/Social-Media-Specialist-HD-370x265.png 370w, https://internetcorp.ro/wp-content/uploads/2025/02/Social-Media-Specialist-HD-180x130.png 180w" sizes="auto, (max-width: 370px) 100vw, 370px" /> <a href="https://internetcorp.ro/social-media-specialist-wanted-at-internet-corp/"> <span class="blog-one__plus"></span> </a> <div class="blog-one__date"> <p>05 <br> feb.</p> </div> </div> <div class="blog-one__content"> <ul class="list-unstyled blog-one__meta ml-0"> <li><a href="https://internetcorp.ro/category/business-and-news/blog/"><i class="far fa-folder-open"></i> blog </a> </li> </ul> <h3 class="blog-one__title"> <a href="https://internetcorp.ro/social-media-specialist-wanted-at-internet-corp/">Social Media Specialist wanted at Internet Corp!</a> </h3> <div class="blog-one__person"> <div class="blog-one__person-img"> <img alt='' src='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=33&#038;d=mm&#038;r=g' srcset='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=66&#038;d=mm&#038;r=g 2x' class='avatar avatar-33 photo' height='33' width='33' /> </div> <div class="blog-one__person-content"> <p>by Bianca Gheorghiu</p> </div> </div> </div> </div> <!--End Blog One Single--> <!--Start Blog One Single--> <div class="blog-one__single"> <div class="blog-one__img"> <img loading="lazy" decoding="async" width="370" height="265" src="https://internetcorp.ro/wp-content/uploads/2025/01/devic-OG-image-370x265.jpg" class="attachment-qutiiz_blog_370X265 size-qutiiz_blog_370X265 wp-post-image" alt="" srcset="https://internetcorp.ro/wp-content/uploads/2025/01/devic-OG-image-370x265.jpg 370w, https://internetcorp.ro/wp-content/uploads/2025/01/devic-OG-image-180x130.jpg 180w" sizes="auto, (max-width: 370px) 100vw, 370px" /> <a href="https://internetcorp.ro/internetcorp-lanseaza-divizia-internetcorp-dev-dedicata-proiectelor-digitale-inovatoare/"> <span class="blog-one__plus"></span> </a> <div class="blog-one__date"> <p>21 <br> ian.</p> </div> </div> <div class="blog-one__content"> <ul class="list-unstyled blog-one__meta ml-0"> <li><a href="https://internetcorp.ro/category/business-and-news/blog/"><i class="far fa-folder-open"></i> blog </a> </li> </ul> <h3 class="blog-one__title"> <a href="https://internetcorp.ro/internetcorp-lanseaza-divizia-internetcorp-dev-dedicata-proiectelor-digitale-inovatoare/">InternetCorp lansează divizia InternetCorp.Dev dedicată proiectelor digitale inovatoare</a> </h3> <div class="blog-one__person"> <div class="blog-one__person-img"> <img alt='' src='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=33&#038;d=mm&#038;r=g' srcset='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=66&#038;d=mm&#038;r=g 2x' class='avatar avatar-33 photo' height='33' width='33' /> </div> <div class="blog-one__person-content"> <p>by Bianca Gheorghiu</p> </div> </div> </div> </div> <!--End Blog One Single--> <!--Start Blog One Single--> <div class="blog-one__single"> <div class="blog-one__img"> <img loading="lazy" decoding="async" width="370" height="265" src="https://internetcorp.ro/wp-content/uploads/2024/09/Commerce-Innovation-Summit-FHD-Cover2-370x265.png" class="attachment-qutiiz_blog_370X265 size-qutiiz_blog_370X265 wp-post-image" alt="" srcset="https://internetcorp.ro/wp-content/uploads/2024/09/Commerce-Innovation-Summit-FHD-Cover2-370x265.png 370w, https://internetcorp.ro/wp-content/uploads/2024/09/Commerce-Innovation-Summit-FHD-Cover2-180x130.png 180w" sizes="auto, (max-width: 370px) 100vw, 370px" /> <a href="https://internetcorp.ro/liderii-comertului-romanesc-vin-la-commerce-innovation-summit-pe-5-noiembrie-la-bucuresti/"> <span class="blog-one__plus"></span> </a> <div class="blog-one__date"> <p>26 <br> sept.</p> </div> </div> <div class="blog-one__content"> <ul class="list-unstyled blog-one__meta ml-0"> <li><a href="https://internetcorp.ro/category/business-and-news/blog/"><i class="far fa-folder-open"></i> blog </a> </li> </ul> <h3 class="blog-one__title"> <a href="https://internetcorp.ro/liderii-comertului-romanesc-vin-la-commerce-innovation-summit-pe-5-noiembrie-la-bucuresti/">Liderii comerțului românesc vin la Commerce Innovation Summit pe 5 noiembrie la București</a> </h3> <div class="blog-one__person"> <div class="blog-one__person-img"> <img alt='' src='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=33&#038;d=mm&#038;r=g' srcset='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=66&#038;d=mm&#038;r=g 2x' class='avatar avatar-33 photo' height='33' width='33' /> </div> <div class="blog-one__person-content"> <p>by Bianca Gheorghiu</p> </div> </div> </div> </div> <!--End Blog One Single--> <!--Start Blog One Single--> <div class="blog-one__single"> <div class="blog-one__img"> <img loading="lazy" decoding="async" width="370" height="265" src="https://internetcorp.ro/wp-content/uploads/2024/09/461196708_941533084660342_7862876390622592403_n-370x265.jpg" class="attachment-qutiiz_blog_370X265 size-qutiiz_blog_370X265 wp-post-image" alt="" srcset="https://internetcorp.ro/wp-content/uploads/2024/09/461196708_941533084660342_7862876390622592403_n-370x265.jpg 370w, https://internetcorp.ro/wp-content/uploads/2024/09/461196708_941533084660342_7862876390622592403_n-180x130.jpg 180w" sizes="auto, (max-width: 370px) 100vw, 370px" /> <a href="https://internetcorp.ro/vesti-extraordinare-4-proiecte-start-up-ro-nominalizate-la-webstock-2024/"> <span class="blog-one__plus"></span> </a> <div class="blog-one__date"> <p>25 <br> sept.</p> </div> </div> <div class="blog-one__content"> <ul class="list-unstyled blog-one__meta ml-0"> <li><a href="https://internetcorp.ro/category/business-and-news/blog/"><i class="far fa-folder-open"></i> blog </a> </li> </ul> <h3 class="blog-one__title"> <a href="https://internetcorp.ro/vesti-extraordinare-4-proiecte-start-up-ro-nominalizate-la-webstock-2024/">Vești extraordinare! 4 proiecte start-up.ro nominalizate la Webstock 2024</a> </h3> <div class="blog-one__person"> <div class="blog-one__person-img"> <img alt='' src='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=33&#038;d=mm&#038;r=g' srcset='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=66&#038;d=mm&#038;r=g 2x' class='avatar avatar-33 photo' height='33' width='33' /> </div> <div class="blog-one__person-content"> <p>by Bianca Gheorghiu</p> </div> </div> </div> </div> <!--End Blog One Single--> <!--Start Blog One Single--> <div class="blog-one__single"> <div class="blog-one__img"> <img loading="lazy" decoding="async" width="370" height="265" src="https://internetcorp.ro/wp-content/uploads/2024/09/articol-general-370x265.png" class="attachment-qutiiz_blog_370X265 size-qutiiz_blog_370X265 wp-post-image" alt="" srcset="https://internetcorp.ro/wp-content/uploads/2024/09/articol-general-370x265.png 370w, https://internetcorp.ro/wp-content/uploads/2024/09/articol-general-570x410.png 570w, https://internetcorp.ro/wp-content/uploads/2024/09/articol-general-180x130.png 180w" sizes="auto, (max-width: 370px) 100vw, 370px" /> <a href="https://internetcorp.ro/summitul-bankingului-digital-pe-care-sa-nu-l-ratezi-trenduri-din-banking-fintech-macroeconomie-si-zeci-de-solutii-din-care-sa-te-inspiri/"> <span class="blog-one__plus"></span> </a> <div class="blog-one__date"> <p>23 <br> sept.</p> </div> </div> <div class="blog-one__content"> <ul class="list-unstyled blog-one__meta ml-0"> <li><a href="https://internetcorp.ro/category/business-and-news/blog/"><i class="far fa-folder-open"></i> blog </a> </li> </ul> <h3 class="blog-one__title"> <a href="https://internetcorp.ro/summitul-bankingului-digital-pe-care-sa-nu-l-ratezi-trenduri-din-banking-fintech-macroeconomie-si-zeci-de-solutii-din-care-sa-te-inspiri/">Summitul bankingului digital pe care să nu-l ratezi. Trenduri din banking, fintech, macroeconomie și zeci de soluții din care să te inspiri</a> </h3> <div class="blog-one__person"> <div class="blog-one__person-img"> <img alt='' src='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=33&#038;d=mm&#038;r=g' srcset='https://secure.gravatar.com/avatar/6b7767305b959b6eb174ac53ddb26684?s=66&#038;d=mm&#038;r=g 2x' class='avatar avatar-33 photo' height='33' width='33' /> </div> <div class="blog-one__person-content"> <p>by Bianca Gheorghiu</p> </div> </div> </div> </div> <!--End Blog One Single--> </div> </div> </div> <!--End Blog Three Right--> </div> <div class="owl-theme"> <div class="owl-controls"> <div class="custom-nav owl-nav"></div> </div> </div> </div> </section> <!--End Blog Three--> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-32201d7 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="32201d7" data-element_type="section" id="contactadress"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5c8a09c" data-id="5c8a09c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1038e25 elementor-widget elementor-widget-heading" data-id="1038e25" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-xl">CONTACT</h2> </div> </div> <div class="elementor-element elementor-element-ad125d8 elementor-widget elementor-widget-qutiiz-info-box" data-id="ad125d8" data-element_type="widget" data-widget_type="qutiiz-info-box.default"> <div class="elementor-widget-container"> <section class="contact-info"> <div class="container"> <div class="row"> <div class="col-xl-4 col-lg-4 wow fadeInUp" data-wow-delay="100ms"> <!--Contact Info Single--> <div class="contact-info__single"> <div class="contact-info__icon icon-svg"> <span aria-hidden="true" class=" icon-conversation"></span> </div> <h3 class="contact-info__title">Detaliile firmei</h3> <p class="contact-info__text">S.C. Internetcorp S.R.L.<br> Capital Social: 4200 lei<br> C.U.I: RO 17562895<br> Nr. inregistrare Registrul Comertului: J2005008379402</p> </div> </div> <div class="col-xl-4 col-lg-4 wow fadeInUp" data-wow-delay="100ms"> <!--Contact Info Single--> <div class="contact-info__single"> <div class="contact-info__icon icon-svg"> <span aria-hidden="true" class=" icon-address"></span> </div> <h3 class="contact-info__title">adresă</h3> <p class="contact-info__text">Str. Putul lui Zamfir nr. 28, Sector 1, Bucuresti</p> </div> </div> <div class="col-xl-4 col-lg-4 wow fadeInUp" data-wow-delay="100ms"> <!--Contact Info Single--> <div class="contact-info__single"> <div class="contact-info__icon icon-svg"> <span aria-hidden="true" class=" icon-contact"></span> </div> <h3 class="contact-info__title">contact</h3> <p class="contact-info__text"> <a href="mailto:office@internetcorp.ro" class="contact-info__mail">office@internetcorp.ro </a> <a href="tel:+40312286120" class="contact-info__phone">031 228 61 20</a> <br> DEPARTAMENT VÂNZĂRI <a href="mailto:cristina.bucea@internetcorp.ro" class="contact-info__mail">Cristina Bucea</a> <a href="mailto:bogdan.ilie@internetcorp.ro" class="contact-info__mail">Bogdan Ilie</a> <a href="mailto:alina.stavrositu@internetcorp.ro" class="contact-info__mail">Alina Stavrositu</a> </p> </div> </div> </div> </div> </section> </div> </div> </div> </div> </div> </section> </div> <!-- the loop --> <div data-elementor-type="wp-post" data-elementor-id="97" class="elementor elementor-97"> <section class="elementor-section elementor-top-section elementor-element elementor-element-e3f597f elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="e3f597f" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-19df005" data-id="19df005" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-37ad64b elementor-widget elementor-widget-footer-top" data-id="37ad64b" data-element_type="widget" data-widget_type="footer-top.default"> <div class="elementor-widget-container"> <div class="site-footer__top"> <div class="container"> <div class="site-footer__top-inner"> <div class="site-footer__top-left"> <div class="site-footer__top-logo"> <a href="https://internetcorp.ro/"><img loading="lazy" decoding="async" width="200" height="25" src="https://internetcorp.ro/wp-content/uploads/2022/09/InternetCorp-Logo-White.png" alt="InternetCorp"></a> </div> <div class="site-footer__top-title-box"> <h3 class="site-footer__top-title">Contact us - <a href="mailto:office@internetcorp.ro">office@internetcorp.ro</a></h3> </div> </div> <div class="site-footer__top-right"> <div class="site-footer__top-right-social"> <a target=_blank href="https://www.facebook.com/InternetCorp"><i class="fab fa-facebook"></i></a> <a target=_blank href="https://www.linkedin.com/company/internet-corp/"><i class="fab fa-linkedin"></i></a> <a target=_blank href="https://twitter.com/internetcorp"><i class="fab fa-twitter"></i></a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-6f14704 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6f14704" data-element_type="section" data-settings="{&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-32f2539" data-id="32f2539" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e344774 elementor-widget elementor-widget-footer-about" data-id="e344774" data-element_type="widget" data-widget_type="footer-about.default"> <div class="elementor-widget-container"> <div class="footer-widget__column footer-widget__about"> <h3 class="footer-widget__title">About</h3> <div class="footer-widget__about-text-box"> <p class="footer-widget__about-text">INTERNETCORP </p> </div> <ul class="footer-widget__about-contact list-unstyled ml-0"> <li> <div class="icon"> <i class="fas fa-phone-square-alt"></i> </div> <div class="text"> <a href="tel:+40312286120">031 228 61 20</a> </div> </li> <li> <div class="icon"> <i class="fas fa-envelope"></i> </div> <div class="text"> <a href="mailto:office@internetcorp.ro">office@internetcorp.ro</a> </div> </li> <li> <div class="icon"> <i class="fas fa-map-marker-alt"></i> </div> <div class="text"> <a href="https://goo.gl/maps/Gqgs7AKW47d9fyV67">Str. Putul lui Zamfir nr. 28, Sector 1, Bucuresti</a> </div> </li> </ul> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-31d1b40 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="31d1b40" data-element_type="section" data-settings="{&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-dd87585" data-id="dd87585" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f0b3829 elementor-widget elementor-widget-footer-copyright" data-id="f0b3829" data-element_type="widget" data-widget_type="footer-copyright.default"> <div class="elementor-widget-container"> <footer class="site-footer"> <div class="site-footer__bottom"> <div class="container"> <div class="row"> <div class="col-xl-12"> <div class="site-footer__bottom-inner"> <div class="site-footer__bottom-left"> <p class="site-footer__bottom-text">&copy; InternetCorp. All Rights Reserved. <div class="d-none"> </p> </div> <div class="site-footer__bottom-right"> </div> </div> </div> </div> </div> </div> </footer> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-79bab6c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="79bab6c" 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-7771b76" data-id="7771b76" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-68f48c5 elementor-widget elementor-widget-html" data-id="68f48c5" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <script> if(window.location.href.indexOf('/en/') > -1){ document.getElementById("thm-logo").parentElement.setAttribute('href', '/en/internetcorp-brand-new-media/'); } </script> </div> </div> </div> </div> </div> </section> </div> <!-- end of the loop --> </div><!-- #page --> <script> var bane_card='https://internetcorp.ro/wp-content/uploads/2025/03/Rate-Card-Internetcorp-Martie-2025.xlsx'; </script><script> jQuery('.main-menu-wrapper__call-number a').removeAttr('href'); jQuery('.main-menu-wrapper__right').attr('onclick', "window.open(bane_card, '_blank')"); jQuery('.thm-swiper__slider').attr('data-swiper-options','{"slidesPerView": 1, "loop": false,"effect": "fade","pagination": {"el": "#main-slider-pagination","type": "bullets","clickable": true},"navigation": {"nextEl": "#main-slider__swiper-button-next","prevEl": "#main-slider__swiper-button-prev"},"autoplay": {"delay": 5000}}'); var owl = jQuery('.thm-owl__carousel'); jQuery(window).load(function(){ function autoplay_owl(){ owl.trigger('play.owl.autoplay',[5000]); }; window.setTimeout( autoplay_owl, 3000 ); }) jQuery(".fa-envelope-open").addClass( "fa" ); jQuery(".services-three > .container > .row > .wow").removeClass("col-lg-4 col-xl-4"); jQuery(".services-three > .container > .row > .wow").addClass("col-lg-6 col-xl-6"); jQuery(".project-details__content > .row > .col-lg-7").addClass("col-lg-12 col-xl-12").removeClass("col-lg-7 col-xl-8"); jQuery(".next > .project-details__pagination-sub-title").text("PREVIOUS"); jQuery(".previous > .project-details__pagination-sub-title").text("NEXT"); function addplusfunction() { jQuery('.odometer-inside').append('<span class="odometer-digit"><span class="odometer-digit-spacer">8</span><span class="odometer-digit-inner"><span class="odometer-ribbon"><span class="odometer-ribbon-inner"><span class="odometer-value">+</span></span></span></span></span>'); } var lwr_counter=0; jQuery(window).scroll(function(){ if (isInView(jQuery('.odometer')) && !lwr_counter){ const addplus = setTimeout(addplusfunction, 3000); lwr_counter=1; return false; } }); function isInView(elem){ var windowHeight = window.innerHeight; if(windowHeight + jQuery(window).scrollTop() > jQuery(elem).offset().top) return true; else return false; //return jQuery(elem).offset().top - jQuery(window).scrollTop() < jQuery(elem).height(); } //jQuery('a[href*="portfolio=wall-street-ro"]').attr("href","https://www.wall-street.ro").attr("target","_blank"); //jQuery('a[href*="portfolio=start-up-ro"]').attr("href","https://www.start-up.ro").attr("target","_blank"); //jQuery('a[href*="portfolio=green-start-up-ro"]').attr("href","https://green.start-up.ro").attr("target","_blank"); //jQuery('a[href*="portfolio=retail-ro"]').attr("href","https://www.retail.ro").attr("target","_blank"); //jQuery('a[href*="portfolio=futurebanking-ro"]').attr("href","https://www.futurebanking.ro").attr("target","_blank"); //jQuery('a[href*="portfolio=garbo-ro"]').attr("href","https://www.garbo.ro").attr("target","_blank"); //jQuery('a[href*="portfolio=kudika"]').attr("href","https://www.kudika.ro").attr("target","_blank"); //jQuery('a[href*="portfolio=9am-ro"]').attr("href","https://www.9am.ro").attr("target","_blank"); jQuery('a[href*="#donothing"]').css("cursor","default").mouseenter(function(){ jQuery(this).css("color","#000")}); jQuery('a[href*="#donothing"]').attr("href","javascript:void(0);").removeAttr("target"); </script><link rel='stylesheet' id='elementor-post-847-css' href='https://internetcorp.ro/wp-content/uploads/elementor/css/post-847.css?ver=1696505832' media='all' /> <link rel='stylesheet' id='elementor-post-97-css' href='https://internetcorp.ro/wp-content/uploads/elementor/css/post-97.css?ver=1694773356' media='all' /> <style id='core-block-supports-inline-css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='e-animations-css' href='https://internetcorp.ro/wp-content/plugins/elementor/assets/lib/animations/animations.min.css?ver=3.15.2' media='all' /> <script src="https://internetcorp.ro/wp-includes/js/dist/hooks.js?ver=5b4ec27a7b82f601224a" id="wp-hooks-js"></script> <script src="https://internetcorp.ro/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 src="https://internetcorp.ro/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.5" id="swv-js"></script> <script id="contact-form-7-js-translations"> ( function( domain, translations ) { var localeData = translations.locale_data[ domain ] || translations.locale_data.messages; localeData[""].domain = domain; wp.i18n.setLocaleData( localeData, domain ); } )( "contact-form-7", {"translation-revision-date":"2025-02-20 16:24:12+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2);","lang":"ro"},"This contact form is placed in the wrong place.":["Acest formular de contact este plasat \u00eentr-un loc gre\u0219it."],"Error:":["Eroare:"]}},"comment":{"reference":"includes\/js\/index.js"}} ); </script> <script id="contact-form-7-js-before"> var wpcf7 = { "api": { "root": "https:\/\/internetcorp.ro\/wp-json\/", "namespace": "contact-form-7\/v1" } }; </script> <script src="https://internetcorp.ro/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.5" id="contact-form-7-js"></script> <script src="https://internetcorp.ro/wp-content/themes/qutiiz/assets/vendors/bootstrap/js/bootstrap.min.js?ver=5.0.0" id="bootstrap-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/bootstrap-select/js/bootstrap-select.min.js?ver=1669210417" id="bootstrap-select-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/bxslider/jquery.bxslider.min.js?ver=1669210417" id="jquery-bxslider-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/countdown/countdown.min.js?ver=1669210417" id="countdown-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/isotope/isotope.js?ver=1669210417" id="isotope-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/jarallax/jarallax.min.js?ver=1669210417" id="jarallax-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/jquery-ajaxchimp/jquery.ajaxchimp.min.js?ver=1669210417" id="jquery-ajaxchimp-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/jquery-appear/jquery.appear.min.js?ver=1669210417" id="jquery-appear-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/jquery-easing/jquery.easing.min.js?ver=1669210417" id="jquery-easing-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/jquery-magnific-popup/jquery.magnific-popup.min.js?ver=1669210417" id="jquery-magnific-popup-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/jquery-circle-progress/jquery.circle-progress.min.js?ver=1669210417" id="jquery-circle-progress-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/odometer/odometer.min.js?ver=1669210417" id="odometer-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/owl-carousel/owl.carousel.min.js?ver=1669210417" id="owl-carousel-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/swiper/swiper.min.js?ver=1669210417" id="swiper-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/wow/wow.js?ver=1669210417" id="wow-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/vendors/sharer/sharer.min.js?ver=1669210417" id="sharer-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/qutiiz-addon/assets/js/qutiiz-addon.js?ver=1669210417" id="qutiiz-addon-script-js"></script> <script src="https://internetcorp.ro/wp-content/themes/qutiiz/assets/js/qutiiz-theme.js?ver=1744058891" id="qutiiz-theme-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/elementor/assets/js/webpack.runtime.js?ver=3.15.2" id="elementor-webpack-runtime-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/elementor/assets/js/frontend-modules.js?ver=3.15.2" id="elementor-frontend-modules-js"></script> <script src="https://internetcorp.ro/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.js?ver=4.0.2" id="elementor-waypoints-js"></script> <script src="https://internetcorp.ro/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":"Partajeaz\u0103 pe Facebook","shareOnTwitter":"Partajeaz\u0103 pe Twitter","pinIt":"Partajeaz\u0103 pe Pinterest","download":"Descarc\u0103","downloadImage":"Descarc\u0103 imaginea","fullscreen":"Ecran \u00eentreg","zoom":"M\u0103re\u0219te","share":"Partajeaz\u0103","playVideo":"Ruleaz\u0103 videoul","previous":"Anterioar\u0103","next":"Urm\u0103toare","close":"\u00cenchide","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Diapozitivul anterior","a11yCarouselNextSlideMessage":"Diapozitivul urm\u0103tor","a11yCarouselFirstSlideMessage":"Acesta este primul diapozitiv","a11yCarouselLastSlideMessage":"Acesta este ultimul diapozitiv","a11yCarouselPaginationBulletMessage":"Mergi la diapozitiv"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Portret mobil","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":"Ecran lat","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}},"version":"3.15.2","is_static":false,"experimentalFeatures":{"e_dom_optimization":true,"e_optimized_assets_loading":true,"e_optimized_css_loading":true,"additional_custom_breakpoints":true,"landing-pages":true},"urls":{"assets":"https:\/\/internetcorp.ro\/wp-content\/plugins\/elementor\/assets\/"},"swiperClass":"swiper-container","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":2177,"title":"InternetCorp%20-%20Brand%20New%20Media%20-%20RO%20-%20InternetCorp","excerpt":"","featuredImage":false}}; </script> <script src="https://internetcorp.ro/wp-content/plugins/elementor/assets/js/frontend.js?ver=3.15.2" id="elementor-frontend-js"></script> </body> </html>

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