.sticky-header {
    position:fixed;
    top:-60px;
    transition:0.6s;
    background-color:rgba(255,255,255,0.9);
    width:100%;
    z-index:999;
    height:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 0px 30px 0px 30px;
    box-sizing: border-box;
}
.sticky-logo img {
    width:250px;
}
.sticky-hamburger img:hover {
    cursor:pointer;
}