* { box-sizing:border-box; }

body.cosmos-bg{
    margin:0;
    font-family:Arial, sans-serif;
    color:white;
    background:url("../images/cosmos-bg.jpg") center/cover no-repeat fixed !important;
}

/* INTRO */
#intro{
    position:fixed;
    inset:0;
    background:black;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    transition:.8s;
}
#intro img{
    width:60%;
    max-width:900px;
}

/* HEADER */
.main-header{
    position:fixed;
    top:0;
    width:100%;
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 50px;
    background:rgba(0,0,0,.6);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.left{ width:20%; }
.center{ width:60%; text-align:center; }
.right{
    width:20%;
    display:flex;
    justify-content:flex-end;
    gap:15px;
}

.brand-logo{ height:300px; }

.menu-toggle{
    width:28px;
    height:20px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.menu-toggle span{
    height:3px;
    background:white;
}

/* HERO */
.siemens-hero{
    height:100vh;
    overflow:hidden;
    padding-top:90px;
}

.slider-wrapper{
    display:flex;
    height:100%;
    transition:transform .8s ease-in-out;
}

.slide{
    min-width:100%;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.slide-overlay{
    background:rgba(0,0,0,.6);
    padding:40px;
    max-width:900px;
    text-align:center;
}