header {
    position: fixed;
    width: 100%;
    background-color: rgb(255 255 255 / 80%);
    backdrop-filter: blur(10px);
    top: 0;
    z-index: 1000;
}
header div.child {
    height: 60px;
    margin: 0 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
header a.brand-logo {
    display: flex;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

header a.brand-logo img {
    height: 40px;
    width: auto;
}
header a.brand-logo:hover img {
    opacity: 0.7;
}

header div.links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header div.links a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 50px;
    border: 1px solid transparent;
}
header div.links a:hover {
    background-color: rgba(233, 76, 59, 0.1);
}
header div.links a.highlighted {
    background-color: rgb(233 76 59);
    /* background-color: rgb(12, 131, 31); Green Color */
    border-radius: 50px;
    margin-left: 7px;
    color: #fff;
    padding: 8px 14px;
    font-weight: 500;
}
header div.links a.highlighted:hover {
    opacity: 0.7;
}


@media only screen and (max-width: calc(700px)) {
    header div.links a:not(.highlighted) {
        display: none;
    }
}
