:root {
    --tourbier-header-blue: #294c77;
    --tourbier-header-blue-dark: #173651;
    --tourbier-header-border: rgba(41, 76, 119, 0.14);
    --tourbier-header-muted: #687586;
    --tourbier-header-height: 78px;
    --tourbier-admin-offset: 0px;
}

body.admin-bar {
    --tourbier-admin-offset: 32px;
}

body.tourbier-menu-open {
    overflow-x: hidden;
}

.tourbier-header-spacer {
    display: none;
    height: var(--tourbier-header-height);
}

body.tourbier-menu-open .tourbier-header-spacer {
    display: block;
}

body.tourbier-menu-open .tourbier-header-shell {
    position: fixed !important;
    top: var(--tourbier-admin-offset) !important;
    right: 0 !important;
    left: 0 !important;
    box-shadow: none !important;
}

.tourbier-header-shell {
    position: sticky !important;
    z-index: 10000 !important;
    top: var(--tourbier-admin-offset) !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--tourbier-header-blue) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 24px rgba(17, 42, 70, 0.06) !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.tourbier-header,
.tourbier-header *,
.tourbier-header *::before,
.tourbier-header *::after {
    box-sizing: border-box;
}

.tourbier-header {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: var(--tourbier-header-height);
    color: #111820;
    background: transparent;
    font-family: Inter, Arial, sans-serif;
}

.tourbier-header a {
    text-decoration: none;
}

.tourbier-header__inner {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(1540px, calc(100% - 40px));
    min-height: var(--tourbier-header-height);
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
}

.tourbier-header__logo {
    position: relative;
    z-index: 2;
    display: block;
    width: 250px;
    flex: 0 0 250px;
}

.tourbier-header__logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.tourbier-header__compact-navigation {
    display: none;
}

