Цифровое обучение

Твой путь

Цифровое обучение

Твой путь

BE объединяет обучение под руководством экспертов и умные инструменты обучения в одном цифровом опыте.

Откройте для себя BE

В основе лежит практическая образовательная платформа.
Вокруг него умные инструменты , которые помогут вам в путешествии.
Никаких коротких путей, только реальное обучение.

Основной опыт

Интерактивная образовательная платформа

Каждый учится по-разному. Вот почему мы объединили сеансы в режиме реального времени, игровые инструменты и отслеживание прогресса, чтобы помочь вам учиться наилучшим образом.

Это больше, чем просто контент. Это полноценная система, разработанная для того, чтобы помочь вещам работать.

Создан, чтобы направлять. Создан для поддержки.

Инструменты, ускоряющие обучение

Умные инструменты и обучение под руководством экспертов придают больше ясности процессу обучения — помогая исследовать идеи, понимать сложные темы и продолжать обучение в своём темпе.

Интерактивная финансовая грамотность

Разберитесь с деньгами

Превратите сложные финансовые темы в то, что можно изучать шаг за шагом. Интерактивные модули, управляемые занятия и практические упражнения помогают понять идеи, лежащие в основе повседневных финансовых решений.

Чего ожидать:

.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

Структурированные модули

Интерактивные активности

Практические сценарии

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); }); }); });

Образование, управляемое экспертами

Учитесь у тех, кто знает предмет

Выйдите за рамки теории с педагогами, которые воплощают идеи в жизнь. Присоединяйтесь к живым сессиям или изучайте по запросу бизнес, искусственный интеллект, финансовую грамотность, личностное развитие и мышление.

Чего ожидать:

.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

Живые сессии

Уроки по требованию

Разнообразные предметные направления

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); }); }); });

Учебный помощник по искусственному интеллекту

Продолжайте разговор

Любопытство не подчиняется расписанию. Задавайте вопросы, возвращайтесь к ключевым идеям и исследуйте связанные темы через обучающую беседу на базе искусственного интеллекта, доступную в любое время, когда хотите учиться.

Чего ожидать:

.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

Разговорное обучение

Ясные объяснения

Исследование темы

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); }); }); });

Отказ

Продукты BE предоставляют только образовательный контент и учебные инструменты. Они не предоставляют финансовых, инвестиционных или профессиональных консультаций, и не гарантируется конкретный учебный или финансовый результат. Содержание и функции различаются в зависимости от подписки.

Обучение этому

Движется вместе с тобой

У тебя всегда будет Поддержка, когда она понадобится, и пространство для роста.

Начни с того, что тебя интересует. Исследуй в своём темпе. Возвращайся, когда любопытство приведёт тебя в новое место.

Выбирайте свой опыт обучения

Сравните подписочные планы и найдите сочетание продуктов и функций EdTech, которое подходит именно вам.

Часто задаваемые вопросы о продуктах BE Club

Какие продукты предлагает BE (BE Club)?

BE (BE Club) предлагает три продукта EdTech: интерактивную финансовую грамотность, образование под руководством экспертов и AI Learning Companion.

Это цифровой образовательный опыт, который использует структурированные модули, управляемые задания и практические упражнения, чтобы облегчить изучение и понимание финансовых концепций.

Он сочетает живые занятия и уроки по запросу, которые проводят педагоги по бизнесу, искусственному интеллекту, финансовой грамотности, личностному развитию и мышлению.

Это инструмент обучения на базе искусственного интеллекта, который позволяет пользователям задавать вопросы, возвращаться к ключевым идеям и исследовать связанные темы через разговор.

Доступные предметы включают бизнес, искусственный интеллект, финансовую грамотность, личностное развитие и мышление. Содержание зависит от подписки.

Продукты разработаны для разных уровней опыта, с направляемым контентом, который позволяет пользователям начинать с базовых тем и продвигаться в своём собственном темпе.

Да. Доступные форматы обучения включают живые занятия с преподавателями и занятия по запросу. Расписание, предметы и доступность зависят от подписки.

Продукты BE (BE Club) доставляются в цифровом виде через подписочные планы. Данные доступа предоставляются после активации выбранной подписки.

Каждая подписка предоставляет доступ к выбранным продуктам, контенту и функциям. Внимательно изучите детали плана, так как доступ зависит от подписки и местоположения.

Цены варьируются в зависимости от выбранной подписки и местоположения. Посетите страницу с ценами, чтобы сравнить доступные вам варианты.

