.sticky-header {
    position:fixed;
    top:-60px;
    transition:0.6s;
    background-color:rgba(255,255,255,1);
    width:100%;
    z-index:999;
    height:60px;
    display:flex;

    align-items:center;
    justify-content: center;
    /* padding: 0px 30px 0px 30px; */
    box-sizing: border-box;
    border-bottom: 3px solid var(--blau);
}
.sticky-header>div {
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    max-width: 1400px;
    width:100%;
}
.sticky-logo {
    display:flex;
    align-items:center;
    justify-content:center;
}

.sticky-logo img {
    width:50px;
}
.sticky-hamburger {
    margin-right:10px;
}
.sticky-hamburger img {
    width: 38px;
    height: 24px;
    margin-top: 12px;
}
.sticky-hamburger img:hover {
    cursor:pointer;
}
#sticky-telefon-button {
    display:none;
}
@media(min-width:1268px){
    #sticky-telefon-button {
        display:block;
    }
}