Realizacja wielkoskalowych projektów OZE 1

Wykonawstwo pod klucz na terenie Polski i Europy.
<script>
    var container = document.getElementById('home-hero__overflow-container');
    //const slide1 = document.getElementById('home-hero__overflow-1st');
    //const slide2 = document.getElementById('home-hero__overflow-2nd');

    container.scrollTop = 0;

    // Zablokuj możliwość przewijania do góry
    container.addEventListener('wheel', function(e) {
        if (e.deltaY < 0) {
            e.preventDefault();
        }
        setTimeout(function() {
            if (container.scrollTop !== 0) {
                console.log(container.scrollTop);
            }
        }, 500)

    });
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
    const heroBg = document.getElementById('home-hero__bg');
    const heroContainer = document.getElementById('home-hero__container');

    function updateBgWidth() {
        const computedStyle = window.getComputedStyle(heroContainer);
        const rightMargin = parseFloat(computedStyle.marginRight); // Konwertujemy na liczbę
        let bgWidth = window.innerWidth - rightMargin;
        console.log(bgWidth);
    }

    window.addEventListener('resize', updateBgWidth);
    updateBgWidth();
});

</script>

We offer a full range of technical and consulting services.

EPC Solar, with 30 years of experience in the construction and engineering industry, offers comprehensive solutions for the construction and maintenance of photovoltaic farms, wind farms, and energy storage facilities.

As a leader in renewable energy infrastructure, our experienced team of designers and engineers ensures the highest technical standards and operational efficiency through a full spectrum of technical consulting services and exceptional construction solutions.
development of construction and execution projects
execution and supervision of subcontractors
technical and financial analysis of photovoltaic farms
technical expertise and opinions
obtaining building permits and connection conditions
developing concepts and productivity simulations for installations
preparing cost estimates
conducting project training and author supervision
wykonawstwo i nadzór nad podwykonawcami
uzyskiwanie pozwolenia na budowę i uzyskiwanie warunków przyłączeniowych
opracowywanie koncepcji i symulacji produktywności instalacji
prowadzenie szkoleń projektowych i nadzorów autorskich
Opracowanie koncepcji i symulacji produktywności
analiza techniczna i finansowa farm fotowoltaicznych
ekspertyzy i opinie techniczne
opracowywanie kosztorysów

Kompleksowa oferta dla OZE

Comprehensive Offer for Renewable Energy Sources (RES)

We implement large-scale renewable energy projects and turnkey execution in Poland and Europe.

We feel responsible for the quality of the natural environment and the future of the next generations

Get to know our company

Implemented projects

Request a Quote

* Required Fields
Consent to each provision is voluntary. Any consent can be withdrawn at any time without any negative consequences. Withdrawing consent does not affect the legality of processing carried out before its withdrawal.

Please be informed that in order to best tailor our service offerings to your needs, the proposal may be presented by one of the following companies: Zielona-Energia.com Logistics Sp. z o.o., EDP Energia Polska Sp. z o.o., or Soon Energy Poland Sp. z o.o.
<script>

    document.addEventListener('DOMContentLoaded', function() {
        const emailField = document.getElementById('contact-form__email');
        const emailInput = emailField.querySelectorAll('input')[0];

        if (emailInput) {
            console.log('Dodano event listener');
            emailInput.addEventListener('input', function () {
                console.log('Wywołano Event Listener "Input"');
                const email = emailInput.value;
                if (isValidEmail(email)) {
                    console.log('Email poprawny');
                    emailInput.classList.remove('contact-form__email--incorrect');
                } else {
                    console.log('Email niepoprawny');
                    emailInput.classList.add('contact-form__email--incorrect');
                }
            });
        }

        function isValidEmail(email) {
            const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
            return emailRegex.test(email);
        }
    })

</script>