@charset "UTF-8";
/*-----------------------------------------------------------------------------------

  Updates für Aktiva Wenden modular
  Theme Name: Feux - Agency HTML Template
  Author: wprealizer 
  Support: 
  Description: 
  Version: 1.0

-----------------------------------------------------------------------------------

/* Basis-Stile für die Menü-Links */
.main-menu a {
    text-decoration: none; /* Entfernt Unterstreichung */
    color: #fff;
}

/* Allgemeine Header-Stile */
header {
    position: relative;
    z-index: 100;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent; /* Kein dunkler Hintergrund mehr */
    padding: 15px 20px;
}

/* Setze die Breite des Logos auf 125 für alle Bildschirmgrößen */
.header-logo img {
    width: 125px!important; /* Breite auf 125 setzen */
    height: auto; /* Höhe automatisch anpassen */
}

/* normal 101px aus style.css entfernt und hier hereingefügt ist die eigentliche Breite des Logos */
.header-area-4 .header-logo {
    width: 125px!important;
}

/* Hauptnavigationsmenü */
.header-nav {
    display: flex;
}

.header-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav ul li {
    margin-right: 20px;
}

.header-nav ul li a {
    color: #333; /* Dunkle Farbe für Desktop-Links */
    text-decoration: none;
    text-transform: none;
    font-weight: bold;
}

/* Burger Icon Styling */
#burger-menu {
    display: none;
    cursor: pointer;
    z-index: 99999;
    position: absolute;
    top: 20px;
    right: 20px;
}

#burger-menu span {
    display: block;
    width: 30px;
    height: 4px;
    margin: 6px 0;
    background-color: var(--primary, #0E0F11); /* Verwende die primäre Farbe für das Burger-Icon */
}

/* Mobile Menü Vorhang */
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-100%); /* Standardmäßig ausgeblendet */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99998;
}

#mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-menu ul li {
    margin: 20px 0;
}

#mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    text-transform: none; /* Entferne das Uppercase für Mobile */
}

/* X-Schließen-Button */
/*#close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 99999;
}*/

/* X-Schließen-Button */
#close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 99999;
    /*display: none;*/  /* Standardmäßig ausgeblendet */
}

#mobile-menu.open #close-menu {
    display: block;  /* Nur anzeigen, wenn das Menü geöffnet ist */
}


/* Styling für mobile Geräte */
@media (max-width: 1024px) {
    /* Alle Tablets wie Smartphones behandeln */
    .header-nav {
        display: none; /* Verstecke das normale Menü auf Tablets */
    }

    #burger-menu {
        display: block; /* Zeige das Burger Icon auf Tablets */
    }

    /* Mobile Menü für Tablets */
    #mobile-menu {
        transform: translateY(0); /* Menü erscheint */
    }

    /* Links im mobilen Menü */
    #mobile-menu ul li a {
        font-size: 18px; /* Schriftgröße für Tablets */
        padding: 1rem 5%;
    }

    /* Sicherstellen, dass das Menü links nicht unterstrichen ist */
    .mean-container .mean-nav ul li a {
        text-decoration: none;
        color: #0c1923;
    }

    /* Menü-Link Hover-Effekt */
    .mean-container .mean-nav ul li a:hover {
        background-color: #252525;
        background: rgba(255, 255, 255, .1);
    }

    /* Navigationsleiste für Tablets korrekt positionieren */
    .mean-container .mean-nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #0c1923;
    }

    /* Sicherstellen, dass der Probetraining-Link auf Tablets ausgeblendet wird */
    .header-button {
        display: none;
    }

    /* Für iPad und Galaxy Tab */
    .mean-container .meanmenu-reveal {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 9999;
        color: #0E0F11; /* Burger Icon in der korrekten Farbe */
        background-color: transparent;
        font-size: 35px; /* Größerer Button */
        cursor: pointer;
    }

    /* Links in der Navigation auf Tablets */
    .mean-container .mean-nav ul li {
        padding: 1rem 5%;
    }

    /* Sicherstellen, dass Links im Burger Menü nicht unterstrichen sind */
    .mean-container .mean-nav ul li a {
        text-decoration: none;
        color: #0c1923;
    }
}

