header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.navigation-tabs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    color: rgb(121, 121, 121);
}

.nav-group-primary,
.nav-group-secondary {
    display: flex;
    align-items: center;
}

.popover-trigger {
    margin-inline-end: 40px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.popover-trigger:hover, .secondary-link:hover  {
    color: rgb(255, 74, 100);
}

.secondary-link {
    margin-inline-end: 40px;
    text-decoration: none;
    color: inherit;
}

.popover-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 200px;
    top: 30px;
}

.popover-menu-item {
    text-decoration: none;
    padding: 12px 16px;
    color: rgb(121, 121, 121);
}

.popover-menu-item:hover {
    padding: 12px 16px;
    color: rgb(121, 121, 121);
    font-weight: 600;
    background-color: #f5f5f5;
}

.show {
    display: flex;
}

.start-button {
    font-weight: 600;
    transition: .2s;
    color: #2D2D2D;
    text-decoration: none;
}

.start-button:hover {
    transition: .2s;
    color: #FF4A64;
}

.start-button:hover path {
    transition: .2s;
    stroke: #FF4A64;
}


@media (max-width: 700px) {
    .popover-trigger {
        margin-inline-end: 24px;
        font-size: 14px;
    }
}