/* Navbar. */
/* Header layout. */
.site-header {
    width: 100%;
    background-color: transparent;
    position: relative;
    overflow: hidden
}

.navbar-container {
    position: relative;
    width: 100%;
    min-height: 135px;
    padding: 24px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px
}

.navbar-logo {
    display: flex;
    align-items: center;
    width: fit-content;
    height: fit-content;
    text-decoration: none
}

.navbar-logo img {
    width: 260px;
    max-width: 100%;
    height: auto;
    display: block
}

/* Navigation links. */
.navbar-links {
    margin-left: auto;
    background: rgba(77, 103, 151, .75);
    border-radius: 999px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08)
}

.navbar-btn {
    color: #111111;
    background: rgba(255, 255, 255, .75);
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease
}

.navbar-btn:hover,
.navbar-btn.active {
    background-color: #d8ebe9;
    color: #183b63
}