Digitálne vzdelávanie

Tvoj spôsob

Digitálne vzdelávanie

Tvoj spôsob

BE spája vzdelávanie vedené odborníkmi a inteligentné vzdelávacie nástroje do jedného digitálneho zážitku.

Potrebujete pomoc?

Objavte BE

Srdcom je praktická vzdelávacia platforma.
Okolo neho inteligentné nástroje, ktoré podporia vašu cestu.
Žiadne skratky, len skutočné učenie.

Základný zážitok

Interaktívna vzdelávacia platforma

Každý sa učí inak. Preto sme skombinovali živé relácie, gamifikované nástroje a sledovanie pokroku, aby sme vám pomohli učiť sa čo najlepšie.

Je to viac ako obsah. Je to kompletný systém navrhnutý tak, aby pomohol veciam zapadnúť.

Navrhnuté tak, aby viedla. Vytvorený na podporu.

Nástroje, ktoré urýchľujú učenie

Inteligentné nástroje a vzdelávanie vedené odborníkmi prinášajú do procesu učenia väčšiu jasnosť – pomáhajú vám skúmať nápady, rozumieť zložitým témam a pokračovať v učení vlastným tempom.

Interaktívna finančná gramotnosť

Pochopiť peniaze

Premeňte zložité finančné témy na niečo, čo môžete preskúmať krok za krokom. Interaktívne moduly, vedené aktivity a praktické cvičenia vám pomôžu pochopiť myšlienky za každodennými finančnými rozhodnutiami.

Čo očakávať:

.step1-container { padding-top: 20px; max-width: 420px; width: 100%; height: 113px; } .step1-wrapper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; position: relative; height: 40px; } .step1-progress-line { width: 90%; position: absolute; top: 50%; left: 4%; right: 10%; height: 4px; background: rgba(255, 255, 255, 0.6); z-index: 1; transform: translateY(-50%); } .step1-progress-fill { height: 100%; background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); width: 0%; transition: none; border-radius: 3px; position: relative; } .step1-progress-fill.animating { transition: width linear; } .step1-item { width: 24px; height: 24px; display: flex; align-items: center; position: relative; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; } .step1-item.active { width: 40px; height: 40px; } .step1-circle { width: 24px; height: 24px; background: #fff; display: flex; align-items: center; justify-content: center; color: #020617; font-weight: bold; font-size: 14px; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border-radius: 8px; } .step1-item.active .step1-circle { background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); color: white; width: 40px; height: 40px; border-radius: 8px; font-size: 20px; } @keyframes shimmer { 0% { transform: translateX(-20px); } 100% { transform: translateX(20px); } } .step1-content { text-align: left; position: relative; } .step1-text { display: none; opacity: 0; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(20px); } .step1-text.active { display: block; opacity: 1; transform: translateY(0); } .step1-des { font-size: 12px; line-height: 150%; font-weight: 100; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } .step1-title { font-size: 16px; line-height: 150%; font-weight: 700; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } @keyframes shimmerVertical { 0% { transform: translateY(-20px); } 100% { transform: translateY(20px); } } .step1-title { font-size: 24px; } @media (max-width: 768px) { .step1-title { font-size: 16px; } }
1
2
3

Štruktúrované moduly

Interaktívne aktivity

Praktické scenáre

class AnimatedSteps1 { constructor(container) { this.container = container; this.steps = container.querySelectorAll('.step1-item'); this.stepTexts = container.querySelectorAll('.step1-text'); this.continuousProgressFill = container.querySelector('.step1-progress-fill'); this.totalSteps = this.steps.length; this.currentStep = 0; this.duration = 10; // 10 seconds this.interval = null; this.timeLeft = this.duration; this.init(); } init() { this.startTimer(); } startTimer() { this.startProgressAnimation(); this.interval = setInterval(() => { this.timeLeft--; if (this.timeLeft = this.totalSteps - 1) { // We're at the last step, reset to first step to create loop this.resetToFirstStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } else { // Move to next step this.nextStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } } }, 1000); } startProgressAnimation() { if (this.continuousProgressFill) { // Reset progress line this.continuousProgressFill.classList.remove('animating'); // Calculate step-to-step progress // Show progress only up to current step, then animate to next step const currentStepProgress = (this.currentStep / (this.totalSteps - 1)) * 100; const nextStepProgress = ((this.currentStep + 1) / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${currentStepProgress}%`; this.continuousProgressFill.style.height = '100%'; // Force reflow this.continuousProgressFill.offsetHeight; // Start animation to next step this.continuousProgressFill.classList.add('animating'); this.continuousProgressFill.style.transitionDuration = `${this.duration}s`; // Only animate if we're not at the last step if (this.currentStep { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Reset continuous progress line if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); this.continuousProgressFill.style.width = '0%'; this.continuousProgressFill.style.height = '100%'; this.continuousProgressFill.style.transitionDuration = ''; } // Set first step as active this.currentStep = 0; this.steps[0].classList.add('active'); this.stepTexts[0].classList.add('active'); this.timeLeft = this.duration; } nextStep() { if (this.currentStep = 0 && stepIndex { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Set continuous progress line based on target step if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); const progressPercentage = (stepIndex / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${progressPercentage}%`; this.continuousProgressFill.style.height = '100%'; } // Set completed steps for (let i = 0; i { circle.addEventListener('click', () => { animatedSteps.goToStep(index); }); }); });

Vzdelávanie vedené odborníkmi

Učte sa od ľudí, ktorí túto tému poznajú

Choďte ďalej než len teóriu s pedagógmi, ktorí oživujú myšlienky. Pridajte sa k živým reláciám alebo sa učte na požiadanie v oblasti biznisu, umelej inteligencie, finančnej gramotnosti, osobného rozvoja a myslenia.

Čo očakávať:

.steps2-container { padding-top: 20px; max-width: 420px; width: 100%; height: 113px; } .steps2-wrapper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; position: relative; height: 40px; } .steps2-progress-line { width: 90%; position: absolute; top: 50%; left: 4%; right: 10%; height: 4px; background: rgba(255, 255, 255, 0.6); z-index: 1; transform: translateY(-50%); } .steps2-progress-fill { height: 100%; background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); width: 0%; transition: none; border-radius: 3px; position: relative; } .steps2-progress-fill.animating { transition: width linear; } .steps2-item { width: 24px; height: 24px; display: flex; align-items: center; position: relative; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; } .steps2-item.active { width: 40px; height: 40px; } .steps2-circle { width: 24px; height: 24px; background: #fff; display: flex; align-items: center; justify-content: center; color: #020617; font-weight: bold; font-size: 14px; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border-radius: 8px; } .steps2-item.active .steps2-circle { background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); color: white; width: 40px; height: 40px; border-radius: 8px; font-size: 20px; } @keyframes shimmer { 0% { transform: translateX(-20px); } 100% { transform: translateX(20px); } } .steps2-content { text-align: left; position: relative; } .steps2-text { display: none; opacity: 0; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(20px); } .steps2-text.active { display: block; opacity: 1; transform: translateY(0); } .steps2-des { font-size: 12px; line-height: 150%; font-weight: 100; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } .steps2-title { font-size: 16px; line-height: 150%; font-weight: 700; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } @keyframes shimmerVertical { 0% { transform: translateY(-20px); } 100% { transform: translateY(20px); } } .steps2-title { font-size: 24px; } @media (max-width: 768px) { .steps2-title { font-size: 16px; } }
1
2
3

Živé nahrávky

Lekcie na požiadanie

Rôznorodé predmety

class AnimatedSteps2 { constructor(container) { this.container = container; this.steps = container.querySelectorAll('.steps2-item'); this.stepTexts = container.querySelectorAll('.steps2-text'); this.continuousProgressFill = container.querySelector('.steps2-progress-fill'); this.totalSteps = this.steps.length; this.currentStep = 0; this.duration = 10; // 10 seconds this.interval = null; this.timeLeft = this.duration; this.init(); } init() { this.startTimer(); } startTimer() { this.startProgressAnimation(); this.interval = setInterval(() => { this.timeLeft--; if (this.timeLeft = this.totalSteps - 1) { // We're at the last step, reset to first step to create loop this.resetToFirstStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } else { // Move to next step this.nextStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } } }, 1000); } startProgressAnimation() { if (this.continuousProgressFill) { // Reset progress line this.continuousProgressFill.classList.remove('animating'); // Calculate step-to-step progress // Show progress only up to current step, then animate to next step const currentStepProgress = (this.currentStep / (this.totalSteps - 1)) * 100; const nextStepProgress = ((this.currentStep + 1) / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${currentStepProgress}%`; this.continuousProgressFill.style.height = '100%'; // Force reflow this.continuousProgressFill.offsetHeight; // Start animation to next step this.continuousProgressFill.classList.add('animating'); this.continuousProgressFill.style.transitionDuration = `${this.duration}s`; // Only animate if we're not at the last step if (this.currentStep { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Reset continuous progress line if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); this.continuousProgressFill.style.width = '0%'; this.continuousProgressFill.style.height = '100%'; this.continuousProgressFill.style.transitionDuration = ''; } // Set first step as active this.currentStep = 0; this.steps[0].classList.add('active'); this.stepTexts[0].classList.add('active'); this.timeLeft = this.duration; } nextStep() { if (this.currentStep = 0 && stepIndex { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Set continuous progress line based on target step if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); const progressPercentage = (stepIndex / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${progressPercentage}%`; this.continuousProgressFill.style.height = '100%'; } // Set completed steps for (let i = 0; i { circle.addEventListener('click', () => { animatedSteps.goToStep(index); }); }); });

AI Learning Companion

Pokračujte v rozhovore

Zvedavosť nenasleduje harmonogram. Pýtajte sa otázky, vracajte sa k kľúčovým myšlienkam a skúmajte súvisiace témy prostredníctvom AI poháňaného vzdelávacieho rozhovoru, ktorý je dostupný kedykoľvek chcete učiť sa.

Čo očakávať:

.steps3-container { padding-top: 20px; max-width: 420px; width: 100%; height: 113px; } .steps3-wrapper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; position: relative; height: 40px; } .steps3-progress-line { width: 90%; position: absolute; top: 50%; left: 4%; right: 10%; height: 4px; background: rgba(255, 255, 255, 0.6); z-index: 1; transform: translateY(-50%); } .steps3-progress-fill { height: 100%; background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); width: 0%; transition: none; border-radius: 3px; position: relative; } .steps3-progress-fill.animating { transition: width linear; } .steps3-item { width: 24px; height: 24px; display: flex; align-items: center; position: relative; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; } .steps3-item.active { width: 40px; height: 40px; } .steps3-circle { width: 24px; height: 24px; background: #fff; display: flex; align-items: center; justify-content: center; color: #020617; font-weight: bold; font-size: 14px; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border-radius: 8px; } .steps3-item.active .steps3-circle { background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); color: white; width: 40px; height: 40px; border-radius: 8px; font-size: 20px; } @keyframes shimmer { 0% { transform: translateX(-20px); } 100% { transform: translateX(20px); } } .steps3-content { text-align: left; position: relative; } .steps3-text { display: none; opacity: 0; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(20px); } .steps3-text.active { display: block; opacity: 1; transform: translateY(0); } .steps3-des { font-size: 12px; line-height: 150%; font-weight: 100; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } .steps3-title { font-size: 16px; line-height: 150%; font-weight: 700; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } @keyframes shimmerVertical { 0% { transform: translateY(-20px); } 100% { transform: translateY(20px); } } .steps3-title { font-size: 24px; } @media (max-width: 768px) { .steps3-title { font-size: 16px; } }
1
2
3

Konverzačné učenie

Jasné vysvetlenia

Skúmanie tém

class AnimatedSteps3 { constructor(container) { this.container = container; this.steps = container.querySelectorAll('.steps3-item'); this.stepTexts = container.querySelectorAll('.steps3-text'); this.continuousProgressFill = container.querySelector('.steps3-progress-fill'); this.totalSteps = this.steps.length; this.currentStep = 0; this.duration = 10; // 10 seconds this.interval = null; this.timeLeft = this.duration; this.init(); } init() { this.startTimer(); } startTimer() { this.startProgressAnimation(); this.interval = setInterval(() => { this.timeLeft--; if (this.timeLeft = this.totalSteps - 1) { // We're at the last step, reset to first step to create loop this.resetToFirstStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } else { // Move to next step this.nextStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } } }, 1000); } startProgressAnimation() { if (this.continuousProgressFill) { // Reset progress line this.continuousProgressFill.classList.remove('animating'); // Calculate step-to-step progress // Show progress only up to current step, then animate to next step const currentStepProgress = (this.currentStep / (this.totalSteps - 1)) * 100; const nextStepProgress = ((this.currentStep + 1) / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${currentStepProgress}%`; this.continuousProgressFill.style.height = '100%'; // Force reflow this.continuousProgressFill.offsetHeight; // Start animation to next step this.continuousProgressFill.classList.add('animating'); this.continuousProgressFill.style.transitionDuration = `${this.duration}s`; // Only animate if we're not at the last step if (this.currentStep { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Reset continuous progress line if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); this.continuousProgressFill.style.width = '0%'; this.continuousProgressFill.style.height = '100%'; this.continuousProgressFill.style.transitionDuration = ''; } // Set first step as active this.currentStep = 0; this.steps[0].classList.add('active'); this.stepTexts[0].classList.add('active'); this.timeLeft = this.duration; } nextStep() { if (this.currentStep = 0 && stepIndex { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Set continuous progress line based on target step if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); const progressPercentage = (stepIndex / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${progressPercentage}%`; this.continuousProgressFill.style.height = '100%'; } // Set completed steps for (let i = 0; i { circle.addEventListener('click', () => { animatedSteps.goToStep(index); }); }); });

Vyhlásenie

Produkty BE poskytujú iba vzdelávací obsah a vzdelávacie nástroje. Neposkytujú finančné, investičné ani odborné poradenstvo a nie je zaručený žiadny konkrétny vzdelávací alebo finančný výsledok. Obsah a funkcie sa líšia podľa predplatného.

Učiť sa to

Pohybuje sa s tebou

Vždy budeš mať podporu, keď ju budeš potrebovať, a priestor na rast.

Začni tým, čo ťa zaujíma. Objavuj vlastným tempom. Vráť sa vždy, keď ťa zvedavosť zavedie niekam novým.

Vyberte si svoju vzdelávaciu skúsenosť

Porovnajte predplatné plány a nájdite kombináciu EdTech produktov a funkcií, ktorá vám vyhovuje.

Často kladené otázky o produktoch BE Club

Aké produkty ponúka BE (BE Club)?

BE (BE Club) ponúka tri EdTech produkty: Interaktívnu finančnú gramotnosť, Odborne vedené vzdelávanie a AI Learning Companion.

Ide o digitálnu vzdelávaciu skúsenosť, ktorá využíva štruktúrované moduly, vedené aktivity a praktické cvičenia, aby finančné koncepty boli ľahšie preskúmateľné a pochopiteľné.

Kombinuje živé sedenia a lekcie na požiadanie vedené pedagógmi z oblasti podnikania, umelej inteligencie, finančnej gramotnosti, osobného rozvoja a myslenia.

Je to nástroj na učenie poháňaný umelou inteligenciou, ktorý umožňuje používateľom klásť otázky, vracať sa k kľúčovým myšlienkam a skúmať súvisiace témy prostredníctvom rozhovorov.

Dostupné témy zahŕňajú podnikanie, umelú inteligenciu, finančnú gramotnosť, osobný rozvoj a nastavenie mysle. Obsah sa líši podľa predplatného.

Produkty sú navrhnuté pre rôzne úrovne skúseností, s vedeným obsahom, ktorý umožňuje používateľom začať so základnými témami a postupovať vlastným tempom.

Áno. Dostupné vzdelávacie formáty zahŕňajú živé lekcie s pedagógmi a lekcie na požiadanie. Rozvrhy, predmety a dostupnosť sa líšia podľa predplatného.

Produkty BE (BE Club) sa doručujú digitálne prostredníctvom predplatného. Prístupové údaje sú poskytované po aktivácii vybraného predplatného.

Každé predplatné poskytuje prístup k vybraným produktom, obsahu a funkciám. Dôkladne si preštudujte detaily plánu, keďže prístup sa líši podľa predplatného a lokality.

Ceny sa líšia podľa vybraného predplatného a lokality. Navštívte stránku Ceny a porovnajte aktuálne dostupné možnosti.

Oprávnené nákupy môžu mať nárok na vrátenie peňazí do 7 alebo 14 dní, v závislosti od vašej lokality a príslušných podmienok. Pred nákupom si prečítajte Politiku vrátenia peňazí.

AI Learning Companion je navrhnutý na podporu učenia, no odpovede generované AI môžu byť neúplné alebo nepresné. Dôležité informácie by mali byť vždy nezávisle overené

Vyhlásenie

Produkty BE (BE Club) sú poskytované výhradne na vzdelávacie účely a nepredstavujú finančné, investičné, právne ani daňové poradenstvo. Obsah generovaný AI môže byť neúplný alebo nepresný a mal by byť nezávisle overený. Nie je zaručený žiadny konkrétny vzdelávací, profesionálny alebo finančný výsledok.

Vyžiadajte si ukážku produktu

Vyplňte tento krátky formulár a požiadajte o personalizovanú ukážku produktu.

Ak vás odporučila nezávislá pridružená spoločnosť, môže vás kontaktovať priamo. Ak nie, spojíme vás s jedným z našich produktových špecialistov, ktorý vás prevedie funkciami a odpovie na vaše otázky.

Toto nie je predajná ponuka – len príležitosť preskúmať produkt v akcii a zistiť, ako vyhovuje vašim potrebám.

  • Ak vás odporučil nezávislý partner BE, prosím, zadajte ich meno alebo občiansky preukaz.
  • Ak ste prišli cez odkaz na odporúčanie, toto pole sa vám môže automaticky vyplniť.
  • Ak nemáte odporúčanie, nechajte ho prázdne a BE vám pridelí affiliate partnera.

Ďakujem!

Vaša žiadosť o demo bola prijatá.

Ak vás odporučila nezávislá pridružená spoločnosť, môže vás kontaktovať priamo. V opačnom prípade vás spojíme s produktovým špecialistom, ktorý vás prevedie ukážkou vybraného produktu a odpovie na vaše otázky.

Do 24 až 48 hodín sa vám ozveme e-mailom alebo WhatsApp s podrobnosťami o ukážke.

Vyžiadajte si ukážku produktu

Vyplňte tento krátky formulár a požiadajte o personalizovanú ukážku produktu.

Ak vás odporučila nezávislá pridružená spoločnosť, môže vás kontaktovať priamo. Ak nie, spojíme vás s jedným z našich produktových špecialistov, ktorý vás prevedie funkciami a odpovie na vaše otázky.

Toto nie je predajná ponuka – len príležitosť preskúmať produkt v akcii a zistiť, ako vyhovuje vašim potrebám.

  • Ak vás odporučil nezávislý partner BE, prosím, zadajte ich meno alebo občiansky preukaz.
  • Ak ste prišli cez odkaz na odporúčanie, toto pole sa vám môže automaticky vyplniť.
  • Ak nemáte odporúčanie, nechajte ho prázdne a BE vám pridelí affiliate partnera.

Ďakujem!

Vaša žiadosť o demo bola prijatá.

Ak vás odporučila nezávislá pridružená spoločnosť, môže vás kontaktovať priamo. V opačnom prípade vás spojíme s produktovým špecialistom, ktorý vás prevedie ukážkou vybraného produktu a odpovie na vaše otázky.

Do 24 až 48 hodín sa vám ozveme e-mailom alebo WhatsApp s podrobnosťami o ukážke.

Začnite svoju cestu vzdelávania – žiadny tlak, žiadny záväzok

Formulár žiadosti o konzultáciu

Vyplňte tento krátky formulár a požiadajte o bezplatnú vzdelávaciu konzultáciu.

Ak vás odporučila nezávislá pridružená spoločnosť, môže vás kontaktovať priamo. Ak nie, môžeme vás spojiť s jedným z našich vyškolených partnerov, ktorý vám odpovie na vaše otázky a prevedie vás dostupnými balíkmi.

Toto nie je predajná ponuka ani finančná konzultácia – len nezáväzná príležitosť dozvedieť sa viac.

  • Ak vás odporučil nezávislý partner BE, prosím, zadajte ich meno alebo občiansky preukaz.
  • Ak ste prišli cez odkaz na odporúčanie, toto pole sa vám môže automaticky vyplniť.
  • Ak nemáte odporúčanie, nechajte ho prázdne a BE vám pridelí affiliate partnera.
Informačná ikona

Zverejnenie

Affiliate partneri sú nezávislí a prevádzkujú vlastné podnikanie. Nie sú zamestnancami ani zástupcami platformy. Všetky zdieľané usmernenia sú len vzdelávacie. Nie sú poskytované žiadne finančné poradenstvo ani záruky na produkty.

Ďakujem!

Vaša žiadosť bola prijatá.

Ak vás odporučila nezávislá pridružená spoločnosť, môže vás kontaktovať priamo.
V opačnom prípade môžeme vašu žiadosť postúpiť kvalifikovanej nezávislej pridruženej spoločnosti, ktorá sa na vás obráti a pomôže vám odpovedať na vaše otázky.

Ozveme sa vám do 24 až 48 hodín e-mailom alebo WhatsApp.

Upozornenie: Nezávislé pridružené spoločnosti nie sú zamestnancami spoločnosti.

Prevádzkujú vlastné podniky a poskytujú poradenstvo výlučne na vzdelávacie účely. Nie je potrebné žiadne finančné poradenstvo ani nákup.