@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&display=swap');

*{
    box-sizing:border-box;
}

html,body{
    margin:0;
    padding:0;
    overflow-x:hidden;
    font-family:Montserrat,Arial,sans-serif;
    background:#fff;
}

/* HEADER */

#header{
    background:#000;
    min-height:96px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
    position:relative;
    z-index:999;
}

.logo img{
    width:580px;
    max-width:100%;
    display:block;
}

/* MENU */

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

#navigation li{
    display:inline-block;
    margin-left:12px;
}

#navigation a{
    display:inline-block;
    color:white !important;
    text-decoration:none;
    text-transform:uppercase;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    padding:13px 18px;
    border-radius:8px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
}

#navigation a:hover{
    color:#05c3eb !important;
}

#navigation a.active,
#navigation a.current{
    background:#05c3eb !important;
    color:white !important;
}

#navigation li:last-child a{
    background:linear-gradient(135deg,#e83e8c,#ff5ca8) !important;
    color:white !important;
    border:none;
}

/* HERO */

#hero{
    min-height:720px;
    background:url(hero.jpg) center/cover no-repeat;
}

.hero-overlay{
    width:45%;
    min-height:720px;
    padding:110px 45px 80px;
    background:linear-gradient(90deg,rgba(0,0,0,0.88),rgba(0,0,0,0.62),rgba(0,0,0,0.12));
    color:white;
}

.hero-small{
    color:#05c3eb;
    font-size:16px;
    font-weight:900;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:22px;
}

.hero-title{
    font-size:64px;
    line-height:0.95;
    font-weight:900;
    text-transform:uppercase;
}

.pink-text{ color:#e83e8c; }
.blue-text{ color:#05c3eb; }

.hero-text{
    margin-top:30px;
    font-size:21px;
    line-height:1.5;
    font-weight:700;
}

.hero-btn{
    display:inline-block;
    margin-top:36px;
    background:linear-gradient(135deg,#05c3eb,#00a7d1);
    color:white !important;
    text-decoration:none;
    padding:18px 38px;
    border-radius:10px;
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:1px;
}

/* CONTENT */

#content{
    padding:70px;
    background:#fff;
}

/* SERVICES */

.desktop-services{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:0;
}

.service-slide{
    min-height:300px;
    padding:34px 28px;
    border-radius:0 0 24px 24px;
    color:white;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    box-shadow:0 18px 45px rgba(0,0,0,0.14);
}

.service-slide.blue{ background:#05c3eb; }
.service-slide.pink{ background:#e83e8c; }

.service-slide h3{
    margin:0 0 22px;
    font-size:28px;
    font-weight:900;
    text-transform:uppercase;
    color:#555;
}

.service-slide p{
    font-size:16px;
    line-height:1.65;
    color:white;
    margin:0;
}

.service-slide a{
    display:inline-block;
    margin:34px auto 0;
    background:white;
    color:#111 !important;
    padding:15px 24px;
    border-radius:10px;
    text-decoration:none;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:13px;
}

/* CONTACT BAR */

.contact-bar{
    background:#000 !important;
    color:white !important;
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;
    padding:35px 7% !important;
}

.contact-slogan{
    color:#e83e8c !important;
    font-size:30px !important;
    line-height:1.15 !important;
    font-weight:900 !important;
    font-style:italic !important;
}

.about-btn{
    display:inline-block !important;
    margin-top:16px !important;
    background:#e83e8c !important;
    color:white !important;
    padding:13px 22px !important;
    border-radius:8px !important;
    text-decoration:none !important;
    text-transform:uppercase !important;
    font-size:13px !important;
    font-weight:900 !important;
}

.contact-right{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-end !important;
    gap:22px !important;
}

.contact-item{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
    text-align:right !important;
}

.contact-item span{
    color:#e83e8c !important;
    font-size:30px !important;
}

.contact-item small{
    display:block !important;
    color:white !important;
    font-size:13px !important;
}

.contact-item a{
    color:#05c3eb !important;
    font-size:20px !important;
    font-weight:900 !important;
    text-decoration:none !important;
}

/* MOBILE */
@media screen and (max-width:900px){

    .contact-bar{
        flex-direction:column !important;
        gap:28px !important;
        text-align:center !important;
        padding:40px 22px !important;
    }

    .contact-slogan{
        font-size:18px !important;
        max-width:240px !important;
    }

    .contact-right{
        align-items:center !important;
        gap:24px !important;
    }

    .contact-item{
        flex-direction:column !important;
        text-align:center !important;
    }

    .contact-item a{
        font-size:18px !important;
        word-break:break-word !important;
    }
}
/* SIDEBAR + FOOTER */

#sidebar{
    display:none;
}

#footer{
    background:#000;
    border-top:4px solid #e83e8c;
    padding:25px;
    text-align:center;
}

#footer a{
    color:rgba(255,255,255,0.6) !important;
    text-decoration:none;
    font-size:13px;
    margin:0 12px;
}

/* MOBILE */

/* MOBILE */

@media screen and (max-width:900px){

    #header{
        display:block;
        text-align:center;
        padding:14px 10px;
    }

    .logo img{
        width:320px;
        margin:0 auto 10px;
    }

    #navigation li{
        display:inline-block;
        margin:3px;
    }

    #navigation a{
        font-size:9px;
        padding:8px 9px;
    }

    #hero{
        min-height:auto;
    }

    .hero-overlay{
        width:100%;
        min-height:auto;
        padding:65px 30px 55px;
        background:rgba(0,0,0,0.72);
    }

    .hero-title{
        font-size:15px;
        line-height:0.95;
    }

    .hero-text{
        font-size:15px;
        line-height:1.5;
        max-width:300px;
    }

    .hero-btn{
        padding:14px 22px;
        font-size:12px;
    }

    #content{
        padding:30px 0;
        overflow:hidden;
    }

    .desktop-services.swiper-services{
        display:flex !important;
        flex-wrap:nowrap !important;
        overflow-x:auto !important;
        overflow-y:hidden !important;
        gap:18px !important;
        padding:20px 22px !important;
        scroll-snap-type:x mandatory !important;
        -webkit-overflow-scrolling:touch !important;
    }

    .desktop-services.swiper-services .service-slide{
        flex:0 0 82% !important;
        min-width:82% !important;
        max-width:82% !important;
        scroll-snap-align:start !important;
    }

    .desktop-services.swiper-services::-webkit-scrollbar{
        display:none !important;
    }

    .contact-bar{
        flex-direction:column !important;
        gap:28px !important;
        text-align:center !important;
        padding:40px 22px !important;
    }

    .contact-slogan{
        font-size:18px !important;
        max-width:240px !important;
    }

    .contact-right{
        align-items:center !important;
        gap:24px !important;
    }

    .contact-item{
        flex-direction:column !important;
        text-align:center !important;
    }

    .contact-item a{
        font-size:18px !important;
        word-break:break-word !important;
    }

    #footer a{
        display:block;
        margin:8px 0;
    }

}/* FORCE MOBILE SLIDER AUF HANDY */

