.site-header__top {
    background: var(--white);
}
.site-header__top-inner {
    min-height: 125px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.site-header__brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}
.site-header__brand img {
    height: 105px;
    width: auto;
    display: block;
}
.site-header__tagline {
    flex: 1 1 auto;
    margin: 0;
    color: var(--secondaryFontColor);
    text-align: end;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.2px;
}
.site-header__toggle {
    display: none;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 8px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: none;
}
.site-header__toggle:focus {
    box-shadow: none;
}
.site-header__toggle-line {
    width: 22px;
    height: 2px;
    background: var(--headerBg);
    border-radius: 999px;
    display: block;
}
.site-header__bottom {
    background: var(--headerBg);
}
.header_navbar_shell {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    padding-left: 0;
}
.header-nav .nav-link {
    font-size: var(--menuDeskFont);
	font-family: var(--menuFontFamily);
	font-weight: var(--menuFontWt);
	font-style: var(--menuFontStyle);
	line-height: var(--menuDeskLineHt);
	color: var(--menuFont);
    padding: 0;
    transition: opacity 0.2s ease;
    letter-spacing: 0.2px;
}
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show {
    color: var(--menuFont);
    font-weight: 700;
}
.header-nav .nav-link:hover,
.header-nav .nav-link:focus {
    color: var(--menuHoverFont);
    opacity: 0.85;
}
.header-nav .nav-link.is-active {
    font-weight: 700;
}

.auth_wrap,
.auth_wrap ul {
    display: flex;
    align-items: center;
    padding-right: 0;
}
.auth_wrap_link,
.auth_wrap_link a {
    color: var(--white);
    text-decoration: none;
    line-height: 1.8;
    letter-spacing: normal;
    font-weight: 600;
    font-size: 16px;
    padding: 0 28px;
    transition: opacity 0.2s ease;
}
.auth_wrap_link:hover,
.auth_wrap_link:focus,
.auth_wrap_link a:hover,
.auth_wrap_link a:focus {
    color: var(--white);
    opacity: 0.85;
}
.auth_wrap_link + .auth_wrap_link,
.auth_wrap_link li + li {
    border-left: 1px solid var(--white);
}
.auth_wrap_link li + li a {
    padding-right: 0px;
}

@media (min-width: 992px) {
    .header_navbar .navbar-collapse {
        display: block !important;
    }
}

@media (max-width: 991.98px) {
    .site-header__tagline {
        display: none;
    }
    .site-header__top-inner {
        min-height: 96px;
        gap: 1rem;
        padding: 15px 0;
    }
    .site-header__tagline {
        font-size: 16px;
        text-align: left;
    }
    .site-header__toggle {
        display: inline-flex;
    }
    .header_navbar_shell {
        min-height: auto;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.25rem 0;
        flex-direction: column;
    }
    .header-nav {
        width: 100%;
        gap: 1rem;
        align-items: flex-start;
        flex-direction: column;
    }
    .header-nav .nav-link {
        display: inline-block;
    }
    .auth_wrap,
    .auth_wrap ul {
        width: 100%;
        background-color: #ffffff;
    }
    .auth_wrap_link li {
        width: 100%;
        text-align: center;
    }
    .auth_wrap_link,
    .auth_wrap_link a {
        width: 100%;
        padding: 0;
        text-align: center;
        color: var(--primaryFontColor);
    }
    .auth_wrap_link+.auth_wrap_link,
    .auth_wrap_link li+li {
        border-left: 1px solid var(--primaryFontColor);
    }
    .auth_wrap_link:hover,
    .auth_wrap_link:focus,
    .auth_wrap_link a:hover,
    .auth_wrap_link a:focus {
        color: var(--primaryFontColor);
        opacity: 0.85;
    }
}

@media (max-width: 767.98px) {
    .site-header__top-inner {
        min-height: 88px;
    }
    .site-header__tagline {
        font-size: 14px;
        line-height: 1.45;
    }
}

@media (max-width: 575.98px) {
    .site-header__brand img {
        height: 70px;
    }
    .site-header__top-inner {
        min-height: 80px;
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
    }
    .site-header__tagline {
        grid-column: 1 / -1;
        order: 3;
        text-align: center;
        padding-bottom: 0.85rem;
    }
}