/* Probetraining Link ohne Unterstreichen und gleiche Textfarbe wie die anderen Links */
.header-button a.t-btn.t-btn-primary {
    text-decoration: none; /* Entfernt das Unterstreichen */
    color: #0c1923; /* Setze die gleiche Textfarbe wie bei den anderen Desktop-Links */
}

/* Probetraining Link bei Hover - weiße Schriftfarbe */
.header-button a.t-btn.t-btn-primary:hover {
    color: white; /* Ändert die Schriftfarbe auf weiß bei Hover */
}
/* Mobile Menü Standard ausgeblendet - es öffnet sich nur beim Klick auf das Burger-Icon */
@media (max-width: 1024px) {
    #mobile-menu {
        transform: translateY(-100%); /* Standardmäßig ausgeblendet */
    }

    /* Sicherstellen, dass das Burger Icon immer sichtbar ist */
    .mean-container .meanmenu-reveal {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 9999;
        color: #0E0F11; /* Burger Icon in der gewünschten Farbe */
        background-color: transparent;
        font-size: 35px;
        cursor: pointer;
    }

    /* Sicherstellen, dass die Navigation korrekt bleibt */
    .mean-container .mean-nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #0c1923;
        z-index: 9998;
    }
}

/* blendet den Balken oberhalb ganz oben oberhalb des Headers auf Mobilen Geräten aus überschreibt meanmenu.min.css */
.mean-container .mean-bar {
    background-color: transparent!important;
}

/* Entfernt Unterstreichung von den Links in der Navigation */
.header-nav .main-menu a {
    text-decoration: none;
}

/* Entfernt das hellgraue Grid-Muster (shape-18.webp) im Hero-Bereich */
.hero-area-3 .area-shape-1 {
    display: none !important;
    visibility: hidden !important;
}

/* Aktiver Menüpunkt ScrollSpy */
.main-menu a.active {
    color: var(--theme) !important; /* greift deine neongrüne Akzentfarbe */
    font-weight: 600;
    position: relative;
}

.main-menu a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--theme);
    border-radius: 2px;
}

