/* bluenetdata GmbH - Master Stylesheet */

:root{
    --primary:#338ACC;
    --primary-dark:#003F84;
    --light:#f5f7fa;
    --dark:#222;
    --text:#555;
    --max-width:1200px;
    --radius:18px;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --blnd-gradient:linear-gradient(
        90deg,
        #338ACC,
        #EF7F1A,
        #89BD2F
    );
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.legal-page h1{
    margin-bottom:2rem;
}
.legal-page h2{
    margin-top:2rem;
    margin-bottom:1rem;
}

.legal-body{
    background:var(--light);
}

.legal-page{
   max-width:900px;
    margin:4rem auto;
    padding:3rem;
    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Segoe UI, Arial, sans-serif;
    color:var(--dark);
    line-height:1.7;
    background:#fff;
}

.container{
    max-width:var(--max-width);
    margin:auto;
    padding:0 2rem;
}

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#FFF;
    box-shadow:0 2px 15px rgba(0,0,0,.50);

}

nav{
    max-width:var(--max-width);
    margin:auto;
    padding:1rem 2rem;
}

.nav-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.logo img{
    height:60px;
    width:auto;
    display:block;
}

.logo:hover{
    transition:all .3s ease;
    transform:scale(1.01);
}

nav ul{
    display:flex;
    list-style:none;
    gap:2rem;
}

nav a{
    text-decoration:none;
    color:var(--dark);
    font-weight:500;
}

nav a:hover{
    color:var(--primary);
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.2);
    z-index:1;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero-bg{
	background-color:#111;
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 2.5s ease;
    z-index:0;
}

