#nav_area{
    width: 100%;
    height: fit-content;
    padding: 15px;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: all 0.1s ease;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
}

#nav_area.scrolled{
    padding: 0;
    top:0;
}
#nav_area.scrolled nav{
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
#nav_area.scrolled nav #logo svg{
    height: 30px;
    width: auto;
}

nav{
    width: 100%;
    height: fit-content;
    padding: 8px 15px;
    background-color: rgba(0, 0, 0, 0.508);
    backdrop-filter: blur(25px);

    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 10001;
}
nav #logo{
    width: fit-content;
    height: fit-content;
}
nav #logo_mobile{
    width: 45px;
    height: auto;
    display: none;
}
nav #logo_mobile svg{
    width: 40px;
}

nav #menu {
    width: fit-content;
    height:100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    column-gap: 20px;
}

nav #menu a{
    text-decoration: none;
    color: #222F38;
    font-size: 16px;
}

nav #menu
a.cta_primary_btn {
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: bold;
    background-color: #a07a06;
    color: #eaeaea;
    transition: all .3s cubic-bezier(0.23, 1, 0.320, 1);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

nav #menu
a.cta_primary_btn:hover {
    background-color: #015e7c;
}
nav #menu #explore_link{
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.1s ease;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    font-size: 14px;
    color: rgb(241, 241, 241);
}
nav #menu #explore_link:hover{
    background-color: #ffffff22;
}

@media (max-width: 700px){
    #nav_area{
        padding: 10px;
    }
    nav #logo{
        display: none;
    }
    nav #logo_mobile{
        display: initial;
    }
    nav #menu #explore_link{
        padding: 0;
    }
}