*{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", serif;
}

/*NAVIGATION*/

header{
    position: sticky;
    top: 0;
    z-index: 999;
}

#navigation {
    display: flex;
    background-color: whitesmoke;
    align-items: center;
}

#nav_container {
    display: flex;
    align-items: center;
    margin-left: 10%;
    width: 80%;
}

#nav_logo{
    display: block;
}

    #nav_logo img{
        width: 200px;
    }

#nav_links{
    display: flex;
    justify-content: flex-end;
    align-content: center;
    width: 100%;
    gap: 40px;
}

.nav_link {
    margin-right: -10px;
    padding: 5px 0 10px 0;
    border-radius: 10px 10px 0 0;
    transition: linear 0.1s;
}

    .nav_link:hover .nav_dropdown {
        display: block;
    }

    .nav_link a {
        font-size: 1em;
        padding: 10px;
        text-decoration: none;
        color: black;
        transition: linear 0.1s;
    }

    .nav_link a:hover{
        opacity: 0.6;
        transition: linear 0.1s;
    }

.nav_dropdown {
    display: none;
    position: absolute;
    background-color: white;
    padding: 0 10px 10px 10px;
    margin: 10px 0 0 0;
    border-radius: 10px;
    box-shadow: 0 0 20px #00000031;
}

    .nav_dropdown a {
        display: block;
        font-size: 0.9em;
        padding: 10px 0 0 0;
        text-decoration: none;
        color: black;
        transition: linear 0.1s;
    }

.nav_dropdown a:hover{
    opacity: 0.6;
    transition: linear 0.1s;

}

.horizontal_sprt {
    border-top: 2px solid #bbbbbb;
    border-bottom: 2px #afafaf;
    width: 100%;
}

.vertical_sprt {
    border-left: 1px solid #bbbbbb;
    border-right: 1px solid #afafaf;
}

@media screen and (max-width: 800px){

    #nav_links {
        gap: 20px;
    }

    .nav_link a {
        font-size: 0.9em;
    }
}