.hero-bg.active{
    opacity:1;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero-indicator{
    display:flex;
    gap:6px;
    width:150px;
    margin:0;
}

.indicator-track{
    flex:1;
    height:3px;
    background:rgba(255,255,255,.15);
    border-radius:2px;
    overflow:hidden;
}

.indicator-fill{
	height:100%;
}

.indicator-1{
    animation:firstSegment 10.5s linear infinite;
    background-color:#338ACC;
}

@keyframes firstSegment{
    0%{
        width:0%;
    }

    33.33%{
        width:100%;
    }

    100%{
        width:100%;
    }
}

.indicator-2{
    animation:secondSegment 10.5s linear infinite;
    background-color:#EF7F1A;
}

@keyframes secondSegment{
    0%{
        width:0%;
    }

    33.33%{
        width:0%;
    }
    
    66.66%{
        width:100%;
    }

    100%{
        width:100%;
    }
}

.indicator-3{
    animation:thirdSegment 10.5s linear infinite;
    background-color:#89BD2F;
}

@keyframes thirdSegment{
    0%{
        width:0%;
    }

    66.66%{
        width:0%;
    }

    100%{
        width:100%;
    }
}

.hero{
	background-color:#111;
    min-height:calc(100vh - 140px);
    display:flex;
    align-items:center;

    position:relative;
    overflow:hidden;

    color:white;
}

.hero-content{
    max-width:950px;
}

.hero h1{
    font-size:4.0rem;
    margin-bottom:1rem;
}

.hero p{
    font-size:1.3rem;
    margin-bottom:2rem;
}

.button{
    display:inline-block;
    background:var(--primary);
    color:white;
    padding:1rem 2rem;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.button:hover{
    background:var(--primary-dark);
}

section{
    padding:6rem 0;
	scroll-margin-top:140px;
}

section:nth-child(even):not(.stats):not(.highlight):not(.legal-page){
    background:var(--light);
}

.section-header{
    text-align:center;
    margin-bottom:4rem;
}

.section-header h2{
    font-size:2.4rem;
    margin-bottom:1rem;
}

.section-header p{
    color:var(--text);
    max-width:1100px;
    margin:auto;
}

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}

.grid-2 img{
    width:100%;
	height:450px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
	object-fit:cover;
	object-position:center;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.grid-2 img:hover{
    transform:scale(1.02);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
    margin-top:2rem;
}

.card{
    display:flex;
    flex-direction:column;
    height:100%;
    background:white;
    padding:2rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
	transition:all .3s ease;
}

.card:hover,
.step:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.card h3{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--primary);
}

.highlight{
    background:var(--primary);
    color:white;
    padding:4rem 2rem;
    text-align:center;
}

.highlight h2{
    font-size:2.5rem;
    margin-bottom:1rem;
}

.process{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:1rem;
    margin-top:3rem;
}

.step{
    background:white;
	min-width:220px;
    padding:2rem;
    border-radius:var(--radius);
    text-align:center;
    box-shadow:var(--shadow);
	transition:all .3s ease;
}

.step-number{
    font-size:1.25rem;
    font-weight:bold;
    color:var(--primary);
}

.callback-widget.collapsed{
    transform:translateX(calc(100% - 20px));
    transition:transform .3s ease;
    position:fixed;
}

.callback-widget.collapsed:hover{
    transform:translateX(0);
}

.callback-widget.collapsed > p,
.callback-widget.collapsed .contact-item{
    opacity:0;
    pointer-events:none;
}

.callback-widget.collapsed:hover > p,
.callback-widget.collapsed:hover .contact-item{
    opacity:1;
    pointer-events:auto;
}

.callback-widget.collapsed:hover::before{
    opacity:0;
}

.callback-widget.collapsed::before{
    content:'Fragen? Einfach melden.';
    opacity:1;
	transition:opacity .15s ease;
	position:absolute;
    left:20px;
    top:75%;
    transform:
        translateY(-50%)
        rotate(-90deg);
    transform-origin:left center;
    white-space:nowrap;
    font-weight:100;
    color:#000;
}

.vcard{
	margin-top:10px;
	color:#fff;
	text-align:center;
    transition:transform .45s ease,
    box-shadow .45s ease;
}

.vcard a{
    display:flex;
    align-items:center;
	justify-content:center;
 	background:var(--primary);
    color:#fff !important;
    text-decoration:none;
	padding:10px;
    border-radius:12px;
    font-weight:500;
}

.vcard:hover{
    transition:all .3s ease;
    transform:scale(1.05);
}

span.vicon{
	margin-right:1rem;
}

.vicon{
    display:flex;
    align-items:center;
    justify-content:center;
	margin:0;
    width:32px;
    height:32px;
    flex-shrink:0;
}

.vicon svg, 
.vicon img{
    width:100%;
    height:100%;
	object-fit:contain;
}

.job-divider img:hover,
.job-highlight img:hover,
.timeline-image img:hover,
.history-highlight img:hover{
    transform:scale(1.02);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.job-divider img,
.job-highlight img,
.timeline-image img,
.history-highlight img{
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.footer-content{
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:4rem;
	justify-items:center;
}

.footer-partners h3,
.footer-links-area h3{
    margin-bottom:1rem;
}

.footer-logo-grid{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
}

.footer-logo-grid img{
    height:135px;
    width:auto;
    filter:invert(1) grayscale(1);
    opacity:.7;
    transition:all .3s ease;
}

.footer-logo-grid img:hover{
	transform:scale(1.1);
	filter:none;
    opacity:1;
}

.footer-links{
    display:inline-block;
    text-align:left;
    list-style:none;
    padding-left:0.25rem;
    margin:0;
    border-left:2px solid rgba(255,255,255,.15);
}

.footer-links li{
    margin-bottom:.5rem;
}

.footer-links a{
    display:block;
	color:#fff;
    transition:all .3s ease;
}

.footer-links a:hover{
    transform:translateX(4px);
}

.footer-social{
    display:flex;
    gap:1rem;
}

.footer-social a{
    color:#fff;
}

.footer-bottom{
    margin-top:2rem;
    padding-top:1rem;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
}

footer{
    position:relative;
    background:#000;
    color:#fff;
    padding:3rem 0 2rem;
}

.footer-top-button{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:var(--primary);
    color:#fff;
    box-shadow:var(--shadow);
    transition:.3s ease;
}

.footer-top-button:hover{
	color:#FFF;
    transform:translateX(-50%) translateY(-3px);
}

.footer-top-button svg{
    width:48px;
    height:48px;
}

.stats{
    background:var(--primary);
    color:white;
    padding:3rem 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:2rem;
    text-align:center;
}

.stat-item{
    display:flex;
    flex-direction:column;
}

.stat-number{
    font-size:2rem;
    font-weight:700;
    line-height:1;
}

.stat-label{
    margin-top:.5rem;
	font-size:0.9rem;
    opacity:.9;
}

#progress-container{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:4px;
    z-index:9999;
    background:transparent;
}

#progress-bar{
    height:100%;
    width:0;
    background:var(--blnd-gradient);
    transition:width 0.1s linear;
}

.remote-button{
    display:none;
    content: '';
    background-repeat:no-repeat; 
    background-size: contain;
    font-size: 11px;
	font-weight: 0;
	height: 45px;
	width: 150px;
	text-decoration: none;
    flex:0 0 auto;
    filter:grayscale(10%);
}

.remote-button:hover{
    color: #393A42;
    text-decoration: none;
    transform:scale(1.15);
}

.logo{
    flex:0 0 auto;
    transition:transform .45s ease,
    box-shadow .45s ease;

}

.logo-slider{
    position:relative;
    overflow:hidden;
    width:100%;
    padding:20px 0;
}

.logo-track{
    display:flex;
    align-items:center;
    width:max-content;
	will-change:transform;
    animation:scrollLogos 45s linear infinite;
	transform:translateZ(0);
	backface-visibility:hidden;
}

.logo-group{
    display:flex;
    gap:60px;
}

.logo-group:first-child{
    padding-right:60px;
}

.logo-track a{
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-track img{
    height:100px;
    width:auto;
    filter:grayscale(100%);
    opacity:.75;
    transition:.3s;
}

.logo-track img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.1);
}

