/* Header */
header{
    width: 100%;
    height: 87px;
    position: sticky;
    top: 0;
    left: 0;
    background-color: #FFF;
    z-index: 100000;
    border-bottom: 1px solid #DDD;
}
nav{
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}
nav ul{
    display: var(--flex-display);
    list-style: none;
    width: 100%;
    justify-content: end
}
nav ul li{
    margin: 10px 10px;
}
nav ul li a{
    text-decoration: none;
    color: #000;
    font-family: 'oswald';
    font-weight: 500;
}
.header-top{
    height: 150px;
}
.header-top-contact{
    width: 90%;
    margin: auto;
}
.header-top-contact ul{
    padding: 10px 0;
    list-style: none;
    display: flex;
}
.header-top-contact ul li{
    width: 100%;
}
.header-top-contact ul li a,
.header-top-contact ul li p{
    color: #395b77;
    font-weight: 500 !important;
}
.header-top-contact-right{
    text-align: end;
}
.header-top-img{
    text-align: center;
}
.header-top-img img{
    height: 85px;
}
/* mennumobile */
.mennumobile{
    width: 100%;
    z-index: 1000;
    position: fixed;
    bottom: 0;
    left: 0;
}


@media(max-width: 800px){
    .header-top-contact ul{
    }
    .header-top{
        position: relative;
        top:0;
        left:0;
        z-index: 100000;
        background-color: #FFF;
        padding: 20px 0;
        height: auto;
    }
    header{
        display: none;
        position: relative;
    }
}