/* === MOBILE HEADER FIX FÜR ONEPAGE (Feux Template) === */
@media (max-width: 991px) {
  header,
  .header-area,
  .main-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .main-menu ul {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* === FEUX SIDETOGGLE / "HELLO THERE" DEAKTIVIEREN === */
.header-offcanvas,
.header-offcanvas-bg,
.header-offcanvas-area,
.header__menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* --- LINKS IN DER WORK-AREA WEISS MIT DRAW-UNDERLINE --- */
.work-area-3 .work-box-3 .content h3.title a {
    color: #fff !important;
    text-decoration: none !important;
    position: relative;
}

.work-area-3 .work-box-3 .content h3.title a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.work-area-3 .work-box-3 .content h3.title a:hover::after {
    width: 100%;
}

/* --- LINKS IM CTA-BUTTON "Probetraining" WEISS MIT DRAW-UNDERLINE --- */
.footer-area-3 .cta-area-2-inner a {
    color: #fff !important;
    text-decoration: none !important;
    display: inline-block;
    position: relative;
}

.footer-area-3 .cta-area-2-inner a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-area-3 .cta-area-2-inner a:hover::after {
    width: 100%;
}

/* --- LINKS IN DER BLOG-AREA SCHWARZ MIT DRAW-UNDERLINE --- */
.blog-area-3 .blogs-wrapper .blog-3 .title a,
.blog-area-3 .blogs-wrapper .blog-3 .thumb a {
    color: inherit !important;
    text-decoration: none !important;
    position: relative;
}

.blog-area-3 .blogs-wrapper .blog-3 .title a::after,
.blog-area-3 .blogs-wrapper .blog-3 .thumb a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    /* gleiche Farbe wie Text */
    transition: width 0.3s ease;
}

.blog-area-3 .blogs-wrapper .blog-3 .title a:hover::after,
.blog-area-3 .blogs-wrapper .blog-3 .thumb a:hover::after {
    width: 100%;
}

/* --- Entfernt alle Rahmen und Schatten um Section-Titel --- */
.section-title-wrapper,
.section-title-wrapper * {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* --- Spezifisch für Focus-Elemente innerhalb von Title Wrapper --- */
.section-title-wrapper:focus,
.section-title-wrapper:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* --- Entfernt graue Linie und Fokusrahmen von Titel-Link, falls vorhanden --- */
.section-title-wrapper .section-title:focus,
.section-title-wrapper .section-title:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* --- LINKS IM FOOTER INNERHALB VON .text (ohne Unterstreichung, weiß) --- */
.footer-area-3 .copyright-text p a {
    color: #fff !important;
    text-decoration: none !important;
}

/* --- HOVER-EFFEKT FÜR LINKS IM FOOTER (weiß unterstrichen) --- */
.footer-area-3 .copyright-text p a:hover {
    color: #fff !important;
    text-decoration: underline !important;
    text-decoration-color: #fff !important;
    /* Weißer Hover-Unterstrich */
}

/* process area 4 spalten style */
.process-area-4-spalten .section-header {
    margin-top: 5px;
}

.process-area-4-spalten .title-wrapper {
    margin-top: 11px;
}

.process-area-4-spalten .process-wrapper-box {
    margin-top: 58px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1919px) {
    .process-area-4-spalten .process-wrapper-box {
        margin-top: 38px;
    }
}

@media only screen and (max-width: 1199px) {
    .process-area-4-spalten .process-wrapper-box {
        margin-top: 28px;
    }
}

.process-area-4-spalten .process-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 991px) {
    .process-area-4-spalten .process-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .process-area-4-spalten .process-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.process-box-4-spalten {
    background-color: #E4E4E4;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    padding: 31px 30px 38px;
    transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
    .process-box-4-spalten {
        padding: 21px 20px 28px;
    }
}

.process-box-4-spalten:hover {
    border-color: var(--primary);
    background-color: transparent;
}

.process-box-4-spalten:hover .number {
    color: transparent;
}

.process-box-4-spalten .title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.42;
}

@media only screen and (max-width: 1199px) {
    .process-box-4-spalten .title {
        font-size: 20px;
    }
}

.process-box-4-spalten .text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 29px;
}

.process-box-4-spalten .number {
    font-size: 124px;
    font-weight: 400;
    line-height: 0.76;
    letter-spacing: -0.01em;
    margin-top: 90px;
    display: inline-block;
    color: transparent;
    background: linear-gradient(225.52deg, #CAA473 -0.42%, #A06AC8 84.05%);
    -webkit-background-clip: text;
    background-clip: text;
    color: #D0D0D0;
    transition: all 0.5s;
}

@media only screen and (max-width: 1919px) {
    .process-box-4-spalten .number {
        font-size: 94px;
        margin-top: 70px;
    }
}

@media only screen and (max-width: 1399px) {
    .process-box-4-spalten .number {
        font-size: 74px;
        margin-top: 60px;
    }
}

/*pre tag weiße Schrift Zeiten*/
.text-wrapper pre {
    color: white;
    font-family: inherit; /* Falls du die Schriftart des Templates übernehmen möchtest */
}

/* Untertitel in der Work-Area weiß */
#aktivawendenausstattung .section-subtitle {
    color: #fff !important;
}

/* Headline-Größe im Bereich "AktivaWenden Ausstattung" */
#aktivawendenausstattung .section-title {
    font-size: 54px !important;
    line-height: 1.8 !important; /* Etwas luftiger als 1.20 oder 1.11 und mit Vorrang */
	text-align: left !important; /* linksbündig */
}

/* --- FOOTER COPYRIGHT LINKS TEMPLATE-STIL --- */
.copyright-area {
    background-color: transparent; /* Template-Hintergrund beibehalten */
}

.copyright-text p {
    color: #fff;
    margin: 0;
}

