Heads up! We only email from @empat.tech — anything else is a scam.

Talent Base

We are looking for talents!

Dana K.
Recruiter
Published on
November 28, 2025

Now that you’re in our Talent Base, make yourself comfortable — let us explain how it works.

The fact that you’re already here means you’re interested in Empat, but at the moment there isn’t a matching role for us to collaborate. The good news is that we’re growing fast, and the position you’re looking for may open soon.

When we launch a new search, this pool will be the very first place we’ll look for candidates. Think of it as a fast track to join Empat, as long as we share the same values and your skills fit the role.

All you need to do is submit your resume and give it a little time.

We hope to welcome you soon as part of the Empat team!

Apply
<.script> // Добавьте этот код в Settings -> Custom Code -> Before window.addEventListener('DOMContentLoaded', (event) => { // Находим все кнопки "Податься" const applyButtons = document.querySelectorAll('.apply-button'); // Замените на ваш класс кнопки // Находим скрытое поле в форме для вакансии const jobInput = document.querySelector('#job-title-input'); // Замените на ID вашего input applyButtons.forEach(button => { button.addEventListener('click', function(e) { // Получаем название вакансии из атрибута data-job-title const jobTitle = this.getAttribute('data-job-title'); // Устанавливаем значение в скрытое поле формы if (jobInput) { jobInput.value = jobTitle; } }); }); });