header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Montserrat, sans-serif;
    font-weight: 800
}

.brand img {
    height: 50px
}

.menu {
    display: flex;
    gap: 24px;
    align-items: center;
    font-weight: 500
}

.menu a {
    padding: 8px 10px;
    border-radius: 8px
}

.menu a.active {
    color: var(--teal)
}

.menu a:hover {
    background: rgba(29, 193, 165, .08)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent
}

.burger span {
    width: 26px;
    height: 2px;
    background: #222;
    border-radius: 2px
}