/* Links im Footer weiß und ohne Unterstreichung */
.copyright-nav-list a {
    color: #fff !important;
    text-decoration: none !important;
    position: relative;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Abstand zwischen den Footer-Links */
.copyright-nav-list li {
    display: inline-block;
    margin-left: 20px;
}

/* Hover-Effekt: feine weiße Linie wie im Template */
.copyright-nav-list a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.copyright-nav-list a:hover::after {
    width: 100%;
}

/* Keine blauen oder violetten Farben für besuchte/aktive Links */
.copyright-nav-list a:visited,
.copyright-nav-list a:active {
    color: #fff !important;
    text-decoration: none !important;
}

/* service area 3 style important Stlye für runde Ecken überschreiben ausgelagert */
.services-area-3 {
    border-radius: 40px 40px 40px 40px!important;
}
@media only screen and (max-width: 1199px) {
    .services-area-3 {
        border-radius: 20px 20px 20px 20px!important;
    }
}

/* work area 3 style important Stlye für runde Ecken überschreiben ausgelagert */
.work-area-3 {
    background-color: #181A1E;
    border-radius: 40px 40px 40px 40px!important;
}
@media only screen and (max-width: 1199px) {
    .work-area-3 {
        border-radius: 20px 20px 20px 20px!important;
    }
}

/* brand area style important Stlye für runde Ecken überschreiben ausgelagert */
.brand-area {
    border-radius: 40px 40px 40px 40px!important;
}
@media only screen and (max-width: 1199px) {
    .brand-area {
        border-radius: 20px 20px 20px 20px!important;
    }
}

/* blog-3 Testimonial style important Stlye für kleinere Schrift überschreiben ausgelagert */
.blog-3 .title {
    font-size: 18px!important;
}
@media only screen and (max-width: 1399px) {
    .blog-3 .title {
        font-size: 16px!important;
    }
}

/* macht in Safari im Footer eine Scrollbar und manchmal auch in Chrome überschreiben ausgelagert */
::-webkit-scrollbar {
    /*width: 5px;*/
	display: none!important;
}

/*contact area style für probetraining in Action Farbe*/ 
.contact-area--action {
    background-color: var(--hellgrau);
}

.text-contact--primary {
  color: var(--primary)!important; /*Überschreibt nur im Contact die p Text Farbe*/
}

/* --- LINKS IN DER CONTACT-AREA-ACTION SCHWARZ MIT DRAW-UNDERLINE --- */
.contact-area--action .contact-list a {
    color: inherit !important;           /* Erbt die Farbe vom übergeordneten Element */
    text-decoration: none !important;     /* Keine Standard-Unterstreichung */
    position: relative;                   /* Notwendig für das Pseudo-Element */
}

/* --- DRAW-UNDERLINE-EFFEKT FÜR LINKS IN CONTACT-AREA-ACTION --- */
.contact-area--action .contact-list a::after {
    content: '';                          /* Kein Text, nur eine Linie */
    position: absolute;                   /* Absolut positioniert */
    bottom: 0;                            /* Linie direkt am unteren Rand */
    left: 0;                              /* Linie beginnt am linken Rand */
    width: 0%;                             /* Startet mit einer Breite von 0% */
    height: 2px;                          /* Höhe der Linie */
    background-color: var(--primary);     /* Unterstreichungsfarbe */
    transition: width 0.3s ease;          /* Animierte Breitenänderung */
}

/* --- LINE GROWS ON HOVER --- */
.contact-area--action .contact-list a:hover::after {
    width: 100%;                          /* Linie wächst auf 100% Breite */
}

/* --- TEXTFARBE BEIM HOVER ÄNDERN --- */
.contact-area--action .contact-list a:hover {
    color: var(--primary) !important;     /* Textfarbe beim Hover */
}

/* Entfernt die schwarze Outline und Border von allen t-btn-circle und t-btn-group in der contact-area--action */
.contact-area--action .t-btn-group,
.contact-area--action .t-btn-circle {
    outline: none !important;    /* Entfernt die Outline */
    border: none !important;     /* Entfernt den Rand */
}

/* Entfernt die schwarze Outline und Border vom Text-Span im Button */
.contact-area--action .t-btn-primary {
    outline: none !important;    /* Entfernt die Outline */
    border: none !important;     /* Entfernt den Rand */
}

.standort-container {
    width: 100%;
    max-width: 651px; /* Maximalbreite des Bildes */
    margin: 0 auto; /* Zentriert das Bild */
    position: relative;
}

/*für Standortanzeige ohne Google Maps*/
.standort-container img {
    width: 100%;
    height: auto; /* Bildverhältnis bleibt gleich */
    transition: 0.3s ease; /* Sanfter Übergang zwischen den Bildern */
}

.standort-container img:hover {
    cursor: pointer; /* Zeigt den Cursor als Hand */
}

/*Specific Textwrapper im Footer*/
/* Standard-Linkfarbe für Links innerhalb von .specific-text-wrapper ohne Unterstreichung */
.specific-text-wrapper a {
    color: #fff;  /* Weißer Text */
    text-decoration: none;  /* Keine Unterstreichung standardmäßig */
    position: relative;  /* Für die Animation der Unterstreichung */
    overflow: hidden;  /* Verhindert, dass die Animation außerhalb des Links angezeigt wird */
}

/* Hover-Effekt für Links in diesem speziellen Block */
.specific-text-wrapper a:hover {
    color: #fff;  /* Text bleibt weiß */
}

/* Die Underline-Animation */
.specific-text-wrapper a::after {
    content: ''; /* Inhalt der Pseudo-Elementes */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Dicke der Unterstreichung */
    background-color: #fff; /* Farbe der Unterstreichung */
    transform: scaleX(0);  /* Startwert: Unterstreichung unsichtbar */
    transform-origin: bottom right;  /* Startposition der Animation */
    transition: transform 0.3s ease-out;  /* Animationseffekt */
}

/* Beim Hover wird die Unterstreichung eingeblendet */
.specific-text-wrapper a:hover::after {
    transform: scaleX(1);  /* Unterstreichung wird eingeblendet */
    transform-origin: bottom left;  /* Endposition der Animation */
}

/* Entfernt den senkrechten Strich nur in der spezifischen Liste */
.copyright-nav-list-custom li {
    border-right: none !important; /* Entfernt den Strich zwischen den Listenelementen */
}

.copyright-nav-list-custom li:last-child {
    border-right: none !important; /* Stellt sicher, dass der letzte Link auch keinen Strich hat */
}

/*copyright-nav-list-custom*/
/* Überschreibe die bestehenden Styles nur für die spezifische Liste */
.footer-area-3 .copyright-nav-list-custom {
    display: flex;
    gap: 10px 48px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-area-3 .copyright-nav-list-custom li {
    font-size: 11px;
    font-weight: 400;
    line-height: 28px;
    color: var(--white);
    position: relative;
}

/* Entfernt den senkrechten Strich */
.footer-area-3 .copyright-nav-list-custom li:not(:first-child):before {
    content: none;  /* Keine Striche zwischen den Listenelementen */
}

/* Links sollen bei Hover weiß bleiben und unterstrichen werden */
.footer-area-3 .copyright-nav-list-custom li a {
    color: inherit;
    text-decoration: none;
}

.footer-area-3 .copyright-nav-list-custom li a:hover {
    color: var(--white); /* Weiß bei Hover */
    text-decoration: underline; /* Unterstreichen bei Hover */
}

/*cookiefrei Stempel*/
/* Container für das runde Symbol */
.cookie-stamp {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background-color: transparent;
    overflow: hidden;
    animation: rotateStamp 20s linear infinite;
}

/* Das drehende PNG-Bild */
.rotating-image {
    width: 90px; /* Passe die Größe an */
    height: 90px; /* Passe die Größe an */
    animation: rotateImage 20s linear infinite;
}

/* Dreh-Animation */
@keyframes rotateImage {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
