nav{
    position: fixed;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: linear-gradient(275deg, #001311 -26.46%, #093628 45.89%, #146048 104.78%);
    height: 64px;

    z-index: 2;
}

nav img{
    align-self: center;
    cursor: pointer;
}

nav ul{
    display: flex;
    gap: 10px;
}

nav a{
    color: #EEF2E9;
    padding: 10px;
}

.mobile-menu{
    display: none;
}

#mobile-menu {
    position: fixed;
    margin-top: 64px;
    right: 0;
    width: 60%;
    border-radius: 0 0 0 12px;
    background: #093628;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    z-index: 100;
}

#mobile-menu ul { list-style: none; margin: 0; padding: 0.5rem 0 1rem; }

#mobile-menu li { text-align: right; padding: 0.85rem 1.5rem; }

#mobile-menu a {
    color: #EEF2E9;
    text-align: right;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

#mobile-menu a:hover {
    color: #CEF17B;
}

#mobile-menu a.active    {
    text-decoration: underline;
}
#mobile-menu a.highlight {
    color: #f0e040;
}

#burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #CEF17B;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Providers specific */
.providers-nav{
    background: linear-gradient(0deg, #CEF17B 0%, #CEF17B 100%), linear-gradient(275deg, #001311 -26.46%, #093628 45.89%, #146048 104.78%);
}

.providers-nav a{
    color: #093628;
    font-weight: 600;
}

.providers-nav a:hover{
    color: #146048;
}

.providers-bar{
    background: #093628;
}

#provider-menu{
    background: #CEF17B;
}

@media (max-width: 960px) {
    .mobile-menu {
        display: block;
    }

    .desktop-menu {
        display: none;
    }
}