@media screen and (max-device-width:900px), screen and (hover:none) and (pointer:coarse){

    #content{
        overflow:hidden !important;
        padding-left:0 !important;
        padding-right:0 !important;
    }

    .desktop-services.swiper-services{
        display:flex !important;
        flex-direction:row !important;
        flex-wrap:nowrap !important;

        overflow-x:scroll !important;
        overflow-y:hidden !important;

        width:100vw !important;
        max-width:100vw !important;

        gap:18px !important;
        padding:20px 22px !important;

        scroll-snap-type:x mandatory !important;
        -webkit-overflow-scrolling:touch !important;
        touch-action:pan-x !important;
    }

    .desktop-services.swiper-services .service-slide{
        flex:0 0 82vw !important;
        width:82vw !important;
        min-width:82vw !important;
        max-width:82vw !important;

        scroll-snap-align:start !important;
    }

    .desktop-services.swiper-services::-webkit-scrollbar{
        display:none !important;
    }

}/* MOBILE CARD FIX */

@media screen and (max-width:900px){

    .service-page-card{
        width:92vw !important;
        max-width:92vw !important;

        margin:0 auto !important;

        overflow:hidden !important;
    }

    .service-page-right{
        width:24% !important;
        min-width:24% !important;
    }

    .service-page-left{
        width:76% !important;
        min-width:76% !important;

        padding:38px 24px !important;

        box-sizing:border-box !important;
    }

    .service-page-title{
        font-size:15vw !important;
        line-height:0.9 !important;
    }

    .service-page-text{
        font-size:6vw !important;
        line-height:1.45 !important;
    }

}@media screen and (max-width:900px){

    .usp-grid{
        display:flex !important;
        overflow-x:auto !important;
        gap:16px !important;

        padding:0 18px 20px !important;

        -webkit-overflow-scrolling:touch !important;
    }

    .usp-grid > div{
        min-width:78vw !important;
        max-width:78vw !important;

        flex:none !important;
    }

    .usp-grid::-webkit-scrollbar{
        display:none !important;
    }