.tourbier-header__mobile-toggle {
    position: relative;
    z-index: 10002;
    display: inline-flex;
    min-width: 112px;
    width: 112px;
    height: 44px;
    padding: 0 16px;
    flex: 0 0 112px;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    border-radius: 999px;
    color: var(--tourbier-header-blue);
    background: #f4f6f8;
    cursor: pointer;
    font-family: Poppins, Arial, sans-serif;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tourbier-header__mobile-toggle-lines {
    position: absolute;
    top: 50%;
    right: 14px;
    display: block;
    width: 21px;
    height: 14px;
    transform: translateY(-50%);
}

.tourbier-header__mobile-toggle-lines i {
    position: absolute;
    left: 0;
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: top 150ms ease, transform 150ms ease;
}

.tourbier-header__mobile-toggle-lines i:first-child {
    top: 3px;
}

.tourbier-header__mobile-toggle-lines i:last-child {
    top: 10px;
}

.tourbier-header.is-menu-open .tourbier-header__mobile-toggle-lines i:first-child {
    top: 6px;
    transform: rotate(45deg);
}

.tourbier-header.is-menu-open .tourbier-header__mobile-toggle-lines i:last-child {
    top: 6px;
    transform: rotate(-45deg);
}

.tourbier-header__navigation {
    position: fixed;
    z-index: 2;
    top: calc(var(--tourbier-admin-offset) + var(--tourbier-header-height) + 10px);
    right: 12px;
    display: flex;
    width: min(420px, calc(100% - 24px));
    height: auto;
    max-height: calc(100dvh - var(--tourbier-admin-offset) - var(--tourbier-header-height) - 22px);
    padding: 16px;
    overflow-y: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    border: 1px solid var(--tourbier-header-border);
    border-radius: 18px;
    color: #111820;
    background: #ffffff;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(24px, -4px, 0) scale(0.98);
    transform-origin: top right;
    transition: opacity 150ms ease, transform 150ms ease, visibility 0s linear 150ms;
    visibility: hidden;
}

.tourbier-header.is-menu-open .tourbier-header__navigation {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
    visibility: visible;
}

.tourbier-header__menu,
.tourbier-header__insurance-grid {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tourbier-header__menu {
    display: grid;
    gap: 2px;
}

.tourbier-header__menu-item {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

.tourbier-header__menu-item > a,
.tourbier-header__insurance-trigger > a {
    display: flex;
    min-height: 46px;
    padding: 0 12px;
    align-items: center;
    border-radius: 10px;
    color: #111820;
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.tourbier-header__menu-item > a:hover,
.tourbier-header__menu-item > a:focus-visible,
.tourbier-header__menu-item.is-current > a,
.tourbier-header__menu-item.is-current .tourbier-header__insurance-trigger {
    color: var(--tourbier-header-blue);
    background: #f1f4f7;
}

.tourbier-header__insurance-trigger {
    display: flex;
    align-items: center;
    border-radius: 10px;
    color: #111820;
    transition: color 110ms ease, background-color 110ms ease;
}

.tourbier-header__insurance-trigger > a {
    min-width: 0;
    flex: 1 1 auto;
    color: inherit;
}

.tourbier-header__menu-item--insurance:hover .tourbier-header__insurance-trigger,
.tourbier-header__menu-item--insurance:focus-within .tourbier-header__insurance-trigger,
.tourbier-header__menu-item--insurance.is-insurance-open .tourbier-header__insurance-trigger,
.tourbier-header__menu-item--loan:hover .tourbier-header__insurance-trigger,
.tourbier-header__menu-item--loan:focus-within .tourbier-header__insurance-trigger,
.tourbier-header__menu-item--loan.is-loan-open .tourbier-header__insurance-trigger,
.tourbier-header__menu-item--wealth:hover .tourbier-header__insurance-trigger,
.tourbier-header__menu-item--wealth:focus-within .tourbier-header__insurance-trigger,
.tourbier-header__menu-item--wealth.is-wealth-open .tourbier-header__insurance-trigger {
    color: var(--tourbier-header-blue);
    background: #f1f4f7;
}

.tourbier-header__insurance-trigger > button {
    display: grid;
    width: 42px;
    height: 42px;
    margin-right: 3px;
    flex: 0 0 42px;
    place-items: center;
    border: 0;
    border-radius: 9px;
    color: var(--tourbier-header-blue);
    background: transparent;
    cursor: pointer;
}

.tourbier-header__insurance-trigger > button:hover,
.tourbier-header__insurance-trigger > button:focus-visible {
    background: transparent;
}

.tourbier-header__insurance-trigger svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 140ms ease;
}

.tourbier-header__menu-item--insurance.is-insurance-open .tourbier-header__insurance-trigger svg,
.tourbier-header__menu-item--loan.is-loan-open .tourbier-header__insurance-trigger svg,
.tourbier-header__menu-item--wealth.is-wealth-open .tourbier-header__insurance-trigger svg {
    transform: rotate(180deg);
}

.tourbier-header__dropdown {
    display: none;
    padding: 12px 8px 8px;
}

.tourbier-header__menu-item--insurance.is-insurance-open .tourbier-header__dropdown,
.tourbier-header__menu-item--loan.is-loan-open .tourbier-header__dropdown,
.tourbier-header__menu-item--wealth.is-wealth-open .tourbier-header__dropdown {
    display: block;
}

.tourbier-header__dropdown-heading {
    display: none;
}

.tourbier-header__insurance-grid {
    display: grid;
    gap: 5px;
}

.tourbier-header__insurance-grid li {
    display: block;
    margin: 0;
    padding: 0;
}

.tourbier-header__insurance-grid a {
    display: grid;
    min-height: 66px;
    padding: 10px 11px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    border-radius: 10px;
    color: #172334;
}

.tourbier-header__insurance-grid a:hover,
.tourbier-header__insurance-grid a:focus-visible,
.tourbier-header__insurance-grid li.is-current a {
    color: var(--tourbier-header-blue);
    background: #f2f5f8;
}

.tourbier-header__insurance-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    color: var(--tourbier-header-blue);
    background: #eaf0f5;
}

.tourbier-header__insurance-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.tourbier-header__insurance-copy {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.tourbier-header__insurance-copy strong {
    color: inherit;
    font-family: Poppins, Arial, sans-serif;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.tourbier-header__insurance-copy > span {
    color: var(--tourbier-header-muted);
    font-size: 11px;
    line-height: 1.35;
}

.tourbier-header__actions {
    display: grid;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--tourbier-header-border);
}

.tourbier-header__partnership {
    display: flex;
    min-height: 48px;
    padding: 0 11px 0 18px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(38, 70, 111, 0.38);
    border-radius: 12px;
    color: var(--tourbier-header-blue);
    background: #ffffff;
    font-family: Poppins, Arial, sans-serif;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.3;
    white-space: nowrap;
    transition: color 140ms ease, border-color 140ms ease, background-color 140ms ease, transform 140ms ease;
}

.tourbier-header__partnership:hover,
.tourbier-header__partnership:focus-visible,
.tourbier-header__partnership.is-current {
    border-color: #a98d70;
    color: #ffffff;
    background: #876f59;
    transform: translateY(-1px);
}

.tourbier-header__partnership-arrow {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--tourbier-header-blue);
    font-size: 13px;
    transition: transform 140ms ease, background-color 140ms ease;
}

.tourbier-header__partnership:hover .tourbier-header__partnership-arrow,
.tourbier-header__partnership:focus-visible .tourbier-header__partnership-arrow,
.tourbier-header__partnership.is-current .tourbier-header__partnership-arrow {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(1px, -1px);
}

.tourbier-header__contact {
    display: flex;
    min-height: 48px;
    padding: 0 11px 0 18px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--tourbier-header-blue), var(--tourbier-header-blue-dark));
    box-shadow: 0 10px 24px rgba(23, 54, 81, 0.2);
    font-family: Poppins, Arial, sans-serif;
    font-size: 13px;
    font-weight: 650;
}

