/* ----- HEADER ------------------------------------------------------ */
header{
    position: fixed;
    width: 100%;
    height: 90px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 100;
    transition: all .3s ease;
}
.header-logo-container{
    background-color: var(--secondary-color);
    width: 220px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: skewX(-25deg) translateX(-12px);
    transition: all .3s ease;
    cursor: pointer;
}
.header-logo-container img{
    position: absolute;
    top: calc(0.5 * 90px - 38px);
    left: 75px;
    height: 25px;
    transform: skewX(25deg);
    transition: all .3s ease;
}
.header-logo-container span{
    color: white;
    font-size: 10.5px;
    font-weight: 300;
    letter-spacing: 0.8px;
    margin-top: 25px;
    transform: skewX(25deg) translateX(8px);
}
.header-logo-container-2{
    transform: skewX(-25deg) translateX(-100px);
}
.header-logo-container-2 img{
    top: calc(0.5 * 90px - 34px);
    left: 120px;
}
.header-logo-container-2 span{
    display: none;
}
.header-links-desktop{
    display: flex;
    align-items: center;
    margin-right: 25px;
    position: relative;
}
.header-links-desktop-left{
    position: absolute;
    display: flex;
    right: calc(50vw - 0.16 * 100vh - 33px);
}
.header-links-desktop-right{
    position: absolute;
    display: flex;
    right: 10vw;
    right: calc(50vw - 0.16 * 100vh - 33px);
    transform: translateX(100%);
}
.header-kontakt-button-desktop{
    width: 135px;
    height: 35px;
    background-color: var(--branding-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skewX(-25deg);
}
.header-kontakt-button-desktop span{
    color: white;
    font-weight: 600;
    font-weight: 13.5px;
    transform: skewX(25deg);
}
.header-links-desktop-left a, .header-links-desktop-right a{
    color: var(--secondary-color);
    margin-right: 35px;
    font-weight: 400;
    font-size: 13.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.mobile-menu-button{
    display: none;
}
.mobile-menu-icon{
    display: block;
}
.mobile-menu-icon.active{
    display: none;
}
.mobile-menu-close-icon{
    display: none;
}
.mobile-menu-close-icon.active{
    display: block;
}


@media only screen and (max-width: 1200px) {
    .header-links-desktop-left a, .header-links-desktop-right a{
        margin-right: 20px;
    }
    .header-links-desktop-left{
        position: absolute;
        display: flex;
        right: calc(50vw - 0.16 * 100vh - 20px);
    }
    .header-links-desktop-right{
        position: absolute;
        display: flex;
        right: 10vw;
        right: calc(50vw - 0.16 * 100vh - 20px);
        transform: translateX(100%);
    }
    
}

@media only screen and (max-width: 1050px) {
    .header-links-desktop-right{
        display: none;
    }
    .header-links-desktop-left{
        position: unset;
    }
    .header-links-desktop-left a, .header-links-desktop-right a{
        margin-right: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .header-links-desktop-left, .header-kontakt-button-desktop{
        display: none;
    }
    .mobile-menu-button{
        display: flex;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }
}