B2B-Services

Advised GKK on the investment by encoviva - a portfolio company of Greenpeak

MIND acted as the advisor to GKK on the investment by encoviva, supporting the transaction from strategic preparation to successful closing.

With the support of Jannis Scheufen and his team, we implemented the entire process smoothly and with a clear focus. Our vision was fully understood and executed with professionalism at every stage. We couldn’t have asked for a better partner.

René Kissel

Founding Partner

From the very beginning, it was important to us to find a partner who not only enables us to create added value for our clients on an operational level, but who also aligns with us culturally and personally – someone who will carry forward our proven structures, partnerships, and values. With encoviva and Dr. Rico Pires, we have found exactly that partner. We look forward to working together to rethink construction projects across all service areas and to further enhance planning and building processes.

Matthias Klatt

Founding Partner

The encoviva Group is a growth-oriented network of leading companies offering consulting and engineering services in the building sector. The aim of the partnership is to develop holistic, sustainable and digitally connected solutions — from planning to technical advice to implementation.

Founded in 1992, GKK has built a nationwide reputation for quality, reliability, and precision in the construction industry, operating from five locations across Germany. With a team of around 60 experienced professionals, the company oversees complex projects from tendering and construction management through to site supervision.

Involved team members

Competence and character – the foundation of our team.

Jannis Scheufen

Managing Partner

An analytically minded strategist with technical excellence. With precise judgment, deep technical expertise, and decisive execution, he leads complex transactions from analysis through to successful closing - always with a pragmatic focus on solutions that create real value for investors.

What is my company worth?

With our valuation tool, you receive a solid initial assessment. Our experts are available for deeper advisory support.

15+

years experience

up to 40%

better transaction results

95%

of deals above price expectations

An initial conversation brings more clarity than extensive research.

Are you looking for a partner who understands you, stands firm in negotiations, and goes the extra mile for you throughout the entire process?

Then schedule a non-binding call with the MIND executive team.

Schedule a call
Klar, dafür gibt es eine einfache Lösung in Swiper JS, oft in Verbindung mit einer kleinen JavaScript-Prüfung der Anzahl der Slides. Da du Webflow und CMS verwendest, musst du die Prüfung im Custom Code (vor dem schließenden -Tag) der Seite hinzufügen.Hier sind zwei gängige Ansätze, um die Navigationspfeile ($`.swiper-button-prev`$ und $`.swiper-button-next`$) auszublenden, wenn es nur einen Eintrag gibt:1. Swiper-Konfiguration ($`watchOverflow: true`$)Die einfachste Methode ist, die Option $watchOverflow: true$ in den Swiper-Einstellungen zu verwenden. Diese Option sorgt dafür, dass Navigations- und Paginationselemente automatisch ausgeblendet werden, wenn die Slides die Größe des Containers nicht überschreiten (was bei nur einem Slide und $slidesPerView: 1\$ der Fall ist).Dein Swiper-Initialisierungscode sollte so aussehen (passe Klassen und Optionen nach Bedarf an):JavaScriptvar mySwiper = new Swiper('.swiper-container', { // ... andere Optionen ... navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, // FÜGE DIES HINZU watchOverflow: true, // ... }); 2. Manuelle Überprüfung der Slide-Anzahl (JavaScript)Falls die $watchOverflow$-Option nicht wie gewünscht funktioniert oder du mehr Kontrolle benötigst, kannst du die Anzahl der Slides im Collection List Wrapper (dein $`.swiper-wrapper`$) manuell überprüfen und die Navigations-Elemente per JavaScript verstecken:Navigations-Container identifizieren: Gib deinen Navigationspfeilen (oder deren übergeordnetem Wrapper) eine eindeutige Klasse, z.B. $cms-slider-navigation$, oder verwende die bereits existierenden Klassen $`.swiper-button-prev`$ und $`.swiper-button-next`$.Code in Webflow einfügen: Füge den folgenden Code im Tab "Before tag" (Vor dem $``$-Tag) der Seiteneinstellungen oder in den Site Settings ein:JavaScript