@keyframes scrollLogos{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}
.logo-slider{
    overflow:hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.logo-slider:hover .logo-track{
    animation-play-state: paused;
}

#kontakt img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.contact-icon{
    width:100%;
    height:100%;
    object-fit:contain;
    border-radius:0 !Important;
    box-shadow:none;
}

#rotating-text{
    font-size:1.5rem;
    font-weight:300;
    display:inline-block;
    transition:opacity .5s ease;
    height: 120px;
}
.contact-card{
    background:white;
    padding:3rem 3rem 0 3rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:1.5rem;
    margin-bottom:2rem;
}

.contact-item h3{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--primary);
    margin-bottom:.3rem;
}

.contact-item p{
	margin:0 0 .75rem 0;
}

a{
    color:var(--primary-dark);
    text-decoration:none;
    transition:all .3s ease;
	font-weight:600;
}

a:hover{
    color:var(--primary-dark);
    text-decoration:underline;
}

.contact-item a{
    color: #000000;
}

.contact-item a:hover{
    color:var(--primary-dark);
    font-weight:600;
}

.contact-item-content{
    padding-left:44px;
}

.icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    flex-shrink:0;
}

.icon svg{
    width:100%;
    height:100%;
}

.step-icon{
    width:56px;
    height:56px;
    margin:0 auto 1rem;
    color:var(--primary);
}

.step-icon svg{
    width:100%;
    height:100%;
}

p {
    margin-bottom: 1.5rem;
}

.footer-links{
    margin-top:1rem;
}

.footer-links a{
    color:white;
    margin:0 1rem;
}

.footer-links a:hover{
    text-decoration:underline;
}

.location-note{
    color:var(--text);
    font-size:.95rem;
    margin-top:.5rem;
}

.menu a{
    position:relative;
    text-decoration:none;
    color:#666;
    font-weight:500;
}

.menu a:hover{
	color:#000;
    text-decoration:underline;
}

.menu a.active{
    color:var(--dark);
}

#nav-indicator{
    position:absolute;
    bottom:0px;
    height:2px;
    width:0;
    background:var(--blnd-gradient);
    border-radius:3px;
    transition:
        left .5s ease,
        width .5s ease;
	list-style:none;
	pointer-events:none;
	z-index:9999;

}

.callback-widget{
    position:fixed;
    right:20px;
    bottom:20px;
    width:280px;
    background:#fff;
    padding:20px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    z-index:999;
}

#menu-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    font-size:2rem;
    color:var(--dark);
}

.menu{
    display:flex;
    justify-content:center;
    gap:1rem;
    list-style:none;
	margin-top:1rem;
	padding-top:0.75rem;
	border-top:1px solid #e5e5e5;
    position:relative;
}

.legal-page	ul{
	margin-left:35px;
	margin-bottom:10px;
}

.legal-page img{
    max-width:100%;
    margin:1rem 0;
    border-radius:var(--radius);
    border:1px solid #cfd8e3;
    box-shadow:var(--shadow);
    display:block;
}

.jobs-card{
    background:#fff;
}

.job-divider{
    max-width:900px;
    margin:0 auto 4rem auto;
    padding:0;
}

.job-divider img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.job-highlight{
    max-width:900px;
    margin:0 auto 4rem auto;
	padding:3.5rem 0 0 0;
}

.job-highlight img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.job-highlight-text{
	padding:0;
	text-align:center;
}