header{
    top:0;
    left:0;
    z-index: 10;
}
header .logo a{
    height: max-content;
}
header ul{
    list-style:none ;
    gap: 50px;
}
header .navbar .nav-link a{
    font-family: Montserrat arm;
    font-size: 12px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    color: rgba(45, 47, 48, 1);
}
header .navbar summary{
    font-family: Montserrat arm;
    font-size: 12px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    color: rgba(45, 47, 48, 1);
    text-transform: none !important;
}

header .navbar summary div{
    background:transparent;
}


header .navbar details a{
    text-transform: none !important;
}
details summary {
    list-style: none;
    position: relative;
}

details summary::-webkit-details-marker {
    display: none;
}

/* Add custom marker after text */
details summary::after {
    content: "▼";
    font-size: 1.2em;
    position: absolute;
    right: 0;
    top: 6px;
}

/* Change marker when open */
details[open] summary::after {
    content: "▲";
}