We believe in the power of sport to build community and that the love of sport brings people together. The “BeStrong family” is made up of sports-loving people who are united by own weight training in our fitness parks. We are also delighted to see athletes becoming more active on social media, often sharing their progress with us.
Join the BeStrong family on social media too:
BeStrong official Facebook page
BeStrong SC was founded in 2014 with the aim of developing a culture of outdoor physical activity. This is achieved through recreational, competitive outdoor activities in fitness parks.
In 2018, the football department was established, which also provides members and competitors with opportunities for physical activity and sport. Our team is currently playing in the third and second division of the Hajdú-Bihar county championship. In addition to the adult level, we also have children competing in the Bozsik programme in the U7, U9 and U11 age groups. This will be expanded in the summer and we would like to be present in all junior categories from next season.
In addition to football, the association has organised and plans to continue organising sporting events and programmes, especially street workout and outdoor sports.
As an ever-growing company, we have a responsibility to operate sustainably and actively seek to meet our environmental obligations.
We focus on energy efficiency and the use of renewable energy sources to reduce our carbon footprint. To this end, we have installed solar panels in our industrial park.
Explore the BESTRONG site that suits your preferences!
// Function to set a cookie with the specified name, value, and expiration time function setCookie(name, value, days) { var expires = new Date(); expires.setTime(expires.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = name + "=" + value + ";expires=" + expires.toUTCString() + ";path=/"; }
// Function to check if the closing cookie exists function checkClosingCookie() { var cookies = document.cookie.split(";");
for (var i = 0; i < cookies.length; i++) { var cookie = cookies[i].trim(); if (cookie.indexOf("spu_closing_18884") === 0) { return true; // Closing cookie exists } }return false; // Closing cookie does not exist }// Function to handle the popup display function displayPopup() { // Check if the closing cookie exists if (!checkClosingCookie()) { // Show your popup code here // Replace the following line with your actual popup display code console.log("Popup should be displayed now!");// Set the closing cookie for 365 days setCookie("spu_closing_18884", "true", 365); } }// Call the displayPopup function on page load window.onload = function() { displayPopup(); };