.tourbier-header__contact:hover,
.tourbier-header__contact:focus-visible {
    color: #ffffff;
    background: linear-gradient(135deg, #23466f, #102d47);
    box-shadow: 0 13px 28px rgba(23, 54, 81, 0.27);
}

@media (max-width: 1179px) {
    .tourbier-header__contact,
    .tourbier-header__contact:hover,
    .tourbier-header__contact:focus-visible {
        box-shadow: none;
    }
}

.tourbier-header__contact-arrow {
    display: grid;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    transition: transform 140ms ease;
}

.tourbier-header__contact:hover .tourbier-header__contact-arrow,
.tourbier-header__contact:focus-visible .tourbier-header__contact-arrow {
    transform: translateX(2px);
}

.tourbier-header__contact-short {
    display: none;
}

.tourbier-header__socials {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.tourbier-header__socials--desktop {
    display: none;
}

.tourbier-header__socials a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--tourbier-header-border);
    border-radius: 50%;
    color: var(--tourbier-header-blue);
    background: #ffffff;
}

.tourbier-header__socials a:hover,
.tourbier-header__socials a:focus-visible {
    border-color: var(--tourbier-header-blue);
    color: #ffffff;
    background: var(--tourbier-header-blue);
}

.tourbier-header__socials svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.tourbier-header__socials .tourbier-header__social-fill {
    fill: currentColor;
    stroke: none;
}

