#desktop-header{
    display: block;
}
#mobile-header{
    display: none;
}

header nav{
    background-color: #fff !important;
}

header nav a svg{
    max-width: 240px;
    width: 240px;
}

header nav ul{
    list-style: none;
}
.uk-navbar-nav li a{
    font-family: 'Karla', sans-serif;
    font-size: 15px;
}

li a.nav-item{
    color: #0061aa;
    text-decoration: none;
}
li a.nav-item:hover{
    color: #009750;
}
button.go-button{
    color: #fff;
    background-color: #009750;
    border-radius: 5px;
    font-family: 'Karla', sans-serif;
}

@media screen and (max-width: 800px){
    #desktop-header{
        display: none;
    }
    #mobile-header{
        display: block;
    }
    header nav a.open-menu svg{
        color: black !important;
        max-width: 35px;
        width: 35px;
    }
    header nav a.logo svg{
        max-width: 150px;
        width: 150px;
    }
    
}