/* Top menu styles */

#topMenu {
    margin-bottom: 20px;
    min-height: 76px;
}

.topmenu-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topmenu-inner .brand {
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    letter-spacing: 0.2px;
    align-self: self-start;
    position: relative;
    top: -1px;
}

.topmenu-inner .links a {
    text-decoration: none;
    color: inherit;
    padding: 8px 10px;
    color: #4b5563;
}

.topmenu-inner .links a:hover {
    color: var(--text);
    background: rgba(2, 6, 23, 0.06);
}

.topmenu-inner .links a.selected {
    color: var(--text);
    background: rgba(2, 6, 23, 0.06);
}

header .container{
    padding-top: 18px;
}

a.brand svg {
    width: 30px;
    height: 30px;
    background-color: var(--blue);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
}

nav.links{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    top: -3px;
}


@media screen and (max-width: 570px) {
  nav.links a{
    font-size: 14px;
    position: relative;
    top: 1px;
  }
}