.tourbier-header__backdrop {
    position: fixed;
    z-index: 1 !important;
    top: calc(var(--tourbier-admin-offset) + var(--tourbier-header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 170ms ease, visibility 0s linear 170ms;
    visibility: hidden;
}

.tourbier-header.is-menu-open .tourbier-header__backdrop {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
    visibility: visible;
}

.tourbier-header a:focus-visible,
.tourbier-header button:focus-visible {
    outline: 3px solid #9fc4eb;
    outline-offset: 3px;
}

@media (min-width: 1000px) and (max-width: 1399px) {
    .tourbier-header__inner {
        width: calc(100% - 32px);
        gap: 14px;
    }

    .tourbier-header__logo {
        width: 220px;
        flex-basis: 220px;
    }

    .tourbier-header__compact-navigation {
        display: flex;
        min-width: 0;
        flex: 1 1 auto;
        gap: 0;
        align-items: center;
        justify-content: center;
    }

    .tourbier-header__compact-navigation > * {
        position: relative;
    }

    .tourbier-header__compact-navigation > * + *::before {
        position: absolute;
        top: 50%;
        left: 0;
        width: 1px;
        height: 14px;
        content: '';
        background: rgba(38, 70, 111, 0.2);
        transform: translateY(-50%);
    }

    .tourbier-header__compact-trigger {
        display: inline-flex;
        min-height: 40px;
        align-items: center;
    }

    .tourbier-header__compact-trigger > a,
    .tourbier-header__compact-link {
        display: inline-flex;
        min-height: 40px;
        padding: 0 9px;
        align-items: center;
        color: #172334;
        font-family: Poppins, Arial, sans-serif;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.2;
        white-space: nowrap;
        transition: color 140ms ease;
    }

    .tourbier-header__compact-trigger > button {
        display: grid;
        width: 24px;
        height: 32px;
        margin: 0 4px 0 -5px;
        padding: 0;
        flex: 0 0 24px;
        place-items: center;
        border: 0;
        border-radius: 50%;
        color: var(--tourbier-header-blue);
        background: transparent;
        cursor: pointer;
        transition: background-color 140ms ease;
    }

    .tourbier-header__compact-trigger > button:hover,
    .tourbier-header__compact-trigger > button:focus-visible {
        background: #eef3f8;
    }

    .tourbier-header__compact-trigger svg {
        width: 13px;
        height: 13px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.8;
        transition: transform 140ms ease;
    }

    .tourbier-header__compact-trigger > a:hover,
    .tourbier-header__compact-trigger > a:focus-visible,
    .tourbier-header__compact-link:hover,
    .tourbier-header__compact-link:focus-visible,
    .tourbier-header__compact-link.is-current,
    .tourbier-header__compact-item.is-current .tourbier-header__compact-trigger > a {
        color: var(--tourbier-header-blue);
    }

    .tourbier-header__compact-item.is-compact-open .tourbier-header__compact-trigger svg {
        transform: rotate(180deg);
    }

    .tourbier-header__compact-dropdown {
        position: absolute;
        z-index: 10003;
        top: calc(100% + 9px);
        left: 50%;
        display: grid;
        width: 270px;
        padding: 10px;
        gap: 7px;
        border: 1px solid rgba(38, 70, 111, 0.18);
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 20px 45px rgba(17, 42, 70, 0.18);
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, 7px);
        transition: opacity 120ms ease, transform 120ms ease, visibility 0s linear 120ms;
        visibility: hidden;
    }

    .tourbier-header__compact-dropdown::before {
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        height: 10px;
        content: '';
    }

    .tourbier-header__compact-dropdown.is-wide {
        width: 390px;
    }

    .tourbier-header__compact-item:hover .tourbier-header__compact-dropdown,
    .tourbier-header__compact-item:focus-within .tourbier-header__compact-dropdown,
    .tourbier-header__compact-item.is-compact-open .tourbier-header__compact-dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
        transition-delay: 0s;
        visibility: visible;
    }

    .tourbier-header__compact-portal {
        display: flex;
        min-height: 38px;
        padding: 8px 11px;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border-radius: 9px;
        color: #ffffff;
        background: var(--tourbier-header-blue);
        font-family: Poppins, Arial, sans-serif;
        font-size: 11px;
        font-weight: 650;
        line-height: 1.25;
    }

    .tourbier-header__compact-dropdown ul {
        display: grid;
        margin: 0;
        padding: 0;
        gap: 2px;
        list-style: none;
    }

    .tourbier-header__compact-dropdown.is-wide ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tourbier-header__compact-dropdown li a {
        display: flex;
        min-height: 34px;
        padding: 7px 10px;
        align-items: center;
        border-radius: 8px;
        color: #334b68;
        font-family: Poppins, Arial, sans-serif;
        font-size: 10.5px;
        font-weight: 550;
        line-height: 1.25;
        transition: color 120ms ease, background-color 120ms ease;
    }

    .tourbier-header__compact-dropdown li a:hover,
    .tourbier-header__compact-dropdown li a:focus-visible,
    .tourbier-header__compact-dropdown li.is-current a {
        color: var(--tourbier-header-blue);
        background: #eef3f8;
    }

    .tourbier-header__compact-appointment {
        display: inline-flex;
        min-height: 34px;
        margin-left: 8px;
        padding: 0 12px;
        align-items: center;
        border-radius: 999px;
        color: #ffffff;
        background: var(--tourbier-header-blue);
        font-family: Poppins, Arial, sans-serif;
        font-size: 10.5px;
        font-weight: 650;
        line-height: 1.2;
        white-space: nowrap;
        transition: background-color 140ms ease, transform 140ms ease;
    }

    .tourbier-header__compact-appointment::before {
        display: none;
    }

    .tourbier-header__compact-appointment:hover,
    .tourbier-header__compact-appointment:focus-visible,
    .tourbier-header__compact-appointment.is-current {
        background: #876f59;
        transform: translateY(-1px);
    }

    .tourbier-header__mobile-toggle {
        min-width: 112px;
        width: 112px;
        padding-inline: 12px;
        flex: 0 0 112px;
    }

    .tourbier-header.is-menu-open .tourbier-header__compact-navigation {
        opacity: 0.38;
        pointer-events: none;
    }
}