Подходящие покупки могут получить возврат в течение 7 или 14 дней, в зависимости от вашего местоположения и применимых условий. Ознакомьтесь с политикой возврата средств перед покупкой.

AI Learning Companion разработан для поддержки обучения, но ответы, сгенерированные ИИ, могут быть неполными или неточными. Важная информация всегда должна быть независимо проверена

Отказ

Продукты BE (BE Club) предоставляются исключительно в образовательных целях и не являются финансовой, инвестиционной, юридической или налоговой консультацией. Контент, созданный ИИ, может быть неполным или неточным и должен быть независимо проверен. Не гарантируется конкретный учебный, профессиональный или финансовый результат.

Запросить демонстрацию продукта

Заполните эту короткую форму, чтобы запросить персонализированную демонстрацию продукта.

Если вас направил независимый партнер, он может связаться с вами напрямую. Если нет, мы свяжем вас с одним из наших специалистов по продуктам, который расскажет вам о функциях и ответит на ваши вопросы.

Это не коммерческое предложение, а просто возможность изучить продукт в действии и понять, насколько он соответствует вашим потребностям.

  • Если вас рекомендовал независимый партнер BE, пожалуйста, введите его имя или удостоверение личности.
  • Если вы пришли по ссылке на рекомендации, это поле может заполнить вас автоматически.
  • Если у вас нет рекомендации, оставьте его пустым, и BE назначит вам партнера .

Спасибо!

Ваш запрос на демо получен.

Если вас направил независимый партнер, они могут связаться с вами напрямую. В противном случае мы свяжем вас со специалистом по продукту, который проведет вас через демонстрацию выбранного вами продукта и ответит на ваши вопросы.

Вы получите ответ в течение 24–48 часов по электронной почте или WhatsApp с информацией о демонстрации.

Запросить демонстрацию продукта

Заполните эту короткую форму, чтобы запросить персонализированную демонстрацию продукта.

Если вас направил независимый партнер, он может связаться с вами напрямую. Если нет, мы свяжем вас с одним из наших специалистов по продуктам, который расскажет вам о функциях и ответит на ваши вопросы.

Это не коммерческое предложение, а просто возможность изучить продукт в действии и понять, насколько он соответствует вашим потребностям.

  • Если вас рекомендовал независимый партнер BE, пожалуйста, введите его имя или удостоверение личности.
  • Если вы пришли по ссылке на рекомендации, это поле может заполнить вас автоматически.
  • Если у вас нет рекомендации, оставьте его пустым, и BE назначит вам партнера .

Спасибо!

Ваш запрос на демо получен.

Если вас направил независимый партнер, они могут связаться с вами напрямую. В противном случае мы свяжем вас со специалистом по продукту, который проведет вас через демонстрацию выбранного вами продукта и ответит на ваши вопросы.

Вы получите ответ в течение 24–48 часов по электронной почте или WhatsApp с информацией о демонстрации.

Начните свое обучение – без давления, без обязательств

Форма запроса на консультацию

Заполните эту короткую форму, чтобы запросить бесплатную образовательную консультацию.

Если вас направил независимый партнер, он может связаться с вами напрямую. Если нет, мы можем связать вас с одним из наших обученных партнеров, который ответит на ваши вопросы и поможет вам разобраться в доступных пакетах.

Это не коммерческое предложение или финансовая консультация — просто ни к чему не обязывающая возможность узнать больше.

  • Если вас рекомендовал независимый партнер BE, пожалуйста, введите его имя или удостоверение личности.
  • Если вы пришли по ссылке на рекомендации, это поле может заполнить вас автоматически.
  • Если у вас нет рекомендации, оставьте его пустым, и BE назначит вам партнера .
Иконка информации

Раскрытие информации

Аффилированные организации являются независимыми и ведут собственный бизнес. Они не являются сотрудниками или представителями платформы. Вся общая рекомендация носит только образовательные знания. Никаких финансовых консультаций или гарантий продукта не предоставляются.

Спасибо!

Ваш запрос получен.

Если вас направил независимый партнер, он может связаться с вами напрямую.
В противном случае мы можем передать ваш запрос квалифицированному независимому партнеру, который свяжется с вами, чтобы помочь ответить на ваши вопросы.

Вы получите ответ в течение 24–48 часов по электронной почте или WhatsApp.

Обратите внимание: независимые партнеры не являются сотрудниками компании.

Они управляют собственным бизнесом и предоставляют рекомендации исключительно в образовательных целях. Никаких финансовых консультаций или покупок не требуется.