Group of companies operating in the Metal and Construction sectors

It is a corporate roof brand representing the common vision of Çakıroğlu Metal and Çakıroğlu Yapı.

ÇAKIROĞLU METAL

Metal production, trade and industrial solutions

CAKIROGLU YAPI

Construction, engineering and contracting projects

const bg1 = document.querySelector(‘.cover_background_1’); const bg2 = document.querySelector(‘.cover_background_2’); const bg1Btn = document.getElementById(‘bg1-btn’); const bg2Btn = document.getElementById(‘bg2-btn’); bg1Btn.addEventListener(‘mouseenter’, () => { bg1.classList.add(‘active’); }); bg1Btn.addEventListener(‘mouseleave’, () => { bg1.classList.remove(‘active’); }); bg2Btn.addEventListener(‘mouseenter’, () => { bg2.classList.add(‘active’); }); bg2Btn.addEventListener(‘mouseleave’, () => { bg2.classList.remove(‘active’); });