@media (min-width: 1400px) {
    :root {
        --tourbier-header-height: 88px;
    }

    .tourbier-header__inner {
        display: grid;
        width: calc(100% - 48px);
        grid-template-columns: 230px minmax(0, 1fr) auto;
        gap: 20px;
    }

    .tourbier-header__logo {
        width: 230px;
        flex-basis: 230px;
    }

    .tourbier-header__logo img {
        max-height: 58px;
    }

    .tourbier-header__mobile-toggle,
    .tourbier-header__backdrop {
        display: none;
    }

    .tourbier-header__navigation {
        position: static;
        display: flex;
        width: 100%;
        height: auto;
        max-height: none;
        min-width: 0;
        padding: 0;
        overflow: visible;
        justify-self: center;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: none;
        visibility: visible;
    }

    .tourbier-header__menu {
        display: flex;
        min-width: 0;
        gap: 1px;
        align-items: center;
    }

    .tourbier-header__menu-item > a,
    .tourbier-header__insurance-trigger > a {
        min-height: 44px;
        padding: 0 8px;
        font-size: 11.5px;
        white-space: nowrap;
    }

    .tourbier-header__insurance-trigger > button {
        width: 28px;
        height: 36px;
        margin-right: 2px;
        flex-basis: 28px;
    }

    .tourbier-header__menu-item--insurance::after,
    .tourbier-header__menu-item--loan::after,
    .tourbier-header__menu-item--wealth::after {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 12px;
        content: "";
    }

    .tourbier-header__dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        display: block;
        width: min(720px, calc(100vw - 48px));
        padding: 16px;
        border: 1px solid var(--tourbier-header-border);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 24px 65px rgba(17, 42, 70, 0.18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity 110ms ease, transform 110ms ease, visibility 0s linear 110ms;
        visibility: hidden;
    }

    .tourbier-header__menu-item--insurance:hover .tourbier-header__dropdown,
    .tourbier-header__menu-item--insurance:focus-within .tourbier-header__dropdown,
    .tourbier-header__menu-item--insurance.is-insurance-open .tourbier-header__dropdown,
    .tourbier-header__menu-item--loan:hover .tourbier-header__dropdown,
    .tourbier-header__menu-item--loan:focus-within .tourbier-header__dropdown,
    .tourbier-header__menu-item--loan.is-loan-open .tourbier-header__dropdown,
    .tourbier-header__menu-item--wealth:hover .tourbier-header__dropdown,
    .tourbier-header__menu-item--wealth:focus-within .tourbier-header__dropdown,
    .tourbier-header__menu-item--wealth.is-wealth-open .tourbier-header__dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
        visibility: visible;
    }

    .tourbier-header__menu-item--insurance:hover .tourbier-header__insurance-trigger svg,
    .tourbier-header__menu-item--insurance:focus-within .tourbier-header__insurance-trigger svg,
    .tourbier-header__menu-item--loan:hover .tourbier-header__insurance-trigger svg,
    .tourbier-header__menu-item--loan:focus-within .tourbier-header__insurance-trigger svg,
    .tourbier-header__menu-item--wealth:hover .tourbier-header__insurance-trigger svg,
    .tourbier-header__menu-item--wealth:focus-within .tourbier-header__insurance-trigger svg {
        transform: rotate(180deg);
    }

    .tourbier-header__dropdown-heading {
        display: flex;
        padding: 3px 6px 14px;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
    }

    .tourbier-header__dropdown-heading > div {
        display: grid;
        gap: 3px;
    }

    .tourbier-header__dropdown-heading span {
        color: var(--tourbier-header-muted);
        font-family: Poppins, Arial, sans-serif;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }

    .tourbier-header__dropdown-heading strong {
        color: #172334;
        font-family: Poppins, Arial, sans-serif;
        font-size: 15px;
        font-weight: 650;
    }

    .tourbier-header__dropdown-heading > a {
        display: inline-flex;
        gap: 7px;
        align-items: center;
        color: var(--tourbier-header-blue);
        font-size: 11px;
        font-weight: 650;
        white-space: nowrap;
    }

    .tourbier-header__insurance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px 10px;
    }

    .tourbier-header__insurance-grid a {
        min-height: 72px;
        padding: 11px 13px;
        grid-template-columns: 40px minmax(0, 1fr);
        transition: color 110ms ease, background-color 110ms ease, transform 110ms ease;
    }

    .tourbier-header__insurance-grid a:hover,
    .tourbier-header__insurance-grid a:focus-visible {
        transform: translateX(2px);
    }

    .tourbier-header__actions {
        display: flex;
        flex: 0 0 auto;
        gap: 7px;
        padding-top: 0;
        align-items: center;
        border-top: 0;
    }

    .tourbier-header__contact {
        min-height: 44px;
        padding: 0 9px 0 14px;
        gap: 8px;
        font-size: 11.5px;
        white-space: nowrap;
    }

    .tourbier-header__partnership {
        min-height: 44px;
        padding: 0 8px 0 12px;
        gap: 7px;
        font-size: 11px;
    }

    .tourbier-header__partnership-arrow {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .tourbier-header__contact-full {
        display: none;
    }

    .tourbier-header__contact-short {
        display: inline;
    }

    .tourbier-header__contact-arrow {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .tourbier-header__socials--mobile {
        display: none;
    }

    .tourbier-header__socials--desktop {
        display: flex;
        gap: 4px;
        justify-self: end;
    }

    .tourbier-header__socials--desktop a {
        width: 34px;
        height: 34px;
    }
}

@media (min-width: 1600px) {
    .tourbier-header__logo {
        width: 270px;
        flex-basis: 270px;
    }

    .tourbier-header__inner {
        grid-template-columns: 270px minmax(0, 1fr) auto;
        gap: 24px;
    }

    .tourbier-header__menu-item > a,
    .tourbier-header__insurance-trigger > a {
        padding-inline: 10px;
        font-size: 12.5px;
    }

    .tourbier-header__navigation {
        gap: 10px;
    }

    .tourbier-header__contact {
        padding-left: 16px;
        font-size: 12px;
    }

    .tourbier-header__partnership {
        padding-left: 14px;
        font-size: 11.5px;
    }

    .tourbier-header__contact-full {
        display: inline;
    }

    .tourbier-header__contact-short {
        display: none;
    }
}

@media (min-width: 1400px) and (max-width: 1699px) {
    .tourbier-header__socials--desktop {
        display: none;
    }
}

@media (min-width: 1640px) {
    .tourbier-header__logo {
        width: 320px;
        flex-basis: 320px;
    }

    .tourbier-header__inner {
        grid-template-columns: 320px minmax(0, 1fr) auto;
        gap: 28px;
    }

    .tourbier-header__menu {
        gap: 3px;
    }

    .tourbier-header__menu-item > a,
    .tourbier-header__insurance-trigger > a {
        padding-inline: 12px;
        font-size: 13px;
    }

    .tourbier-header__contact {
        font-size: 12.5px;
    }

    .tourbier-header__socials--desktop a {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 782px) {
    body.admin-bar {
        --tourbier-admin-offset: 46px;
    }
}

@media (max-width: 600px) {
    :root {
        --tourbier-header-height: 72px;
    }

    .tourbier-header__inner {
        width: calc(100% - 28px);
    }

    .tourbier-header__logo {
        width: 218px;
        flex-basis: 218px;
    }

    .tourbier-header__logo img {
        max-height: 51px;
    }

    .tourbier-header__mobile-toggle {
        min-width: 48px;
        width: 48px;
        padding: 0;
        flex-basis: 48px;
        border-radius: 50%;
    }

    .tourbier-header__mobile-toggle > span:first-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .tourbier-header__navigation {
        top: calc(var(--tourbier-admin-offset) + var(--tourbier-header-height) + 8px);
        right: 8px;
        width: calc(100% - 16px);
        height: auto;
        max-height: calc(100dvh - var(--tourbier-admin-offset) - var(--tourbier-header-height) - 16px);
        padding: 14px;
        gap: 14px;
        border-radius: 16px;
    }

    .tourbier-header__menu {
        gap: 1px;
    }

    .tourbier-header__menu-item > a,
    .tourbier-header__insurance-trigger > a {
        min-height: 44px;
        font-size: 13.5px;
    }

    .tourbier-header__actions {
        gap: 12px;
        padding-top: 14px;
    }

    .tourbier-header__partnership {
        min-height: 46px;
    }

    .tourbier-header__contact {
        min-height: 46px;
    }

    .tourbier-header__socials a {
        width: 38px;
        height: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tourbier-header *,
    .tourbier-header *::before,
    .tourbier-header *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
