realizations

We deliver green quality

SCROLL

ABOUT US

BTS Development Sp. z o.o. is part of the Koimex S.A. capital group, which has been pursuing an investment strategy in commercial real estate for many years. We integrate the activities of the developer, design office, general contractor and administrator in one comprehensive process.

BTS
DEVELOPMENT

in numbers
0
Completed
Investment projects
0
mln PLN
Value of investment
0
thousand m2
Usable area
of completed projects
0
ha
Land bank

Sustainable
development

BTS Development is a leader in implementing the principles of sustainable development in the area of implemented investments and applied technologies, building pro-environmental awareness among employees and supporting the local community.
more
SPRAWDŹ

What we do

We tailor warehouse and production properties tailor-made according to the expectations of our customers with preservation:
highest quality standards
modern technologies
sustainable development policies
Optimizing the production and logistics of our customers
learn more

Implemented projects

browse all
function initPopupGallery() {
    setTimeout(function() {
        const mainSliderID = document.getElementById('popup-gallery__main-slider').getAttribute('data-script-id');
        const subSliderID = document.getElementById('popup-gallery__sub-slider').getAttribute('data-script-id');

        const prevArrow = document.querySelector('.popup-gallery__arrow--previous');
        const nextArrow = document.querySelector('.popup-gallery__arrow--next');
        const subSliderContainer = document.getElementById('sub-slider__container');

        const mainSlider = window.bricksData?.splideInstances[mainSliderID] || false;
        const subSlider = window.bricksData?.splideInstances[subSliderID] || false;

        const numberOfSlides = mainSlider.length;

        checkResponsiveness();
        window.addEventListener('resize', checkResponsiveness);

        subSlider.options = {
            breakpoints: {
                479: {
                    perPage: 3
                },
                768: {
                    perPage: 4
                },
                992: {
                    fixedWidth: 170
                },
                10000: {
                    fixedWidth: 170
                }
            }
        }

        if (mainSlider && subSlider && nextArrow && prevArrow) {
            mainSlider.on('move', function(newIndex) {
                newIndex += 1;
                subSlider.go(newIndex);
            });

            // Zsynchronizuj zmiany w subSlider z mainSlider (jeśli konieczne)
            subSlider.on('move', function(newIndex) {
                newIndex -= 1;
                mainSlider.go(newIndex);
            });

            prevArrow.addEventListener('click', function() {
                mainSlider.go('-1');
            });

            nextArrow.addEventListener('click', function() {
                mainSlider.go('+1');
            });
        }

        function checkResponsiveness() {
            const viewportWidth = window.innerWidth;

            if (viewportWidth > 767) {
                subSlider.options = {
                    fixedWidth: 170
                }
                if (numberOfSlides !== 0) {
                    if (numberOfSlides < 4) {
                        var maxWidth = (numberOfSlides * 170) + (35 * (numberOfSlides - 1));
                        console.log(maxWidth);
                        subSliderContainer.style.maxWidth = maxWidth + 'px';
                    } else {
                        subSliderContainer.style.maxWidth = '785px';
                    }
                }
            } else {
                subSliderContainer.style.maxWidth = '100%';
                subSlider.options = {
                    fixedWidth: undefined,
                    perPage: 3
                }
            }
        }
    }, 100)

}