.tpl-header-vertion-1 .h1-header ul li {
    list-style: none;
}

.tpl-header-vertion-1 .h1-header ul li a {
    display: flex;
}

.tpl-header-vertion-1 .h1-header {
    position: absolute;
    z-index: 99;
    max-width: 1290px;
    width: 100%;
    top: 63px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 96px;
    background: rgb(255 255 255 / 80%);
    padding: 10px 0;
    font-family: inherit;
    padding-left: 20px;
}

.tpl-header-vertion-1 .h1-header.is-scrolled {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    top: 10px;
    position: fixed;
    animation: h1SlideDown 0.35s ease;
}

@keyframes h1SlideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.tpl-header-vertion-1 .h1-header__row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tpl-header-vertion-1 .h1-header__mobile-toggle {
    display: none;
    cursor: pointer;
    color: var(--bv-primary);
}

.tpl-header-vertion-1 .h1-header__mobile-toggle svg {
    width: 25px;
    height: 25px;
}

.tpl-header-vertion-1 .h1-header__logo {
    flex-shrink: 0;
}

.tpl-header-vertion-1 .h1-header__logo-link {
    display: flex;
    align-items: center;
}

.tpl-header-vertion-1 .h1-header__logo-link img {
    max-width: 200px;
    height: auto;
}

.tpl-header-vertion-1 .h1-nav {
    flex: 1;
}

.tpl-header-vertion-1 .h1-nav__close,
.tpl-header-vertion-1 .h1-nav__logo-mobile,
.tpl-header-vertion-1 .h1-nav__search-mobile {
    display: none;
}

.tpl-header-vertion-1 .h1-nav__list {
    display: flex;
    gap: 27px;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tpl-header-vertion-1 .h1-nav__list .item-level1 {
    position: relative;
    border-radius: 35px;
    padding: 2px 0;
}

.tpl-header-vertion-1 .h1-nav__list .item-level1 .name-level1 {
    display: inline-flex;
    padding: 7px 15px;
    border-radius: 4px;
    color: var(--bv-primary);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tpl-header-vertion-1 .h1-nav__list .item-level1.active,
.tpl-header-vertion-1 .h1-nav__list .item-level1:hover {
    /* active/hover state */
}

.tpl-header-vertion-1 .h1-nav__list .item-level1.active>a,
.tpl-header-vertion-1 .h1-nav__list .item-level1:hover>a {
    background: var(--bv-primary);
    color: #fff !important;
    border-radius: 35px;
}

.tpl-header-vertion-1 .h1-nav__list .item-level1 .svg-icon {
    display: none;
}

.tpl-header-vertion-1 .h1-nav__list .level2 {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    padding: 5px 0;
    display: none;
    z-index: 10;
    border-radius: 5px;
    width: max-content;
    list-style: none;
}

.tpl-header-vertion-1 .h1-nav__list .item-level1:hover>.level2 {
    display: block;
}

.tpl-header-vertion-1 .h1-nav__list .level2 .item-level2 {
    padding: 5px 10px;
}

.tpl-header-vertion-1 .h1-nav__list .level2 .name-level2 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
    align-items: center;
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.tpl-header-vertion-1 .h1-nav__list .level2 .name-level2:hover {
    color: var(--bv-primary);
    background: #f5f5f5;
    border-radius: 4px;
}

.tpl-header-vertion-1 .h1-nav__list .level2 .name-level2 .icon-arrow {
    display: flex;
    transform: rotate(-90deg);
}

.tpl-header-vertion-1 .h1-nav__list .level2 .name-level2 .icon-arrow svg {
    width: 19px;
    height: 19px;
}

.tpl-header-vertion-1 .h1-nav__list .level3 {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    z-index: 10;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    min-width: 200px;
    padding: 5px 0;
    border-radius: 5px;
    list-style: none;
}

.tpl-header-vertion-1 .h1-nav__list .item-level2:hover>.level3 {
    display: block;
}

.tpl-header-vertion-1 .h1-nav__list .level3 .item-level3 {
    padding: 5px 10px;
}

.tpl-header-vertion-1 .h1-header__actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.tpl-header-vertion-1 .h1-lang {
    position: relative;
    cursor: pointer;
}

.tpl-header-vertion-1 .h1-lang__current {
    color: var(--color-2, #333);
    font-weight: 700;
    font-size: 15px;
}

.tpl-header-vertion-1 .h1-lang__icon {
    width: 9px;
    height: 9px;
    display: inline-block;
    background: url(../../../images/icon-arrow-down.png) no-repeat center center / contain;
}

.tpl-header-vertion-1 .h1-lang:hover .h1-lang__list {
    display: block;
}

.tpl-header-vertion-1 .h1-lang__list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    display: none;
    min-width: 130px;
    z-index: 10;
    list-style: none;
    margin: 0;
}

.tpl-header-vertion-1 .h1-lang__item {
    margin: 0;
    padding: 0;
}

.tpl-header-vertion-1 .h1-lang__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--color-2, #333);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tpl-header-vertion-1 .h1-lang__link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.tpl-header-vertion-1 .h1-lang__link:hover,
.tpl-header-vertion-1 .h1-lang__link.active {
    background: var(--color-2, var(--bv-primary));
    color: white;
}

.tpl-header-vertion-1 .h1-search {
    position: relative;
}

.tpl-header-vertion-1 .h1-search__toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    background-color: var(--bv-primary);
    padding: 9px;
    border-radius: 25px;
}

.tpl-header-vertion-1 .h1-search__text {
    display: none;
}

.tpl-header-vertion-1 .h1-search__icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tpl-header-vertion-1 .h1-search__icon svg {
    width: 24px;
    height: 24px;
    transform: rotate(85deg);
}

.tpl-header-vertion-1 .h1-search__dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    display: block;
    transition: all 0.3s ease;
    z-index: 20;
}

.tpl-header-vertion-1 .h1-search__dropdown.active {
    height: auto;
    visibility: visible;
    opacity: 1;
}

.tpl-header-vertion-1 .h1-search-form {
    position: relative;
    display: flex;
    margin-bottom: 0px;
}

.tpl-header-vertion-1 .h1-search-form__input {
    width: 100%;
    background: white;
    border-radius: 25px;
    min-width: 256px;
    height: 48px;
    font-size: 16px;
    line-height: 45px;
    padding: 3px 50px 3px 15px;
    color: var(--color-2, #333);
    border: 1px solid #f3f3f3;
    outline: none;
    font-family: inherit;
}

.tpl-header-vertion-1 .h1-search-form__btn {
    color: white;
    background-color: var(--bv-primary);
    border-radius: 25px;
    padding: 8px 12px;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.tpl-header-vertion-1 .h1-search-form__btn:hover {
    opacity: 0.85;
}

.tpl-header-vertion-1 .h1-search-form__btn svg {
    width: 18px;
    height: 18px;
}

.tpl-header-vertion-1 .h1-search-form__close {
    color: white;
    background-color: var(--bv-primary);
    border-radius: 25px;
    padding: 4px;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    display: none;
}

.tpl-header-vertion-1 .h1-search-form__close svg {
    width: 18px;
    height: 18px;
}

.tpl-header-vertion-1 .h1-overlay {
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
}

.tpl-header-vertion-1 .h1-overlay.active {
    opacity: 0.5;
    visibility: visible;
}

@media (min-width: 1290px) {
    .tpl-header-vertion-1 .h1-search__text {
        display: inline;
    }

    .tpl-header-vertion-1 .h1-search__dropdown {
        width: 1100px;
        top: 0;
    }

    .tpl-header-vertion-1 .h1-search__dropdown .h1-search-form__input {
        background: var(--color-2, var(--bv-primary));
        color: white;
        border-radius: 25px;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

    .tpl-header-vertion-1 .h1-search__dropdown .h1-search-form__input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .tpl-header-vertion-1 .h1-search-form__close {
        display: block;
    }

    .tpl-header-vertion-1 .h1-search-form__btn {
        right: 44px;
    }
}

@media (max-width: 1290px) {
    .tpl-header-vertion-1 .h1-nav__list {
        gap: 5px;
    }

    .tpl-header-vertion-1 .h1-nav__list .item-level1 {
        padding: 2px 0;
    }

    .tpl-header-vertion-1 .h1-nav__list .item-level1 .name-level1 {
        padding: 5px 10px;
    }
}

@media (max-width: 1200px) {
    .tpl-header-vertion-1 .h1-header {
        top: 0;
        border-radius: 0;
    }

    .tpl-header-vertion-1 .h1-header.is-scrolled {
        top: 0;
    }
}

@media (max-width: 1023px) {
    .tpl-header-vertion-1 {
        /* Show hamburger */
        /* Hide desktop search dropdown */
        /* Logo */
        /* Header row layout */
        /* Search button smaller */
        /* Mobile Navigation */
        /* Menu list vertical */
        /* SVG plus icon for mobile submenus */
        /* Dropdown mobile */
    }

    .tpl-header-vertion-1 .h1-header__mobile-toggle {
        display: flex;
        align-items: center;
    }

    .tpl-header-vertion-1 .h1-search__dropdown {
        display: none !important;
    }

    .tpl-header-vertion-1 .h1-header__logo-link {
        justify-content: center;
    }

    .tpl-header-vertion-1 .h1-header__logo-link img {
        max-width: 90px;
    }

    .tpl-header-vertion-1 .h1-header__row {
        justify-content: space-between;
    }

    .tpl-header-vertion-1 .h1-search__toggle {
        padding: 5px;
    }

    .tpl-header-vertion-1 .h1-search__icon {
        width: 25px;
        height: 25px;
    }

    .tpl-header-vertion-1 .h1-search__icon svg {
        width: 15px;
        height: 15px;
    }

    .tpl-header-vertion-1 .h1-nav {
        background: var(--header-bg, #fff);
        border-color: rgba(0, 0, 0, 0.1);
        width: 85%;
        max-width: 440px;
        position: fixed;
        z-index: 101;
        left: 0;
        top: 0;
        bottom: 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
        padding: 15px;
        height: 100vh;
        overflow: auto;
    }

    .tpl-header-vertion-1 .h1-nav.open {
        transform: translateX(0%);
        opacity: 1;
        visibility: visible;
    }

    .tpl-header-vertion-1 .h1-nav__close {
        display: flex;
        position: absolute;
        top: 15px;
        right: 5px;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
        color: #333;
    }

    .tpl-header-vertion-1 .h1-nav__logo-mobile {
        display: block;
        margin-bottom: 15px;
    }

    .tpl-header-vertion-1 .h1-nav__logo-mobile img {
        max-width: 110px;
        width: 100%;
    }

    .tpl-header-vertion-1 .h1-nav__search-mobile {
        display: block;
        margin-bottom: 15px;
    }

    .tpl-header-vertion-1 .h1-nav__search-mobile .h1-search-form__input {
        width: 100%;
        min-width: unset;
        margin-bottom: 0px;
    }

    .tpl-header-vertion-1 .h1-nav__list {
        display: block;
    }

    .tpl-header-vertion-1 .h1-nav__list .item-level1 {
        border-bottom: 1px solid rgba(163, 163, 163, 0.14);
        padding: 5px 0;
        border-radius: 0;
    }

    .tpl-header-vertion-1 .h1-nav__list .item-level1 .name-level1 {
        display: inline-block;
        padding: 5px 0;
        color: #333;
    }

    .tpl-header-vertion-1 .h1-nav__list .item-level1 .name-level1 img {
        width: 22px;
    }

    .tpl-header-vertion-1 .h1-nav__list .item-level1.active>a,
    .tpl-header-vertion-1 .h1-nav__list .item-level1:hover>a {
        background: none;
        color: var(--bv-primary) !important;
        border-radius: 0;
    }

    .tpl-header-vertion-1 .h1-nav__list .item-level1.active {
        margin-bottom: 5px;
    }

    .tpl-header-vertion-1 .h1-nav__list .item-level1 .svg-icon {
        display: block;
        width: 18px;
        height: 18px;
        position: absolute;
        top: 14px;
        right: 0;
        fill: #333;
        cursor: pointer;
    }

    .tpl-header-vertion-1 .h1-nav__list .svg-icon.active .icon-plus-x {
        transform: scaleY(0);
    }

    .tpl-header-vertion-1 .h1-nav__list .svg-icon rect,
    .tpl-header-vertion-1 .h1-nav__list .svg-icon path {
        transition: all cubic-bezier(0.12, 0.67, 0.53, 1) 0.3s;
        transform-origin: center;
    }

    .tpl-header-vertion-1 .h1-nav__list .level2,
    .tpl-header-vertion-1 .h1-nav__list .level3 {
        position: unset;
        background-color: transparent;
        box-shadow: none;
        margin-left: 25px;
        width: calc(100% - 25px);
    }

    .tpl-header-vertion-1 .h1-nav__list .level3 {
        margin-left: 0;
    }

    .tpl-header-vertion-1 .h1-nav__list .level2 .item-level2 {
        padding: 5px 25px 5px 0;
        list-style: circle;
    }

    .tpl-header-vertion-1 .h1-nav__list .level2 .item-level2 .svg-icon {
        top: 8px;
        right: 0;
    }

    .tpl-header-vertion-1 .h1-nav__list .level2 .name-level2 .icon-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .tpl-header-vertion-1 .h1-header__logo-link img {
        max-width: 115px;
    }
}
































































/* header v2  */

.tpl-header-vertion-2 .header-main2 {
    --h2-primary: #006a6a;
    --h2-primary-light: rgba(79, 209, 209, 0.15);
    --h2-primary-container: #4fd1d1;
    --h2-dark: #111c2d;
    --h2-text: #191c1e;
    --h2-text-secondary: #545f73;
    --h2-bg-light: #f7f9fb;
    --h2-border: #e2e8f0;
    --h2-white: #fff;
    --h2-radius: 12px;
    --h2-transition: 0.3s ease;
    position: relative;
    z-index: 99;
}

.tpl-header-vertion-2 .h2-topbar {
    background: #006a6a;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.tpl-header-vertion-2 .h2-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tpl-header-vertion-2 .h2-topbar__left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tpl-header-vertion-2 .h2-topbar__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tpl-header-vertion-2 .h2-topbar__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tpl-header-vertion-2 .h2-topbar__icon {
    display: flex;
    align-items: center;
    color: var(--h2-primary-container);
}

.tpl-header-vertion-2 .h2-topbar__icon svg {
    width: 14px;
    height: 14px;
}

.tpl-header-vertion-2 .h2-branding {
    background: var(--h2-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--h2-border);
}

.tpl-header-vertion-2 .h2-branding__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.tpl-header-vertion-2 .h2-contact-block__value a {
    color: #006a6a;
}

.tpl-header-vertion-2 .h2-branding__logo a {
    display: flex;
    align-items: center;
}

.tpl-header-vertion-2 .h2-branding__logo img {
    max-width: 254px;
    height: auto;
}

.tpl-header-vertion-2 .h2-branding__contacts {
    display: flex;
    align-items: center;
    gap: 32px;
}

.tpl-header-vertion-2 .h2-contact-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tpl-header-vertion-2 .h2-contact-block__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--h2-radius);
    background: var(--h2-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tpl-header-vertion-2 .h2-contact-block__icon svg {
    width: 22px;
    height: 22px;
    color: var(--h2-primary);
}

.tpl-header-vertion-2 .h2-contact-block__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tpl-header-vertion-2 .h2-contact-block__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--h2-text-secondary);
}

.tpl-header-vertion-2 .h2-contact-block__value {
    font-size: 15px;
    font-weight: 700;
    color: #006a6a;
}

.tpl-header-vertion-2 .h2-navbar {
    background: var(--h2-bg-light);
    border-top: 1px solid var(--h2-border);
}

.tpl-header-vertion-2 .h2-navbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.tpl-header-vertion-2 .h2-navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--h2-text);
}

.tpl-header-vertion-2 .h2-navbar__logo-mobile {
    display: none;
}

.tpl-header-vertion-2 .h2-navbar__logo-mobile img {
    max-width: 90px;
    height: auto;
}

.tpl-header-vertion-2 .h2-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tpl-header-vertion-2 .h2-nav__item {
    position: relative;
}

.tpl-header-vertion-2 .h2-nav__link {
    display: block;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--h2-text-secondary);
    text-decoration: none;
    transition: color var(--h2-transition);
    white-space: nowrap;
}

.tpl-header-vertion-2 .h2-nav__link:hover,
.tpl-header-vertion-2 .h2-nav__item.active>.h2-nav__link {
    color: var(--h2-primary);
}

.tpl-header-vertion-2 .h2-nav__item.active>.h2-nav__link {
    border-bottom: 2px solid var(--h2-primary);
    font-weight: 700;
}

.tpl-header-vertion-2 .h2-nav__arrow {
    display: none;
}

.tpl-header-vertion-2 .h2-nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--h2-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0px 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--h2-transition);
}

.tpl-header-vertion-2 .h2-nav__item:hover>.h2-nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tpl-header-vertion-2 .h2-nav__sub-link {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--h2-text-secondary);
    text-decoration: none;
    transition: all var(--h2-transition);
}

.tpl-header-vertion-2 .h2-nav__sub-link:hover {
    background: var(--h2-primary-light);
    color: var(--h2-primary);
}

.tpl-header-vertion-2 .h2-nav__close,
.tpl-header-vertion-2 .h2-nav__logo-menu {
    display: none;
}

.tpl-header-vertion-2 .h2-navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tpl-header-vertion-2 .h2-lang {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background var(--h2-transition);
}

.tpl-header-vertion-2 .h2-lang:hover {
    background: rgba(0, 0, 0, 0.05);
}

.tpl-header-vertion-2 .h2-lang__current {
    font-size: 13px;
    font-weight: 700;
    color: var(--h2-primary);
}

.tpl-header-vertion-2 .h2-lang__arrow {
    display: flex;
    color: var(--h2-primary);
}

.tpl-header-vertion-2 .h2-lang__list {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--h2-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 140px;
    list-style: none;
    margin: 0;
    z-index: 20;
    display: none;
}

.tpl-header-vertion-2 .h2-lang:hover .h2-lang__list {
    display: block;
}

.tpl-header-vertion-2 .h2-lang__option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--h2-text);
    text-decoration: none;
    transition: all var(--h2-transition);
}

.tpl-header-vertion-2 .h2-lang__option img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.tpl-header-vertion-2 .h2-lang__option:hover {
    background: var(--h2-primary);
    color: var(--h2-white);
}

.tpl-header-vertion-2 .h2-search {
    position: relative;
}

.tpl-header-vertion-2 .h2-search__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--h2-primary);
    color: var(--h2-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--h2-transition);
}

.tpl-header-vertion-2 .h2-search__btn:hover {
    background: #055;
    transform: scale(1.05);
}

.tpl-header-vertion-2 .h2-search__btn svg {
    width: 18px;
    height: 18px;
}

.tpl-header-vertion-2 .h2-search__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--h2-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: var(--h2-radius);
    padding: 8px;
    width: 320px;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--h2-transition);
}

.tpl-header-vertion-2 .h2-search__dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tpl-header-vertion-2 .h2-search__form {
    display: flex;
    gap: 0;
    margin-bottom: 0px;
}

.tpl-header-vertion-2 .h2-search__input {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
    border: 1px solid var(--h2-border);
    border-radius: var(--h2-radius) 0 0 var(--h2-radius);
    outline: none;
    font-family: inherit;
    transition: border-color var(--h2-transition);
    margin-bottom: 0px;
}

.tpl-header-vertion-2 .h2-search__input:focus {
    border-color: var(--h2-primary);
}

.tpl-header-vertion-2 .h2-search__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: var(--h2-primary);
    color: var(--h2-white);
    border: none;
    border-radius: 0 var(--h2-radius) var(--h2-radius) 0;
    cursor: pointer;
    transition: background var(--h2-transition);
    height: unset !important;
    line-height: unset;
}

.tpl-header-vertion-2 .h2-search__submit:hover {
    background: #055;
}

.tpl-header-vertion-2 .h2-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #006a6a;
    color: var(--h2-white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--h2-radius);
    box-shadow: 0 4px 16px rgba(0, 106, 106, 0.25);
    transition: all var(--h2-transition);
    white-space: nowrap;
}

.tpl-header-vertion-2 .h2-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 106, 106, 0.35);
    color: var(--h2-white);
}

.tpl-header-vertion-2 .h2-cta-btn svg {
    transition: transform var(--h2-transition);
}

.tpl-header-vertion-2 .h2-cta-btn:hover svg {
    transform: translateX(3px);
}

.tpl-header-vertion-2 .h2-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all var(--h2-transition);
}

.tpl-header-vertion-2 .h2-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tpl-header-vertion-2 .header-main2.is-sticky .h2-topbar {
    display: none;
}

.tpl-header-vertion-2 .header-main2.is-sticky .h2-branding {
    display: none;
}

.tpl-header-vertion-2 .header-main2.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    animation: h2SlideDown 0.35s ease forwards;
}

@keyframes h2SlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1023px) {
    .tpl-header-vertion-2 {
        /* Mobile Slide Nav */
    }

    .tpl-header-vertion-2 .h2-branding__contacts {
        display: none;
    }

    .tpl-header-vertion-2 .h2-branding__inner {
        justify-content: center;
    }

    .tpl-header-vertion-2 .h2-navbar__toggle {
        display: flex;
    }

    .tpl-header-vertion-2 .h2-navbar__logo-mobile {
        display: flex;
        align-items: center;
    }

    .tpl-header-vertion-2 .h2-cta-btn {
        display: none;
    }

    .tpl-header-vertion-2 .h2-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--h2-white);
        z-index: 110;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 20px;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    }

    .tpl-header-vertion-2 .h2-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .tpl-header-vertion-2 .h2-nav__close {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 10px;
        cursor: pointer;
    }

    .tpl-header-vertion-2 .h2-nav__close svg {
        width: 24px;
        height: 24px;
        color: var(--h2-text);
    }

    .tpl-header-vertion-2 .h2-nav__logo-menu {
        display: block;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--h2-border);
    }

    .tpl-header-vertion-2 .h2-nav__logo-menu img {
        max-width: 120px;
    }

    .tpl-header-vertion-2 .h2-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .tpl-header-vertion-2 .h2-nav__item {
        width: 100%;
        border-bottom: 1px solid var(--h2-border);
    }

    .tpl-header-vertion-2 .h2-nav__link {
        padding: 14px 0;
        font-size: 15px;
    }

    .tpl-header-vertion-2 .h2-nav__item.active>.h2-nav__link {
        border-bottom: none;
    }

    .tpl-header-vertion-2 .h2-nav__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 12px;
        width: 32px;
        height: 32px;
        cursor: pointer;
        border-radius: 6px;
        transition: background var(--h2-transition);
    }

    .tpl-header-vertion-2 .h2-nav__arrow:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .tpl-header-vertion-2 .h2-nav__arrow svg {
        transition: transform var(--h2-transition);
    }

    .tpl-header-vertion-2 .h2-nav__arrow.open svg {
        transform: rotate(180deg);
    }

    .tpl-header-vertion-2 .h2-nav__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        display: none;
        margin-left: 16px;
    }

    .tpl-header-vertion-2 .h2-nav__sub.open {
        display: block;
    }

    .tpl-header-vertion-2 .h2-nav__sub-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }
}

@media (max-width: 576px) {
    .tpl-header-vertion-2 .h2-topbar__left {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .tpl-header-vertion-2 .h2-topbar__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .tpl-header-vertion-2 .h2-branding__logo img {
        max-width: 100px;
    }

    .tpl-header-vertion-2 .h2-search__dropdown {
        width: 260px;
        right: -40px;
    }
}

@media (min-width: 1200px) {
    .tpl-header-vertion-2 .h2-nav__link {
        font-size: 16px;
    }
}


























































/* header v3  */


.tpl-header-vertion-3 .h3-topbar {
    background: #03625a;
    height: 42px;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #fff;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid #fff;
}

.tpl-header-vertion-3 .h3-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
}

.tpl-header-vertion-3 .h3-topbar__left,
.tpl-header-vertion-3 .h3-topbar__right {
    display: flex;
    align-items: center;
    gap: 0;
}

.tpl-header-vertion-3 .h3-topbar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    white-space: nowrap;
    font-size: 15px;
    color: #fff;
}

.tpl-header-vertion-3 .h3-topbar__left .h3-topbar__item:first-child {
    padding-left: 0;
}

.tpl-header-vertion-3 .h3-topbar__item span {
    color: #fff;
}

.tpl-header-vertion-3 .h3-topbar__icon {
    display: flex;
    align-items: center;
    color: #fff;
    opacity: 0.85;
}

.tpl-header-vertion-3 .h3-topbar__divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.tpl-header-vertion-3 .h3-topbar__lang {
    position: relative;
    padding: 0 14px;
}

.tpl-header-vertion-3 .h3-topbar__lang-btn {
    background: none;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 15px;
    padding: 0;
}

.tpl-header-vertion-3 .h3-topbar__lang-btn:hover {
    opacity: 0.85;
}

.tpl-header-vertion-3 .h3-topbar__lang-arrow {
    transition: transform 0.3s ease;
}

.tpl-header-vertion-3 .h3-topbar__lang.open .h3-topbar__lang-arrow {
    transform: rotate(180deg);
}

.tpl-header-vertion-3 .h3-topbar__lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 100;
}

.tpl-header-vertion-3 .h3-topbar__lang.open .h3-topbar__lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tpl-header-vertion-3 .h3-topbar__lang-dropdown li a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s ease;
}

.tpl-header-vertion-3 .h3-topbar__lang-dropdown li a:hover,
.tpl-header-vertion-3 .h3-topbar__lang-dropdown li a.active {
    background: #f0f5ff;
    color: #03786f;
}

.tpl-header-vertion-3 .h3-topbar__social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
}

.tpl-header-vertion-3 .h3-topbar__social-label {
    font-size: 15px;
    margin-right: 4px;
}

.tpl-header-vertion-3 .h3-topbar__social-link {
    color: #fff;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.tpl-header-vertion-3 .h3-topbar__social-link:hover {
    opacity: 0.7;
}

.tpl-header-vertion-3 .h3-navbar {
    background: #03786f;
    height: 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tpl-header-vertion-3 .h3-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: h3SlideDown 0.35s ease;
}

@keyframes h3SlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.tpl-header-vertion-3 .h3-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.tpl-header-vertion-3 .h3-navbar__logo {
    flex-shrink: 0;
    /* margin-right: 40px;
	 */
    background: #fff;
    display: flex;
    align-items: center;
    padding: 12px 100px 12px 30px;
    position: relative;
    z-index: 10;
    align-self: flex-start;
    margin-top: 0;
    min-height: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.tpl-header-vertion-3 .h3-navbar__logo::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 100%;
    width: calc(100% + ((100vw - var(--container)) / 2));
    height: 100%;
    background: white;
    border-radius: 0;
}

.tpl-header-vertion-3 .h3-navbar__logo a {
    display: flex;
    align-items: center;
}

.tpl-header-vertion-3 .h3-navbar__logo img {
    height: 50px !important;
    width: auto !important;
    object-fit: contain !important;
}

.tpl-header-vertion-3 .h3-navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.tpl-header-vertion-3 .h3-navbar__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.tpl-header-vertion-3 .h3-navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.tpl-header-vertion-3 .h3-navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.tpl-header-vertion-3 .h3-navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.tpl-header-vertion-3 .h3-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tpl-header-vertion-3 .h3-nav__close,
.tpl-header-vertion-3 .h3-nav__logo-mobile {
    display: none;
}

.tpl-header-vertion-3 .h3-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.tpl-header-vertion-3 .h3-nav__item {
    position: relative;
}

.tpl-header-vertion-3 .h3-nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 28px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
}

.tpl-header-vertion-3 .h3-nav__link::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.tpl-header-vertion-3 .h3-nav__item:hover .h3-nav__link,
.tpl-header-vertion-3 .h3-nav__item.active .h3-nav__link {
    color: #ffffff;
}

.tpl-header-vertion-3 .h3-nav__item:hover .h3-nav__link::after,
.tpl-header-vertion-3 .h3-nav__item.active .h3-nav__link::after {
    transform: scaleX(1);
}

.tpl-header-vertion-3 .h3-nav__chevron {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.tpl-header-vertion-3 .h3-nav__item:hover .h3-nav__chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.tpl-header-vertion-3 .h3-nav__arrow-mobile {
    display: none;
}

.tpl-header-vertion-3 .h3-nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    list-style: none;
    padding: 0px 0;
    margin: 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 100;
}

.tpl-header-vertion-3 .h3-nav__item:hover>.h3-nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tpl-header-vertion-3 .h3-nav__sub-item {
    list-style: none;
}

.tpl-header-vertion-3 .h3-nav__sub-link {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.tpl-header-vertion-3 .h3-nav__sub-link:hover {
    background: #f0f5ff;
    color: #03786f;
    border-left-color: #03786f;
    padding-left: 24px;
}

.tpl-header-vertion-3 .h3-navbar__actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 20px;
    flex-shrink: 0;
}

.tpl-header-vertion-3 .h3-navbar__action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.tpl-header-vertion-3 .h3-navbar__action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tpl-header-vertion-3 .h3-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ff4c1c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tpl-header-vertion-3 .h3-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #03786f;
    padding: 16px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 99;
}

.tpl-header-vertion-3 .h3-search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tpl-header-vertion-3 .h3-search-form {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tpl-header-vertion-3 .h3-search-input {
    flex: 1;
    padding: 9px 16px;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    margin-bottom: 0px;
}

.tpl-header-vertion-3 .h3-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.tpl-header-vertion-3 .h3-search-submit {
    background: #fff;
    border: none;
    color: #03786f;
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.tpl-header-vertion-3 .h3-search-submit:hover {
    background: #fff;
}

.tpl-header-vertion-3 .h3-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tpl-header-vertion-3 .h3-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tpl-header-vertion-3 .main-header03.has-sticky {
    padding-bottom: 80px;
}

@media (max-width: 1024px) {
    .tpl-header-vertion-3 {
        /* Top bar: hide on mobile */
        /* Navbar adjustments */
        /* Show hamburger */
        /* Mobile Navigation */
        /* Submenu mobile */
        /* Navbar actions */
    }

    .tpl-header-vertion-3 .h3-topbar {
        display: none;
    }

    .tpl-header-vertion-3 .h3-navbar {
        height: 60px;
    }

    .tpl-header-vertion-3 .h3-navbar__inner {
        height: 60px;
    }

    .tpl-header-vertion-3 .h3-navbar__logo {
        box-shadow: none;
        background: #fff;
        padding: 0;
        align-self: initial;
    }

    .tpl-header-vertion-3 .h3-navbar__logo img {
        height: 36px;
    }

    .tpl-header-vertion-3 .h3-navbar__toggle {
        display: flex;
    }

    .tpl-header-vertion-3 .h3-nav {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    }

    .tpl-header-vertion-3 .h3-nav.open {
        left: 0;
    }

    .tpl-header-vertion-3 .h3-nav__close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 16px;
        color: #333;
        cursor: pointer;
    }

    .tpl-header-vertion-3 .h3-nav__logo-mobile {
        display: block;
        padding: 0 16px 16px;
        border-bottom: 1px solid #eee;
        margin-bottom: 8px;
    }

    .tpl-header-vertion-3 .h3-nav__logo-mobile img {
        height: 36px;
        width: auto;
    }

    .tpl-header-vertion-3 .h3-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .tpl-header-vertion-3 .h3-nav__item {
        border-bottom: 1px solid #f0f0f0;
    }

    .tpl-header-vertion-3 .h3-nav__link {
        color: #333;
        padding: 14px 16px;
        font-size: 14px;
    }

    .tpl-header-vertion-3 .h3-nav__link::after {
        display: none;
    }

    .tpl-header-vertion-3 .h3-nav__item:hover .h3-nav__link,
    .tpl-header-vertion-3 .h3-nav__item.active .h3-nav__link {
        color: #03786f;
    }

    .tpl-header-vertion-3 .h3-nav__chevron {
        display: none;
    }

    .tpl-header-vertion-3 .h3-nav__arrow-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        width: 48px;
        height: 48px;
        cursor: pointer;
        color: #666;
    }

    .tpl-header-vertion-3 .h3-nav__arrow-mobile.open {
        transform: rotate(180deg);
    }

    .tpl-header-vertion-3 .h3-nav__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.35s ease;
    }

    .tpl-header-vertion-3 .h3-nav__sub.open {
        max-height: 500px;
        padding: 4px 0;
    }

    .tpl-header-vertion-3 .h3-nav__sub-link {
        padding: 10px 16px 10px 32px;
        font-size: 13px;
    }

    .tpl-header-vertion-3 .h3-nav__sub-link:hover {
        padding-left: 36px;
    }

    .tpl-header-vertion-3 .h3-navbar__actions {
        margin-left: auto;
        gap: 2px;
    }

    .tpl-header-vertion-3 .h3-navbar__action-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .tpl-header-vertion-3 .h3-navbar__logo img {
        height: 30px;
    }

    .tpl-header-vertion-3 .h3-cart-badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: 0;
        right: 0;
    }
}











































/* header v4  */

.tpl-header-vertion-4 .main-header06 {
    font-size: 14px;
    color: #333;
    position: relative;
    z-index: 100;
}

.tpl-header-vertion-4 .h6-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: #fff;
}

.tpl-header-vertion-4 .h6-logo {
    width: 20%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    z-index: 2;
}

.tpl-header-vertion-4 .h6-logo__shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: -20px;
    bottom: 0;
    z-index: -1;
    /* overflow: hidden;
	 */
    pointer-events: none;
}

.tpl-header-vertion-4 .h6-logo__shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 184px;
}

.tpl-header-vertion-4 .h6-logo__shape--red {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: right bottom;
    /* height: 184px;
	 */
}

.tpl-header-vertion-4 .h6-logo__shape--pattern {
    background-repeat: repeat;
    background-size: auto;
    background-position: right top;
}

.tpl-header-vertion-4 .h6-logo__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.tpl-header-vertion-4 .h6-logo__link img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.tpl-header-vertion-4 .h6-content {
    width: 59%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
}

.tpl-header-vertion-4 .h6-topbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 33px;
    border-bottom: 1px solid #eee;
}

.tpl-header-vertion-4 .h6-topbar__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tpl-header-vertion-4 .h6-topbar__social-link {
    color: #555;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.tpl-header-vertion-4 .h6-topbar__social-link:hover {
    color: var(--bv-primary);
}

.tpl-header-vertion-4 .h6-topbar__info {
    display: flex;
    align-items: center;
    gap: 0;
}

.tpl-header-vertion-4 .h6-topbar__info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
}

.tpl-header-vertion-4 .h6-topbar__info-icon {
    display: flex;
    align-items: center;
    color: var(--bv-primary);
}

.tpl-header-vertion-4 .h6-topbar__info-icon--red {
    color: var(--bv-primary);
}

.tpl-header-vertion-4 .h6-topbar__info-text {
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.tpl-header-vertion-4 .h6-topbar__info-text:hover {
    color: var(--bv-primary);
}

.tpl-header-vertion-4 .h6-topbar__info-divider {
    width: 1px;
    height: 18px;
    background: #ddd;
    flex-shrink: 0;
}

.tpl-header-vertion-4 .h6-bottom__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding-right: 10px;
}

.tpl-header-vertion-4 .h6-nav {
    display: flex;
    align-items: center;
}

.tpl-header-vertion-4 .h6-nav__close,
.tpl-header-vertion-4 .h6-nav__logo-mobile,
.tpl-header-vertion-4 .h6-nav__search-mobile {
    display: none;
}

.tpl-header-vertion-4 .h6-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.tpl-header-vertion-4 .h6-nav__item {
    position: relative;
}

.tpl-header-vertion-4 .h6-nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 18px 23px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
}

.tpl-header-vertion-4 .h6-nav__item:hover .h6-nav__link,
.tpl-header-vertion-4 .h6-nav__item.active .h6-nav__link {
    color: var(--bv-primary);
}

.tpl-header-vertion-4 .h6-nav__chevron {
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.tpl-header-vertion-4 .h6-nav__item:hover .h6-nav__chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.tpl-header-vertion-4 .h6-nav__arrow-mobile {
    display: none;
}

.tpl-header-vertion-4 .h6-nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 2px solid var(--bv-primary);
}

.tpl-header-vertion-4 .h6-nav__item:hover>.h6-nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tpl-header-vertion-4 .h6-nav__sub-item {
    list-style: none;
}

.tpl-header-vertion-4 .h6-nav__sub-link {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.tpl-header-vertion-4 .h6-nav__sub-link:hover {
    background: #fff5f5;
    color: var(--bv-primary);
    border-left-color: var(--bv-primary);
    padding-left: 24px;
}

.tpl-header-vertion-4 .h6-navbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0;
}

.tpl-header-vertion-4 .h6-navbar__cart {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--bv-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.tpl-header-vertion-4 .h6-navbar__cart:hover {
    opacity: 0.7;
}

.tpl-header-vertion-4 .h6-cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--bv-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tpl-header-vertion-4 .h6-navbar__search {
    display: flex;
    align-items: center;
    border-left: 1px solid #eee;
    margin-left: 10px;
    padding-left: 10px;
}

.tpl-header-vertion-4 .h6-search-form {
    display: flex;
    align-items: center;
    /* border: 1px solid #e0e0e0;
	 */
    /* border-radius: 30px;
	 */
    position: relative;
    height: 40px;
    margin-bottom: 0px;
}

.tpl-header-vertion-4 .h6-search-input {
    padding: 0 16px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    width: auto;
    height: 100%;
    font-family: inherit;
    background: transparent;
    margin-bottom: 0px;
}

.tpl-header-vertion-4 .h6-search-input::placeholder {
    color: #999;
}

.tpl-header-vertion-4 .h6-search-btn {
    background: transparent;
    border: none;
    color: #999;
    padding: 0 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    transition: color 0.3s ease;
    position: absolute;
    right: 0;
}

.tpl-header-vertion-4 .h6-search-btn:hover {
    color: var(--bv-primary);
}

.tpl-header-vertion-4 .h6-phone {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tpl-header-vertion-4 .h6-navbar__call {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: var(--bv-primary);
    color: #fff;
    padding: 10px 24px 10px 14px;
    border-radius: 40px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.tpl-header-vertion-4 .h6-navbar__call:hover {
    background: #b71c1c;
}

.tpl-header-vertion-4 .h6-navbar__call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.tpl-header-vertion-4 .h6-navbar__call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.tpl-header-vertion-4 .h6-navbar__call-text small {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 400;
}

.tpl-header-vertion-4 .h6-navbar__call-text strong {
    font-size: 15px;
    font-weight: 700;
}

.tpl-header-vertion-4 .h6-navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.tpl-header-vertion-4 .h6-navbar__toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.tpl-header-vertion-4 .h6-navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.tpl-header-vertion-4 .h6-navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.tpl-header-vertion-4 .h6-navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.tpl-header-vertion-4 .h6-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tpl-header-vertion-4 .h6-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tpl-header-vertion-4 .main-header06.has-sticky .h6-bottom__content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: h6SlideDown 0.35s ease;
    z-index: 1000;
    padding: 0 20px;
}

@keyframes h6SlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.tpl-header-vertion-4 .main-header06.has-sticky {
    padding-bottom: 55px;
}

@media (max-width: 1300px) {
    .tpl-header-vertion-4 .h6-phone {
        display: none;
    }

    .tpl-header-vertion-4 .h6-content {
        flex: 1;
        width: auto;
    }
}

@media (max-width: 1200px) {
    .tpl-header-vertion-4 .h6-navbar__call-text {
        display: none;
    }

    .tpl-header-vertion-4 .h6-navbar__call {
        padding: 10px;
        border-radius: 50%;
    }

    .tpl-header-vertion-4 .h6-search-input {
        width: 100px;
    }

    .tpl-header-vertion-4 .h6-logo {
        width: 18%;
    }

    .tpl-header-vertion-4 .h6-content {
        width: 60%;
    }

    .tpl-header-vertion-4 .h6-phone {
        width: 22%;
    }
}

@media (max-width: 1024px) {
    .tpl-header-vertion-2 .h2-topbar {
        display: none;
    }

    .tpl-header-vertion-2 .h2-branding {
        display: none;
    }

    .tpl-header-vertion-2 .h2-navbar {
        padding: 10px 0px;
    }

    .tpl-header-vertion-4 .h6-inner {
        flex-wrap: nowrap;
        align-items: center;
        height: 60px;
        padding: 0 15px;
    }

    .tpl-header-vertion-4 .h6-logo {
        width: auto;
        padding: 0;
    }

    .tpl-header-vertion-4 .h6-logo__shapes {
        display: none;
    }

    .tpl-header-vertion-4 .h6-logo__link img {
        height: 36px;
        filter: none;
    }

    .tpl-header-vertion-4 .h6-topbar__content {
        display: none;
    }

    .tpl-header-vertion-4 .h6-phone {
        display: none;
    }

    .tpl-header-vertion-4 .h6-navbar__toggle {
        display: flex;
        margin-left: auto;
    }

    .tpl-header-vertion-4 .h6-nav {
        position: fixed;
        top: 0;
        left: -360px;
        width: 360px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    }

    .tpl-header-vertion-4 .h6-nav.open {
        left: 0;
    }

    .tpl-header-vertion-4 .h6-nav__close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 16px;
        color: #333;
        cursor: pointer;
    }

    .tpl-header-vertion-4 .h6-nav__logo-mobile {
        display: block;
        padding: 0 24px 24px;
    }

    .tpl-header-vertion-4 .h6-nav__logo-mobile img {
        height: 48px;
        width: auto;
    }

    .tpl-header-vertion-4 .h6-nav__search-mobile {
        display: block;
        padding: 0 24px 20px;
    }

    .tpl-header-vertion-4 .h6-nav__search-form-mobile {
        display: flex;
        align-items: center;
        border: 1px solid #e0e0e0;
        border-radius: 30px;
        overflow: hidden;
        height: 46px;
    }

    .tpl-header-vertion-4 .h6-nav__search-input-mobile {
        flex: 1;
        padding: 0 20px;
        border: none;
        outline: none;
        font-size: 14px;
        color: #333;
        height: 100%;
        font-family: inherit;
    }

    .tpl-header-vertion-4 .h6-nav__search-input-mobile::placeholder {
        color: #aaa;
    }

    .tpl-header-vertion-4 .h6-nav__search-btn-mobile {
        background: transparent;
        border: none;
        color: #999;
        padding: 0 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .tpl-header-vertion-4 .h6-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .tpl-header-vertion-4 .h6-nav__item {
        border-bottom: 1px solid #f0f0f0;
    }

    .tpl-header-vertion-4 .h6-nav__link {
        color: #222;
        padding: 10px 39px 10px 15px;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .tpl-header-vertion-4 .h6-nav__chevron {
        display: none;
    }

    .tpl-header-vertion-4 .h6-nav__arrow-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 8px;
        top: 8px;
        width: 27px;
        height: 27px;
        cursor: pointer;
        color: #fff;
        background: #222;
        border-radius: 4px;
    }

    .tpl-header-vertion-4 .h6-nav__arrow-mobile.open {
        background: var(--bv-primary);
    }

    .tpl-header-vertion-4 .h6-nav__arrow-mobile.open svg {
        transform: rotate(90deg);
    }

    .tpl-header-vertion-4 .h6-nav__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.35s ease;
    }

    .tpl-header-vertion-4 .h6-nav__sub.open {
        max-height: 500px;
        padding: 4px 0;
    }

    .tpl-header-vertion-4 .h6-nav__sub-link {
        padding: 12px 24px 12px 40px;
        font-size: 14px;
    }

    .tpl-header-vertion-4 .h6-nav__sub-link:hover {
        padding-left: 44px;
    }

    .tpl-header-vertion-4 .h6-bottom__content {
        border-top: none;
    }

    .tpl-header-vertion-4 .h6-navbar__search {
        display: none;
    }
}

@media (max-width: 576px) {
    .tpl-header-vertion-4 .h6-navbar__toggle span {
        width: 22px;
        height: 2px;
    }

    .tpl-header-vertion-4 .h6-logo__link img {
        height: 30px;
    }
}





















































/* header v5  */


.tpl-header-vertion-5 .main-header06 {
    font-size: 14px;
    color: #333;
    position: relative;
    z-index: 100;
}

.tpl-header-vertion-5 .h6-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: #fff;
}

.tpl-header-vertion-5 .h6-logo {
    width: 20%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    z-index: 2;
}

.tpl-header-vertion-5 .h6-logo__shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: -20px;
    bottom: 0;
    z-index: -1;
    /* overflow: hidden;
	 */
    pointer-events: none;
}

.tpl-header-vertion-5 .h6-logo__shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 184px;
}

.tpl-header-vertion-5 .h6-logo__shape--red {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: right bottom;
    /* height: 184px;
	 */
}

.tpl-header-vertion-5 .h6-logo__shape--pattern {
    background-repeat: repeat;
    background-size: auto;
    background-position: right top;
}

.tpl-header-vertion-5 .h6-logo__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.tpl-header-vertion-5 .h6-logo__link img {
    height: 50px !important;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

.tpl-header-vertion-5 .h6-content {
    width: 59%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
}

.tpl-header-vertion-5 .h6-topbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 33px;
    border-bottom: 1px solid #eee;
}

.tpl-header-vertion-5 .h6-topbar__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tpl-header-vertion-5 .h6-topbar__social-link {
    color: #555;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    border-radius: 15px;
}

.tpl-header-vertion-5 .h6-topbar__social-link:hover {
    color: var(--bv-primary);
}

.tpl-header-vertion-5 .h6-topbar__info {
    display: flex;
    align-items: center;
    gap: 0;
}

.tpl-header-vertion-5 .h6-topbar__info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
}

.tpl-header-vertion-5 .h6-topbar__info-icon {
    display: flex;
    align-items: center;
    color: var(--bv-primary);
}

.tpl-header-vertion-5 .h6-topbar__info-icon--red {
    color: var(--bv-primary);
}

.tpl-header-vertion-5 .h6-topbar__info-text {
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.tpl-header-vertion-5 .h6-topbar__info-text:hover {
    color: var(--bv-primary);
}

.tpl-header-vertion-5 .h6-topbar__info-divider {
    width: 1px;
    height: 18px;
    background: #ddd;
    flex-shrink: 0;
}

.tpl-header-vertion-5 .h6-bottom__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding-right: 10px;
}

.tpl-header-vertion-5 .h6-nav {
    display: flex;
    align-items: center;
}

.tpl-header-vertion-5 .h6-nav__close,
.tpl-header-vertion-5 .h6-nav__logo-mobile,
.tpl-header-vertion-5 .h6-nav__search-mobile {
    display: none;
}

.tpl-header-vertion-5 .h6-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.tpl-header-vertion-5 .h6-nav__item {
    position: relative;
}

.tpl-header-vertion-5 .h6-nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 18px 18px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
}

.tpl-header-vertion-5 .h6-nav__item:hover .h6-nav__link,
.tpl-header-vertion-5 .h6-nav__item.active .h6-nav__link {
    color: var(--bv-primary);
}

.tpl-header-vertion-5 .h6-nav__chevron {
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.tpl-header-vertion-5 .h6-nav__item:hover .h6-nav__chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.tpl-header-vertion-5 .h6-nav__arrow-mobile {
    display: none;
}

.tpl-header-vertion-5 .h6-nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 2px solid var(--bv-primary);
}

.tpl-header-vertion-5 .h6-nav__item:hover>.h6-nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tpl-header-vertion-5 .h6-nav__sub-item {
    list-style: none;
}

.tpl-header-vertion-5 .h6-nav__sub-link {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.tpl-header-vertion-5 .h6-nav__sub-link:hover {
    background: #fff5f5;
    color: var(--bv-primary);
    border-left-color: var(--bv-primary);
    padding-left: 24px;
}

.tpl-header-vertion-5 .h6-navbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0;
}

.tpl-header-vertion-5 .h6-navbar__cart {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--bv-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.tpl-header-vertion-5 .h6-navbar__cart:hover {
    opacity: 0.7;
}

.tpl-header-vertion-5 .h6-cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--bv-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tpl-header-vertion-5 .h6-navbar__search {
    display: flex;
    align-items: center;
    border-left: 1px solid #eee;
    margin-left: 10px;
    padding-left: 10px;
    display: none;
}

.tpl-header-vertion-5 .h6-search-form {
    display: flex;
    align-items: center;
    /* border: 1px solid #e0e0e0;
	 */
    /* border-radius: 30px;
	 */
    position: relative;
    height: 40px;
    margin-bottom: 0px;
}

.tpl-header-vertion-5 .h6-search-input {
    padding: 0 16px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    width: auto;
    height: 100%;
    font-family: inherit;
    background: transparent;
    margin-bottom: 0px;
}

.tpl-header-vertion-5 .h6-search-input::placeholder {
    color: #999;
}

.tpl-header-vertion-5 .h6-search-btn {
    background: transparent;
    border: none;
    color: #999;
    padding: 0 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    transition: color 0.3s ease;
    position: absolute;
    right: 0;
}

.tpl-header-vertion-5 .h6-search-btn:hover {
    color: var(--bv-primary);
}

.tpl-header-vertion-5 .h6-phone {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tpl-header-vertion-5 .h6-navbar__call {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: var(--bv-secondary);
    color: #fff;
    padding: 10px 24px 10px 14px;
    border-radius: 40px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.tpl-header-vertion-5 .h6-navbar__call:hover {
    background: #b71c1c;
}

.tpl-header-vertion-5 .h6-navbar__call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.tpl-header-vertion-5 .h6-navbar__call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.tpl-header-vertion-5 .h6-navbar__call-text small {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 400;
}

.tpl-header-vertion-5 .h6-navbar__call-text strong {
    font-size: 15px;
    font-weight: 700;
}

.tpl-header-vertion-5 .h6-navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.tpl-header-vertion-5 .h6-navbar__toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.tpl-header-vertion-5 .h6-navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.tpl-header-vertion-5 .h6-navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.tpl-header-vertion-5 .h6-navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.tpl-header-vertion-5 .h6-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tpl-header-vertion-5 .h6-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tpl-header-vertion-5 .main-header06.has-sticky .h6-bottom__content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: h6SlideDown 0.35s ease;
    z-index: 1000;
    padding: 0 20px;
}

@keyframes h6SlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.tpl-header-vertion-5 .main-header06.has-sticky {
    padding-bottom: 55px;
}

@media (max-width: 1300px) {
    .tpl-header-vertion-5 .h6-phone {
        display: none;
    }

    .tpl-header-vertion-5 .h6-content {
        flex: 1;
        width: auto;
    }
}

@media (max-width: 1200px) {
    .tpl-header-vertion-5 .h6-navbar__call-text {
        display: none;
    }

    .tpl-header-vertion-5 .h6-navbar__call {
        padding: 10px;
        border-radius: 50%;
    }

    .tpl-header-vertion-5 .h6-search-input {
        width: 100px;
    }

    .tpl-header-vertion-5 .h6-logo {
        width: 18%;
    }

    .tpl-header-vertion-5 .h6-content {
        width: 60%;
    }

    .tpl-header-vertion-5 .h6-phone {
        width: 22%;
    }
}

@media (max-width: 1024px) {
    .tpl-header-vertion-5 {
        /* Single column on mobile */
        /* Show hamburger */
        /* Mobile Navigation */
        /* Mobile Search */
        /* Submenu mobile */
        /* Bottom content inside nav */
    }

    .tpl-header-vertion-5 .h6-inner {
        flex-wrap: nowrap;
        align-items: center;
        height: 60px;
        padding: 0 15px;
    }

    .tpl-header-vertion-5 .h6-logo {
        width: auto;
        padding: 0;
    }

    .tpl-header-vertion-5 .h6-logo__shapes {
        display: none;
    }

    .tpl-header-vertion-5 .h6-logo__link img {
        height: 36px;
        filter: none;
    }

    .tpl-header-vertion-5 .h6-topbar__content {
        display: none;
    }

    .tpl-header-vertion-5 .h6-phone {
        display: none;
    }

    .tpl-header-vertion-5 .h6-navbar__toggle {
        display: flex;
        margin-left: auto;
    }

    .tpl-header-vertion-5 .h6-nav {
        position: fixed;
        top: 0;
        left: -360px;
        width: 360px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    }

    .tpl-header-vertion-5 .h6-nav.open {
        left: 0;
    }

    .tpl-header-vertion-5 .h6-nav__close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 16px;
        color: #333;
        cursor: pointer;
    }

    .tpl-header-vertion-5 .h6-nav__logo-mobile {
        display: block;
        padding: 0 24px 24px;
    }

    .tpl-header-vertion-5 .h6-nav__logo-mobile img {
        height: 48px;
        width: auto;
    }

    .tpl-header-vertion-5 .h6-nav__search-mobile {
        display: block;
        padding: 0 24px 20px;
    }

    .tpl-header-vertion-5 .h6-nav__search-form-mobile {
        display: flex;
        align-items: center;
        border: 1px solid #e0e0e0;
        border-radius: 30px;
        overflow: hidden;
        height: 46px;
    }

    .tpl-header-vertion-5 .h6-nav__search-input-mobile {
        flex: 1;
        padding: 0 20px;
        border: none;
        outline: none;
        font-size: 14px;
        color: #333;
        height: 100%;
        font-family: inherit;
    }

    .tpl-header-vertion-5 .h6-nav__search-input-mobile::placeholder {
        color: #aaa;
    }

    .tpl-header-vertion-5 .h6-nav__search-btn-mobile {
        background: transparent;
        border: none;
        color: #999;
        padding: 0 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .tpl-header-vertion-5 .h6-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .tpl-header-vertion-5 .h6-nav__item {
        border-bottom: 1px solid #f0f0f0;
    }

    .tpl-header-vertion-5 .h6-nav__link {
        color: #222;
        padding: 10px 39px 10px 15px;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .tpl-header-vertion-5 .h6-nav__chevron {
        display: none;
    }

    .tpl-header-vertion-5 .h6-nav__arrow-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 8px;
        top: 8px;
        width: 27px;
        height: 27px;
        cursor: pointer;
        color: #fff;
        background: #222;
        border-radius: 4px;
    }

    .tpl-header-vertion-5 .h6-nav__arrow-mobile.open {
        background: var(--bv-primary);
    }

    .tpl-header-vertion-5 .h6-nav__arrow-mobile.open svg {
        transform: rotate(90deg);
    }

    .tpl-header-vertion-5 .h6-nav__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.35s ease;
    }

    .tpl-header-vertion-5 .h6-nav__sub.open {
        max-height: 500px;
        padding: 4px 0;
    }

    .tpl-header-vertion-5 .h6-nav__sub-link {
        padding: 12px 24px 12px 40px;
        font-size: 14px;
    }

    .tpl-header-vertion-5 .h6-nav__sub-link:hover {
        padding-left: 44px;
    }

    .tpl-header-vertion-5 .h6-bottom__content {
        border-top: none;
    }

    .tpl-header-vertion-5 .h6-navbar__search {
        display: none;
    }
}

@media (max-width: 576px) {
    .tpl-header-vertion-5 .h6-navbar__toggle span {
        width: 22px;
        height: 2px;
    }

    .tpl-header-vertion-5 .h6-logo__link img {
        height: 30px;
    }
}




























































/* header v5  */

.tpl-header-vertion-5 .header08 {
    /* position: fixed; */
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
}

.tpl-header-vertion-5 .h8-topbar {
    background: var(--bv-header-top-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    position: relative;
    z-index: 101;
    color: var(--bv-header-top-text);
}

.tpl-header-vertion-5 .h8-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

.tpl-header-vertion-5 .h8-topbar__info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-left: 334px;
}

.tpl-header-vertion-5 .h8-topbar__info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.tpl-header-vertion-5 .h8-topbar__info-item:hover {
    color: #fff;
}

.tpl-header-vertion-5 .h8-topbar__info-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.tpl-header-vertion-5 .h8-topbar__social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tpl-header-vertion-5 .h8-topbar__social a {
    color: #d0d5e0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.tpl-header-vertion-5 .h8-topbar__social a:hover {
    color: #fff;
}

.tpl-header-vertion-5 .h8-navbar {
    background: var(--bv-header-main-bg) !important;
    color: var(--bv-header-main-text);
    position: relative;
    z-index: 101;
    transition: all 0.35s ease;
}

.tpl-header-vertion-5 .h8-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: h8SlideDown 0.35s ease;
}

@keyframes h8SlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.tpl-header-vertion-5 .h8-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    position: relative;
}

.tpl-header-vertion-5 .h8-logo {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 45px 0 0;
    margin-right: -45px;
    z-index: 5;
    align-self: stretch;
}

.tpl-header-vertion-5 .h8-logo::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500%;
    height: 300px;
    background: #fff;
    transform: skew(15deg);
    z-index: -1;
}

.tpl-header-vertion-5 .h8-logo::before {
    content: "";
    position: absolute;
    bottom: 10px;
    right: -8px;
    width: 100%;
    height: 300px;
    background: #cfd2d5;
    transform: skew(15deg);
    z-index: -2;
}

.tpl-header-vertion-5 .h8-logo__bg,
.tpl-header-vertion-5 .h8-logo__bg-edge {
    display: none;
}

.tpl-header-vertion-5 .h8-logo__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.tpl-header-vertion-5 .h8-logo__link img {
    height: 45px !important;
    width: auto !important;
    object-fit: contain !important;
    position: relative;
    top: -22px;
}

.tpl-header-vertion-5 .h8-menu {
    display: flex;
    align-items: center;
    margin-left: 136px;
}

.tpl-header-vertion-5 .h8-menu__close,
.tpl-header-vertion-5 .h8-menu__logo-mobile {
    display: none;
}

.tpl-header-vertion-5 .h8-menu__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.tpl-header-vertion-5 .h8-menu__item {
    position: relative;
}

.tpl-header-vertion-5 .h8-menu__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 17px 18px;
    color: var(--bv-header-main-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
}

.tpl-header-vertion-5 .h8-menu__item:hover .h8-menu__link,
.tpl-header-vertion-5 .h8-menu__item.active .h8-menu__link {
    color: var(--bv-header-main-text);
}

.tpl-header-vertion-5 .h8-navbar.sticky .h8-menu__link {
    color: var(--bv-primary);
}

.tpl-header-vertion-5 .h8-navbar.sticky .h8-menu__item:hover .h8-menu__link,
.tpl-header-vertion-5 .h8-navbar.sticky .h8-menu__item.active .h8-menu__link {
    color: var(--bv-primary);
}

.tpl-header-vertion-5 .h8-menu__chevron {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.tpl-header-vertion-5 .h8-menu__item:hover .h8-menu__chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.tpl-header-vertion-5 .h8-menu__arrow-mobile {
    display: none;
}

.tpl-header-vertion-5 .h8-menu__sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 110;
    border-top: 3px solid var(--bv-header-main-bg);
}

.tpl-header-vertion-5 .h8-menu__item:hover>.h8-menu__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tpl-header-vertion-5 .h8-menu__sub li {
    list-style: none;
}

.tpl-header-vertion-5 .h8-menu__sub a {
    display: block;
    padding: 10px 22px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.tpl-header-vertion-5 .h8-menu__sub a:hover {
    background: #f0f4ff;
    color: var(--bv-header-main-bg);
    border-left-color: var(--bv-header-main-bg);
    padding-left: 26px;
}

.tpl-header-vertion-5 .h8-navbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.tpl-header-vertion-5 .h8-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--bv-primary);
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tpl-header-vertion-5 .h8-btn-cta:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgb(134 134 134 / 35%);
}

.tpl-header-vertion-5 .h8-navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.tpl-header-vertion-5 .h8-navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: red;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.tpl-header-vertion-5 .h8-navbar.sticky .h8-navbar__toggle span {
    background: var(--bv-primary);
}

.tpl-header-vertion-5 .h8-navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.tpl-header-vertion-5 .h8-navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.tpl-header-vertion-5 .h8-navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.tpl-header-vertion-5 .h8-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tpl-header-vertion-5 .h8-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tpl-header-vertion-5 .header08.has-sticky {
    /* padding-bottom: 100px;
	 */
}

.tpl-header-vertion-5 .header08.has-sticky .h8-navbar__inner {
    height: auto;
}

.tpl-header-vertion-5 .header08.has-sticky .h8-logo {
    margin: 0;
}

.tpl-header-vertion-5 .header08.has-sticky .h8-logo__link img {
    top: 0;
}

.tpl-header-vertion-5 .header08.has-sticky .h8-logo:before {
    display: none;
}

.tpl-header-vertion-5 .header08.has-sticky .h8-menu__link {
    padding: 22px 18px;
}

@media (max-width: 1200px) {
    .tpl-header-vertion-5 .h8-btn-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tpl-header-vertion-5 .h8-menu {
        margin-left: 30px;
    }

    .tpl-header-vertion-5 .h8-menu__link {
        padding: 38px 12px;
        font-size: 14px;
    }

    .tpl-header-vertion-5 .h8-topbar__info {
        padding-left: 200px;
    }
}

@media (max-width: 1024px) {
    .tpl-header-vertion-5 {
        /* Hide top bar */
        /* Reset logo */
        /* Navbar height */
        /* Show hamburger */
        /* Hide CTA on mobile */
        /* Mobile Menu */
        /* Submenu mobile */
    }

    .tpl-header-vertion-5 .h8-topbar {
        display: none;
    }

    .tpl-header-vertion-5 .h8-navbar {
        background: white;
    }

    .tpl-header-vertion-5 .h8-logo {
        position: relative;
        padding: 0;
        margin-right: 0;
    }

    .tpl-header-vertion-5 .h8-logo::after,
    .tpl-header-vertion-5 .h8-logo::before {
        display: none;
    }

    .tpl-header-vertion-5 .h8-logo__link img {
        height: 36px;
        top: 0;
    }

    .tpl-header-vertion-5 .h8-navbar__inner {
        height: 60px;
    }

    .tpl-header-vertion-5 .header08.has-sticky {
        padding-bottom: 60px;
    }

    .tpl-header-vertion-5 .h8-navbar__toggle {
        display: flex;
    }

    .tpl-header-vertion-5 .h8-btn-cta {
        display: none;
    }

    .tpl-header-vertion-5 .h8-menu {
        position: fixed;
        top: 0;
        left: -360px;
        width: 360px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
        margin-left: 0;
    }

    .tpl-header-vertion-5 .h8-menu.open {
        left: 0;
    }

    .tpl-header-vertion-5 .h8-menu__close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 16px;
        color: #333;
        cursor: pointer;
    }

    .tpl-header-vertion-5 .h8-menu__logo-mobile {
        display: block;
        padding: 0 24px 24px;
    }

    .tpl-header-vertion-5 .h8-menu__logo-mobile img {
        height: 48px;
        width: auto;
    }

    .tpl-header-vertion-5 .h8-menu__list {
        flex-direction: column;
        align-items: stretch;
    }

    .tpl-header-vertion-5 .h8-menu__item {
        border-bottom: 1px solid #f0f0f0;
    }

    .tpl-header-vertion-5 .h8-menu__link {
        color: #222 !important;
        padding: 12px 40px 12px 20px;
        font-size: 15px;
        font-weight: 600;
    }

    .tpl-header-vertion-5 .h8-menu__chevron {
        display: none;
    }

    .tpl-header-vertion-5 .h8-menu__arrow-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 8px;
        top: 8px;
        width: 27px;
        height: 27px;
        cursor: pointer;
        color: #fff;
        background: var(--bv-primary);
        border-radius: 4px;
    }

    .tpl-header-vertion-5 .h8-menu__arrow-mobile.open {
        background: var(--bv-primary);
    }

    .tpl-header-vertion-5 .h8-menu__arrow-mobile.open svg {
        transform: rotate(90deg);
    }

    .tpl-header-vertion-5 .h8-menu__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.35s ease;
    }

    .tpl-header-vertion-5 .h8-menu__sub.open {
        max-height: 500px;
        padding: 4px 0;
    }

    .tpl-header-vertion-5 .h8-menu__sub a {
        padding: 12px 24px 12px 40px;
        font-size: 14px;
    }

    .tpl-header-vertion-5 .h8-menu__sub a:hover {
        padding-left: 44px;
    }
}

@media (max-width: 576px) {
    .tpl-header-vertion-5 .h8-navbar__toggle span {
        width: 22px;
    }

    .tpl-header-vertion-5 .h8-logo__link img {
        height: 30px;
    }
}


























































/*/////////////////////////////////////// header dich vu ///////////////////////////////////// */
/* .header-section-servicer-v1 */

.header-section-servicer-v1 .header04 {
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 101;
    margin-top: 20px;
}

.header-section-servicer-v1 .header04--sticky {
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.15);
    animation: header04SlideDown 0.5s linear forwards;
    z-index: 101;
    margin-top: 0;
    background-color: var(--bv-header-main-bg);
    padding: 5px 0;
}

@keyframes header04SlideDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-section-servicer-v1 .header04__container {
    max-width: 100%;
    padding: 0 40px;
}

.header-section-servicer-v1 .header04__inner {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.header-section-servicer-v1 .header04__logo-link {
    display: flex;
}

.header-section-servicer-v1 .header04__logo-link img {
    height: 51px !important;
}

.header-section-servicer-v1 .header04__nav-close {
    display: none;
}

.header-section-servicer-v1 .header04__nav-logo {
    display: none;
}

.header-section-servicer-v1 .header04__nav-logo img {
    max-width: 95px;
    width: 100%;
}

.header-section-servicer-v1 .header04__menu {
    display: flex;
    gap: 10px 15px;
    align-items: center;
    background-color: var(--bv-header-top-bg);
    padding: 12px 14px;
    border-radius: 50px;
    list-style: none;
    margin: 0;
}

.header-section-servicer-v1 .header04__menu-item {
    position: relative;
    list-style: none;
}

.header-section-servicer-v1 .header04__menu-link {
    display: inline-flex;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    gap: 2px;
    padding: 6px 14px;
    text-decoration: none;
    color: var(--bv-header-main-text);
    transition: background 0.3s, color 0.3s;
}

.header-section-servicer-v1 .header04__menu-link:hover,
.header-section-servicer-v1 .header04__menu-item--active>.header04__menu-link {
    background: var(--bv-secondary);
    color: var(--bv-header-top-text) !important;
}

.header-section-servicer-v1 .header04__menu-arrow {
    display: flex;
}

.header-section-servicer-v1 .header04__menu-arrow svg {
    width: 20px;
    height: 20px;
    transform: translateY(2px);
}

.header-section-servicer-v1 .header04__menu-link>.header04__menu-arrow svg path {
    stroke: currentColor;
}

.header-section-servicer-v1 .header04__menu-toggle {
    display: none;
}

.header-section-servicer-v1 .header04__menu-toggle rect,
.header-section-servicer-v1 .header04__menu-toggle path {
    transition: all cubic-bezier(0.12, 0.67, 0.53, 1) 0.3s;
    transform-origin: center;
}

.header-section-servicer-v1 .header04__menu-toggle--active .header04__menu-toggle-x {
    transform: scaleY(0);
}

.header-section-servicer-v1 .header04__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 10;
    border-radius: 5px;
    width: max-content;
    list-style: none;
}

.header-section-servicer-v1 .header04__submenu-item {
    padding: 5px 20px;
    position: relative;
    list-style: none;
}

.header-section-servicer-v1 .header04__submenu-link {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.header-section-servicer-v1 .header04__submenu-link:hover {
    color: #e79c16;
}

.header-section-servicer-v1 .header04__submenu-link .header04__menu-arrow {
    transform: rotate(-90deg);
}

.header-section-servicer-v1 .header04__submenu--level3 {
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 10;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 5px 0;
    border-radius: 5px;
    width: max-content;
}

@media (min-width: 1201px) {
    .header-section-servicer-v1 .header04__menu-item--has-children:hover>.header04__submenu {
        opacity: 1;
        visibility: visible;
    }

    .header-section-servicer-v1 .header04__submenu-item--has-children:hover>.header04__submenu--level3 {
        opacity: 1;
        visibility: visible;
    }
}

.header-section-servicer-v1 .header04__right {
    display: flex;
    gap: 5px 15px;
    align-items: center;
}

.header-section-servicer-v1 .header04__search-trigger {
    position: relative;
    cursor: pointer;
    display: flex;
}

.header-section-servicer-v1 .header04__search-trigger svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.header-section-servicer-v1 .header04__cart {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.header-section-servicer-v1 .header04__cart-icon {
    position: relative;
    display: flex;
}

.header-section-servicer-v1 .header04__cart-icon svg {
    width: 25px;
    height: 25px;
}

.header-section-servicer-v1 .header04__cart-icon svg path {
    stroke: currentColor;
}

.header-section-servicer-v1 .header04__cart-count {
    position: absolute;
    top: -4px;
    right: -7px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 10px;
    color: #fff;
    background: var(--bv-primary);
}

.header-section-servicer-v1 .header04__dots {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-section-servicer-v1 .header04__dots svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.header-section-servicer-v1 .header04__hamburger {
    color: #fff;
    display: none;
    text-decoration: none;
}

.header-section-servicer-v1 .header04__hamburger svg {
    width: 25px;
    height: 25px;
}

.header-section-servicer-v1 .header04__overlay {
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-section-servicer-v1 .header04__overlay--active {
    opacity: 0.5;
    visibility: visible;
}

.header-section-servicer-v1 .header04__sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 370px;
    height: 100vh;
    background: #fff;
    z-index: 200;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-section-servicer-v1 .header04__sidebar--open {
    transform: translateX(0);
}

.header-section-servicer-v1 .header04__sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-section-servicer-v1 .header04__sidebar-close svg {
    width: 14px;
    height: 14px;
    stroke: #444;
    fill: none;
    stroke-width: 2.2;
}

.header-section-servicer-v1 .header04__sidebar-logo {
    margin-bottom: 18px;
}

.header-section-servicer-v1 .header04__sidebar-logo img {
    max-width: 125px;
    width: 100%;
}

.header-section-servicer-v1 .header04__sidebar-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 28px;
}

.header-section-servicer-v1 .header04__sidebar-contact {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.header-section-servicer-v1 .header04__sidebar-contact-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-section-servicer-v1 .header04__sidebar-contact-icon img {
    width: 26px;
    height: 26px;
}

.header-section-servicer-v1 .header04__sidebar-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-section-servicer-v1 .header04__sidebar-contact-info h3 {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    padding-left: 0;
    margin: 0;
}

.header-section-servicer-v1 .header04__sidebar-contact-info p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.header-section-servicer-v1 .header04__sidebar-socials ul {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    list-style: none;
    padding: 0;
}

.header-section-servicer-v1 .header04__sidebar-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s;
}

.header-section-servicer-v1 .header04__sidebar-socials a:hover {
    border-color: #e79c16;
}

.header-section-servicer-v1 .header04__sidebar-socials a img {
    width: 19px !important;
}

.header-section-servicer-v1 .header04__sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 100;
    display: none;
}

.header-section-servicer-v1 .header04__sidebar-overlay--open {
    display: block;
}

.header-section-servicer-v1 .header04__search-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.38s ease;
}

.header-section-servicer-v1 .header04__search-modal--open {
    opacity: 1;
    pointer-events: all;
}

.header-section-servicer-v1 .header04__search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 9, 7, 0.72);
    backdrop-filter: blur(14px) saturate(0.7);
    -webkit-backdrop-filter: blur(14px) saturate(0.7);
    cursor: pointer;
}

.header-section-servicer-v1 .header04__search-modal-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    transform: translateY(-24px);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-section-servicer-v1 .header04__search-modal--open .header04__search-modal-panel {
    transform: translateY(0);
}

.header-section-servicer-v1 .header04__search-modal-top {
    background: #fff;
    padding: 40px 48px 44px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.header-section-servicer-v1 .header04__search-modal-form {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1.5px solid rgba(180, 140, 130, 0.22);
    padding-bottom: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.header-section-servicer-v1 .header04__search-modal-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.header-section-servicer-v1 .header04__search-modal-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s, transform 0.18s;
    box-shadow: 0 8px 24px rgba(232, 136, 122, 0.35);
}

.header-section-servicer-v1 .header04__search-modal-btn svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-section-servicer-v1 .header04__search-modal-btn:hover {
    background: #333;
    transform: scale(1.05);
}

@media (max-width: 1400px) {
    .header-section-servicer-v1 .header04__menu-link {
        font-size: 14px;
    }

    .header-section-servicer-v1 .header04__menu {
        gap: 10px 3px;
    }
}

@media (max-width: 1200px) {
    .header-section-servicer-v1 .header04__dots {
        display: none;
    }

    .header-section-servicer-v1 .header04__menu-item {
        border-bottom: 1px solid #fff 24;
        padding: 8px 0;
    }

    .header-section-servicer-v1 .header04__menu-toggle {
        display: block;
        width: 18px;
        height: 18px;
        position: absolute;
        top: 14px;
        right: 0;
        cursor: pointer;
    }

    .header-section-servicer-v1 .header04__submenu,
    .header-section-servicer-v1 .header04__submenu--level3 {
        position: unset;
        background-color: transparent;
        box-shadow: none;
        margin-left: 15px;
        width: 100%;
        transition: 0s;
        display: none;
        opacity: 1;
        visibility: visible;
        padding-left: 16px;
    }

    .header-section-servicer-v1 .header04__submenu-item {
        padding: 5px 25px 5px 0;
        color: #000;
        list-style: disc;
    }

    .header-section-servicer-v1 .header04__submenu-item .header04__menu-toggle {
        top: 8px;
        right: 11px;
    }

    .header-section-servicer-v1 .header04__submenu--level3 .header04__submenu-item {
        list-style: circle;
        padding: 5px 0;
    }

    .header-section-servicer-v1 .header04__menu-arrow {
        display: none;
    }

    .header-section-servicer-v1 .header04__hamburger {
        display: flex;
    }

    .header-section-servicer-v1 .header04__nav {
        background: #fff;
        border-color: rgba(0, 0, 0, 0.1);
        color: #fff;
        width: 85%;
        max-width: 440px;
        position: fixed;
        z-index: 101;
        left: 0;
        top: 0;
        bottom: 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding: 15px;
        height: 100vh;
        overflow: auto;
    }

    .header-section-servicer-v1 .header04__nav--active {
        transform: translateX(0%);
        opacity: 1;
        visibility: visible;
    }

    .header-section-servicer-v1 .header04__nav-close {
        display: flex;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .header-section-servicer-v1 .header04__nav-close svg {
        width: 25px;
        height: 25px;
    }

    .header-section-servicer-v1 .header04__nav-logo {
        display: block;
        margin-bottom: 15px;
    }

    .header-section-servicer-v1 .header04__menu {
        display: block;
        padding: 0;
        background: transparent;
    }

    .header-section-servicer-v1 .header04__menu-link {
        display: inline-block;
        padding: 0;
        background: transparent !important;
        color: #65442b !important;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header-section-servicer-v1 .header04__nav-logo img {
        max-width: 177px;
    }

    .header-section-servicer-v1 .header04__right {
        gap: 5px 20px;
    }

    .header-section-servicer-v1 .header04 {
        border-radius: 0;
        padding: 10px 0;
        margin-top: 0;
    }

    .header-section-servicer-v1 .header04__container {
        padding: 0 19px;
    }
}

@media (max-width: 575px) {
    .header-section-servicer-v1 .header04__logo-link img {
        max-width: 276px;
        height: 36px !important;
    }
}




















































/* .header-section-servicer-v2  */

.header-section-servicer-v2 .h9-header {
    /* position: fixed; */
    width: 100%;
    left: 0;
    z-index: 100;
    transition: all 0.35s ease;
    width: 100%;
    right: 0;
    top: 0;
}

.header-section-servicer-v2 .h9-topbar {
    background: var(--bv-header-top-bg);
    font-size: 14px;
    color: var(--bv-header-top-text);
    position: relative;
    z-index: 101;
}

.header-section-servicer-v2 .h9-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
}

.header-section-servicer-v2 .h9-topbar__left,
.header-section-servicer-v2 .h9-topbar__right {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-section-servicer-v2 .h9-topbar__item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.header-section-servicer-v2 .h9-topbar__item svg {
    color: var(--bv-secondary);
    flex-shrink: 0;
}

.header-section-servicer-v2 .h9-topbar__divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.header-section-servicer-v2 .h9-topbar__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-section-servicer-v2 .h9-topbar__link:hover {
    color: var(--bv-secondary);
}

.header-section-servicer-v2 .h9-topbar__link svg {
    color: var(--bv-secondary);
    flex-shrink: 0;
}

.header-section-servicer-v2 .h9-navbar {
    background: var(--bv-header-main-bg);
    color: var(--bv-header-main-text);
    position: relative;
    z-index: 100;
    /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
	 */
    transition: all 0.35s ease;
    z-index: 9999;
}


@media (min-width: 1800px) {
    .header-section-servicer-v2 .h9-navbar::before {
        -webkit-mask-image: url(../images/header_bg_shape.png);
        mask-image: url(../images/header_bg_shape.png);
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        -webkit-mask-position: center center;
        mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }
}

.header-section-servicer-v2 .h9-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: h9SlideDown 0.35s ease;
}

@keyframes h9SlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-section-servicer-v2 .h9-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.header-section-servicer-v2 .h9-navbar__logo {
    flex-shrink: 0;
}

.header-section-servicer-v2 .h9-logo__link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-section-servicer-v2 .h9-logo__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.header-section-servicer-v2 .h9-logo__icon svg {
    width: 50px;
    height: 50px;
}

.header-section-servicer-v2 .h9-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-section-servicer-v2 .h9-logo__text strong {
    font-size: 26px;
    font-weight: 800;
    color: #0a1121;
    letter-spacing: 2px;
    font-family: 'Inter', 'Outfit', system-ui, sans-serif;
}

.header-section-servicer-v2 .h9-logo__text small {
    font-size: 10px;
    color: #0a1121;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.7;
}

.header-section-servicer-v2 .h9-menu__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.header-section-servicer-v2 .h9-menu__close,
.header-section-servicer-v2 .h9-menu__logo-mobile {
    display: none;
}

.header-section-servicer-v2 .h9-menu__item {
    position: relative;
}

.header-section-servicer-v2 .h9-menu__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 30px 18px;
    color: var(--bv-header-main-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-section-servicer-v2 .h9-menu__link:hover,
.header-section-servicer-v2 .h9-menu__item.active>.h9-menu__link {
    color: var(--bv-secondary);
}

.header-section-servicer-v2 .h9-menu__chevron {
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.header-section-servicer-v2 .h9-menu__item:hover>.h9-menu__link .h9-menu__chevron {
    transform: rotate(180deg);
}

.header-section-servicer-v2 .h9-menu__sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 110;
    border-top: 3px solid var(--bv-secondary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 6px 6px;
}

.header-section-servicer-v2 .h9-menu__item:hover>.h9-menu__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-section-servicer-v2 .h9-menu__sub li {
    margin: 0;
}

.header-section-servicer-v2 .h9-menu__sub a {
    display: block;
    padding: 10px 24px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.header-section-servicer-v2 .h9-menu__sub a:hover {
    background: #fef2f0;
    color: var(--bv-secondary);
    border-left-color: var(--bv-secondary);
    padding-left: 28px;
}

.header-section-servicer-v2 .h9-menu__arrow-mobile {
    display: none;
}

.header-section-servicer-v2 .h9-search {
    flex-shrink: 0;
}

.header-section-servicer-v2 .h9-search__form {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
    background: #f8f8f8;
    transition: border-color 0.3s ease;
    margin-bottom: 0px;
}

.header-section-servicer-v2 .h9-search__form:focus-within {
    border-color: var(--bv-secondary);
}

.header-section-servicer-v2 .h9-search__input {
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    width: 180px;
    /* padding-bottom: 0px; */
    height: unset;
    line-height: unset;
    margin-bottom: 0px;
}

.header-section-servicer-v2 .h9-search__input::placeholder {
    color: #999;
}

.header-section-servicer-v2 .h9-search__btn {
    width: 42px;
    height: 42px;
    border: none;
    background: var(--bv-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 2px;
    transition: background 0.3s ease;
}

.header-section-servicer-v2 .h9-search__btn:hover {
    background: var(--bv-secondary);
}

.header-section-servicer-v2 .h9-navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.header-section-servicer-v2 .h9-navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0a1121;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-section-servicer-v2 .h9-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.header-section-servicer-v2 .h9-overlay.active {
    opacity: 1;
    visibility: visible;
}

.header-section-servicer-v2 .h9-header.has-sticky .h9-navbar__inner {
    min-height: 65px;
}

.header-section-servicer-v2 .h9-header.has-sticky .h9-menu__link {
    padding: 22px 18px;
}

.header-section-servicer-v2 .h9-menu__close svg path {
    fill: #fff;
    stroke: #fff;
    color: #Fff;
}

.header-section-servicer-v2 .h9-menu__close svg path {
    stroke: #000;
}

@media (max-width: 1199px) {
    .header-section-servicer-v2 .h9-menu__link {
        padding: 30px 12px;
        font-size: 15px;
    }

    .header-section-servicer-v2 .h9-search__input {
        width: 140px;
    }
}

@media (max-width: 991px) {
    .header-section-servicer-v2 {
        /* Hide topbar left on tablet */
        /* Mobile toggle */
        /* Mobile search */
        /* Slide-out navigation */
    }

    .header-section-servicer-v2 .h9-topbar__left {
        display: none;
    }

    .header-section-servicer-v2 .h9-topbar__right {
        width: 100%;
        justify-content: center;
    }

    .header-section-servicer-v2 .h9-navbar__toggle {
        display: flex;
    }

    .header-section-servicer-v2 .h9-search {
        display: none;
    }

    .header-section-servicer-v2 .h9-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 360px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        z-index: 200;
        overflow-y: auto;
        transition: right 0.35s ease;
        display: flex;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        padding-top: 0;
    }

    .header-section-servicer-v2 .h9-menu.open {
        right: 0;
    }

    .header-section-servicer-v2 .h9-menu__close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 15px 20px;
        cursor: pointer;
        color: #333;
    }

    .header-section-servicer-v2 .h9-menu__close:hover {
        color: var(--bv-secondary);
    }

    .header-section-servicer-v2 .h9-menu__logo-mobile {
        display: block;
        padding: 0 20px 15px;
        border-bottom: 1px solid #eee;
    }

    .header-section-servicer-v2 .h9-menu__logo-mobile img {
        height: 40px;
    }

    .header-section-servicer-v2 .h9-menu__list {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
    }

    .header-section-servicer-v2 .h9-menu__item {
        border-bottom: 1px solid #f0f0f0;
    }

    .header-section-servicer-v2 .h9-menu__link {
        padding: 14px 20px;
        justify-content: space-between;
    }

    .header-section-servicer-v2 .h9-menu__chevron {
        display: none;
    }

    .header-section-servicer-v2 .h9-menu__arrow-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 10px;
        top: 10px;
        width: 32px;
        height: 32px;
        cursor: pointer;
        color: #666;
        background: #f5f5f5;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .header-section-servicer-v2 .h9-menu__arrow-mobile:hover {
        background: var(--bv-secondary);
        color: #fff;
    }

    .header-section-servicer-v2 .h9-menu__arrow-mobile.open svg {
        transform: rotate(90deg);
    }

    .header-section-servicer-v2 .h9-menu__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: #f9f9f9;
        display: none;
        padding: 5px 0;
    }

    .header-section-servicer-v2 .h9-menu__sub.open {
        display: block;
    }

    .header-section-servicer-v2 .h9-menu__sub a {
        padding: 10px 20px 10px 35px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .header-section-servicer-v2 .h9-topbar {
        font-size: 12px;
    }

    .header-section-servicer-v2 .h9-topbar__link {
        padding: 0 8px;
        font-size: 12px;
    }

    .header-section-servicer-v2 .h9-topbar__link svg {
        display: none;
    }

    .header-section-servicer-v2 .h9-navbar__inner {
        min-height: 65px;
    }

    .header-section-servicer-v2 .h9-logo__text strong {
        font-size: 20px;
    }

    .header-section-servicer-v2 .h9-logo__icon svg {
        width: 38px;
        height: 38px;
    }
}
















































/* .header-section-servicer-v3 */



.header-section-servicer-v3 .h10-header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    --container: 1880px;
}

.header-section-servicer-v3 .h10-topbar {
    background: var(--bv-header-top-bg);
    font-size: 14px;
    color: var(--bv-header-top-text);
    position: relative;
    z-index: 90;
}

.header-section-servicer-v3 .h10-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
}

.header-section-servicer-v3 .h10-topbar__left,
.header-section-servicer-v3 .h10-topbar__right {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-section-servicer-v3 .h10-topbar__item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.header-section-servicer-v3 .h10-topbar__item svg {
    color: var(--bv-secondary);
    flex-shrink: 0;
}

.header-section-servicer-v3 .h10-logo__link img {
    height: 47px !important;
}

.header-section-servicer-v3 .h10-topbar__divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.header-section-servicer-v3 .h10-topbar__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-section-servicer-v3 .h10-topbar__link:hover {
    color: var(--bv-secondary);
}

.header-section-servicer-v3 .h10-topbar__link svg {
    color: var(--bv-secondary);
    flex-shrink: 0;
}

.header-section-servicer-v3 .h10-navbar {
    position: relative;
    z-index: 100;
    padding: 12px 0;
}

.header-section-servicer-v3 .h10-navbar__pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: #ffffff;
	 */
    border-radius: 60px;
    padding: 0 6px 0 6px;
    min-height: 72px;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	 */
    transition: all 0.35s ease;
    gap: 16px;
}

.header-section-servicer-v3 .h10-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 6px 0;
    background: var(--bv-header-main-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: h10SlideDown 0.35s ease;
}

.header-section-servicer-v3 .h10-navbar.sticky .h10-navbar__pill {
    box-shadow: none;
    min-height: 60px;
}

@keyframes h10SlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-section-servicer-v3 .h10-navbar__logo {
    flex-shrink: 0;
    background: #fff;
    border-radius: 50px;
    padding: 7.5px 24px 7.5px 14px;
    margin-right: 10px;
    /* border: 1px solid #eee;
	 */
}

.header-section-servicer-v3 .h10-logo__link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-section-servicer-v3 .h10-logo__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-section-servicer-v3 .h10-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-section-servicer-v3 .h10-logo__text strong {
    font-size: 22px;
    font-weight: 800;
    color: #0a1128;
    letter-spacing: 2px;
    font-family: 'Inter', 'Outfit', system-ui, sans-serif;
}

.header-section-servicer-v3 .h10-logo__text small {
    font-size: 9px;
    color: #0a1128;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.6;
}

.header-section-servicer-v3 .h10-menu {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: white;
    padding: 10px;
    border-radius: 50px;
    min-height: 61px;
}

.header-section-servicer-v3 .h10-search {
    margin-left: auto;
}

.header-section-servicer-v3 .h10-menu__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.header-section-servicer-v3 .h10-menu__close,
.header-section-servicer-v3 .h10-menu__logo-mobile {
    display: none;
}

.header-section-servicer-v3 .h10-menu__item {
    position: relative;
}

.header-section-servicer-v3 .h10-menu__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    color: var(--bv-header-main-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 30px;
}

.header-section-servicer-v3 .h10-menu__link:hover,
.header-section-servicer-v3 .h10-menu__item.active>.h10-menu__link {
    background: var(--bv-secondary);
    color: #fff;
}

.header-section-servicer-v3 .h10-menu__chevron {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.header-section-servicer-v3 .h10-menu__link:hover .h10-menu__chevron,
.header-section-servicer-v3 .h10-menu__item.active>.h10-menu__link .h10-menu__chevron {
    opacity: 1;
}

.header-section-servicer-v3 .h10-menu__item:hover>.h10-menu__link .h10-menu__chevron {
    transform: rotate(180deg);
}

.header-section-servicer-v3 .h10-menu__sub {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #fff;
    min-width: 220px;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 110;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.header-section-servicer-v3 .h10-menu__item:hover>.h10-menu__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-section-servicer-v3 .h10-menu__sub li {
    margin: 0;
}

.header-section-servicer-v3 .h10-menu__sub a {
    display: block;
    padding: 10px 24px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-section-servicer-v3 .h10-menu__sub a:hover {
    color: var(--bv-secondary);
}

.header-section-servicer-v3 .h10-menu__arrow-mobile {
    display: none;
}

.header-section-servicer-v3 .h10-navbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-section-servicer-v3 .h10-search__form {
    display: flex;
    align-items: center;
    /* border: 1px solid #eaeaea;
	 */
    border-radius: 50px;
    overflow: hidden;
    background: #f7f7f7;
    transition: border-color 0.3s ease;
    margin-bottom: 0px;
}

.header-section-servicer-v3 .h10-search__form:focus-within {
    border-color: var(--bv-secondary);
}

.header-section-servicer-v3 .h10-search__input {
    border: none;
    outline: none;
    background: transparent;
    padding: 9px 16px;
    font-size: 13px;
    color: #333;
    width: 140px;
    margin-bottom: 0px;
}

.header-section-servicer-v3 .h10-search__input::placeholder {
    color: #999;
}

.header-section-servicer-v3 .h10-search__btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #0a1128;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 2px;
    transition: background 0.3s ease;
}

.header-section-servicer-v3 .h10-search__btn:hover {
    background: var(--bv-secondary);
}

.header-section-servicer-v3 .h10-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15.71px 38px;
    background: var(--bv-secondary);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.header-section-servicer-v3 .h10-cta:hover {
    background: var(--bv-primary);
    transform: translateY(-1px);
}

.header-section-servicer-v3 .h10-cta svg {
    transition: transform 0.3s ease;
}

.header-section-servicer-v3 .h10-cta:hover svg {
    transform: translateX(3px);
}

.header-section-servicer-v3 .h10-navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.header-section-servicer-v3 .h10-navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0a1128;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-section-servicer-v3 .h10-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.header-section-servicer-v3 .h10-overlay.active {
    opacity: 1;
    visibility: visible;
}

.header-section-servicer-v3 .h10-header.has-sticky .h10-menu__link {
    padding: 8px 16px;
}

@media (max-width: 1399px) {
    .header-section-servicer-v3 .h10-menu__link {
        padding: 10px 14px;
        font-size: 14px;
    }

    .header-section-servicer-v3 .h10-search__input {
        width: 120px;
    }

    .header-section-servicer-v3 .h10-cta {
        padding: 16px 28px;
        font-size: 13px;
    }

    .header-section-servicer-v3 .h10-navbar__logo {
        padding: 6px 18px 6px 10px;
    }

    .header-section-servicer-v3 .h10-navbar__pill {
        gap: 10px;
    }

    .header-section-servicer-v3 .h10-menu {
        padding: 8px;
    }
}

@media (max-width: 1199px) {
    .header-section-servicer-v3 {
        /* Top bar */
        /* Navbar resets */
        /* Logo reset */
        /* Mobile toggle - circular orange button */
        /* Hide CTA on mobile */
        /* === Slide-out menu panel === */
        /* Close button - hidden, use overlay */
        /* Mobile logo */
        /* Menu list */
        /* Menu link with > chevron */
        /* +/- Toggle button */
        /* Open state: parent text turns orange + chevron rotates */
        /* Submenu mobile */
        /* Search inside mobile menu */
    }

    .header-section-servicer-v3 .h10-topbar__left {
        display: none;
    }

    .header-section-servicer-v3 .h10-topbar__right {
        width: 100%;
        justify-content: center;
    }

    .header-section-servicer-v3 .h10-navbar {
        padding: 0;
        background: white;
    }

    .header-section-servicer-v3 .h10-navbar__pill {
        border-radius: 0;
        padding: 0 16px;
        min-height: 65px;
    }

    .header-section-servicer-v3 .h10-navbar__logo {
        border: none;
        border-radius: 0;
        padding: 0;
        margin-right: 0;
        background: transparent;
    }

    .header-section-servicer-v3 .h10-navbar__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: var(--bv-secondary);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        padding: 0;
        gap: 5px;
        flex-direction: column;
        z-index: 110;
    }

    .header-section-servicer-v3 .h10-navbar__toggle span {
        background: #fff;
        width: 20px;
    }

    .header-section-servicer-v3 .h10-cta {
        display: none;
    }

    .header-section-servicer-v3 .h10-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 420px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: #ededed;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        z-index: 200;
        overflow-y: auto;
        transition: left 0.4s ease;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
        /* Reset desktop pill styles */
        flex-wrap: nowrap;
        border-radius: 0;
        padding: 0;
        min-height: auto;
    }

    .header-section-servicer-v3 .h10-menu.open {
        left: 0;
    }

    .header-section-servicer-v3 .h10-menu__close {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .header-section-servicer-v3 .h10-menu__logo-mobile,
    .header-section-servicer-v3 .h10-menu__close {
        display: block;
    }

    .header-section-servicer-v3 .h10-menu__logo-mobile {
        padding: 15px 15px 0;
        order: 2;
    }

    .header-section-servicer-v3 .h10-menu__list {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 0 0;
        order: 4;
    }

    .header-section-servicer-v3 .h10-menu__item {
        border-bottom: 1px solid #ddd;
        position: relative;
    }

    .header-section-servicer-v3 .h10-menu__item:last-child {
        border-bottom: none;
    }

    .header-section-servicer-v3 .h10-menu__link {
        padding: 20px 60px 20px 45px;
        justify-content: flex-start;
        border-radius: 0;
        font-size: 17px;
        font-weight: 700;
        color: #0a1128;
        position: relative;
    }

    .header-section-servicer-v3 .h10-menu__link::before {
        content: "›";
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 22px;
        font-weight: 300;
        color: #0a1128;
        line-height: 1;
    }

    .header-section-servicer-v3 .h10-menu__link:hover,
    .header-section-servicer-v3 .h10-menu__item.active>.h10-menu__link {
        background: transparent;
        color: var(--bv-secondary);
    }

    .header-section-servicer-v3 .h10-menu__link:hover::before,
    .header-section-servicer-v3 .h10-menu__item.active>.h10-menu__link::before {
        color: var(--bv-secondary);
    }

    .header-section-servicer-v3 .h10-menu__chevron {
        display: none;
    }

    .header-section-servicer-v3 .h10-menu__arrow-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        cursor: pointer;
        color: #0a1128;
        background: #e0e0e0;
        border-radius: 50%;
        transition: all 0.3s ease;
        font-size: 20px;
        font-weight: 300;
        line-height: 1;
    }

    .header-section-servicer-v3 .h10-menu__arrow-mobile .icon-minus {
        display: none;
    }

    .header-section-servicer-v3 .h10-menu__arrow-mobile.open {
        background: #e0e0e0;
        color: #0a1128;
    }

    .header-section-servicer-v3 .h10-menu__arrow-mobile.open .icon-plus {
        display: none;
    }

    .header-section-servicer-v3 .h10-menu__arrow-mobile.open .icon-minus {
        display: inline;
    }

    .header-section-servicer-v3 .h10-menu__item.sub-open>.h10-menu__link {
        color: var(--bv-secondary);
    }

    .header-section-servicer-v3 .h10-menu__item.sub-open>.h10-menu__link::before {
        content: "‹";
        color: var(--bv-secondary);
    }

    .header-section-servicer-v3 .h10-menu__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: #ededed;
        display: none;
        padding: 0;
    }

    .header-section-servicer-v3 .h10-menu__sub.open {
        display: block;
    }

    .header-section-servicer-v3 .h10-menu__sub li {
        border-top: 1px solid #ddd;
    }

    .header-section-servicer-v3 .h10-menu__sub a {
        padding: 18px 20px 18px 55px;
        font-size: 16px;
        font-weight: 600;
        color: #0a1128;
        position: relative;
    }

    .header-section-servicer-v3 .h10-menu__sub a::before {
        content: "›";
        position: absolute;
        left: 35px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        font-weight: 300;
        color: #0a1128;
    }

    .header-section-servicer-v3 .h10-menu__sub a:hover {
        color: var(--bv-secondary);
    }

    .header-section-servicer-v3 .h10-menu__sub a:hover::before {
        color: var(--bv-secondary);
    }

    .header-section-servicer-v3 .h10-search {
        margin-left: 0;
        padding: 20px;
        margin-top: auto;
        order: 3;
    }

    .header-section-servicer-v3 .h10-search__form {
        width: 100%;
        background: #e0e0e0;
    }

    .header-section-servicer-v3 .h10-search__input {
        width: 100%;
        flex: 1;
    }
}

@media (max-width: 575px) {
    .header-section-servicer-v3 .h10-topbar {
        font-size: 12px;
    }

    .header-section-servicer-v3 .h10-topbar__link {
        padding: 0 8px;
        font-size: 12px;
    }

    .header-section-servicer-v3 .h10-topbar__link svg {
        display: none;
    }

    .header-section-servicer-v3 .h10-logo__icon svg {
        width: 34px;
        height: 34px;
    }

    .header-section-servicer-v3 .h10-logo__text strong {
        font-size: 18px;
    }

    .header-section-servicer-v3 .h10-logo__text small {
        font-size: 8px;
    }

    .header-section-servicer-v3 .h10-navbar__toggle {
        width: 42px;
        height: 42px;
    }

    .header-section-servicer-v3 .h10-navbar__toggle span {
        width: 18px;
    }
}
























































/* .header-section-servicer-v4 */


.header-section-servicer-v4 .h11-header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
}

.header-section-servicer-v4 .h11-navbar {
    position: relative;
    z-index: 100;
    padding: 20px 0;
}

.header-section-servicer-v4 .h11-navbar__pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bv-header-main-bg);
    color: var(--bv-header-main-text);
    border-radius: 60px;
    padding: 0 8px 0 28px;
    min-height: 74px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.header-section-servicer-v4 .h11-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: h11SlideDown 0.35s ease;
}

.header-section-servicer-v4 .h11-navbar.sticky .h11-navbar__pill {
    box-shadow: none;
    min-height: 62px;
}

@keyframes h11SlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-section-servicer-v4 .h11-navbar__logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.header-section-servicer-v4 .h11-navbar__logo img {
    width: 160px;
}

.header-section-servicer-v4 .h11-logo__link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-section-servicer-v4 .h11-logo__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-section-servicer-v4 .h11-logo__text {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Inter', 'Outfit', system-ui, sans-serif;
    letter-spacing: -0.5px;
}

.header-section-servicer-v4 .h11-menu__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.header-section-servicer-v4 .h11-menu__close {
    display: none;
}

.header-section-servicer-v4 .h11-menu__item {
    position: relative;
}

.header-section-servicer-v4 .h11-menu__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 27px 18px;
    color: var(--bv-header-main-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-section-servicer-v4 .h11-menu__link:hover,
.header-section-servicer-v4 .h11-menu__item.active>.h11-menu__link {
    color: var(--bv-primary);
}

.header-section-servicer-v4 .h11-menu__chevron {
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.header-section-servicer-v4 .h11-menu__link:hover .h11-menu__chevron,
.header-section-servicer-v4 .h11-menu__item.active>.h11-menu__link .h11-menu__chevron {
    opacity: 1;
    color: var(--bv-primary);
}

.header-section-servicer-v4 .h11-menu__item:hover>.h11-menu__link .h11-menu__chevron {
    transform: rotate(180deg);
}

.header-section-servicer-v4 .h11-menu__sub {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    min-width: 230px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 110;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.header-section-servicer-v4 .h11-menu__item:hover>.h11-menu__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    width: max-content;
}

.header-section-servicer-v4 .h11-menu__sub li {
    margin: 0;
}

.header-section-servicer-v4 .h11-menu__sub a {
    display: block;
    padding: 11px 24px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-section-servicer-v4 .h11-menu__sub a:hover {
    color: var(--bv-primary);
    padding-left: 28px;
}

.header-section-servicer-v4 .h11-menu__arrow-mobile {
    display: none;
}

.header-section-servicer-v4 .h11-navbar__actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.header-section-servicer-v4 .h11-action__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.header-section-servicer-v4 .h11-action__btn .cart-count {
    position: absolute;
    top: 0;
    right: 0;

    min-width: 18px;
    height: 18px;
    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #ff4d4f, #ff7875);
    color: #fff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;

    box-shadow: 0 2px 6px rgba(255, 77, 79, 0.4);
}

.header-section-servicer-v4 .h11-action__btn:hover {
    color: var(--bv-primary);
    background: #f0f3ff;
}

.header-section-servicer-v4 .h11-navbar__actions .h11-cta {
    margin-left: 6px;
}

.header-section-servicer-v4 .h11-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: var(--bv-primary);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-section-servicer-v4 .h11-cta:hover {
    background: var(--bv-secondary);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(43, 89, 255, 0.35);
}

.header-section-servicer-v4 .h11-cta svg {
    transition: transform 0.3s ease;
}

.header-section-servicer-v4 .h11-cta:hover svg {
    transform: translateX(3px);
}

.header-section-servicer-v4 .h11-navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.header-section-servicer-v4 .h11-navbar__toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-section-servicer-v4 .h11-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.header-section-servicer-v4 .h11-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.header-section-servicer-v4 .h11-search-overlay__inner {
    width: 90%;
    max-width: 680px;
    position: relative;
}

.header-section-servicer-v4 .h11-search-overlay__form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    padding: 6px;
}

.header-section-servicer-v4 .h11-search-overlay__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 24px;
    font-size: 17px;
    color: #333;
    margin-bottom: 0;
}

.header-section-servicer-v4 .h11-search-overlay__input::placeholder {
    color: #999;
}

.header-section-servicer-v4 .h11-search-overlay__btn {
    width: 52px;
    height: 52px;
    border: none;
    background: var(--bv-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.header-section-servicer-v4 .h11-search-overlay__btn:hover {
    background: #1a44e0;
}

.header-section-servicer-v4 .h11-search-overlay__close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-section-servicer-v4 .h11-search-overlay__close:hover {
    background: var(--bv-primary);
    border-color: var(--bv-primary);
}

.header-section-servicer-v4 .h11-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.header-section-servicer-v4 .h11-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1399px) {
    .header-section-servicer-v4 .h11-menu__link {
        padding: 27px 14px;
        font-size: 15px;
    }

    .header-section-servicer-v4 .h11-cta {
        padding: 14px 24px;
        font-size: 12px;
    }
}

@media (max-width: 1199px) {
    .header-section-servicer-v4 .h11-header {
        background: white;
    }

    .header-section-servicer-v4 .h11-navbar__pill {
        box-shadow: none;
    }

    .header-section-servicer-v4 {
        /* Pill reset */
        /* Mobile toggle */
        /* Hide desktop-only */
        /* Slide-out menu */
        /* Menu list */
    }

    .header-section-servicer-v4 .h11-navbar {
        padding: 0;
    }

    .header-section-servicer-v4 .h11-navbar__pill {
        border-radius: 0;
        padding: 0 16px;
        min-height: 65px;
    }

    .header-section-servicer-v4 .h11-navbar__toggle {
        display: flex;
    }

    .header-section-servicer-v4 .h11-cta {
        display: none;
    }

    .header-section-servicer-v4 .h11-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 380px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        display: flex;
        flex-direction: column;
        z-index: 200;
        overflow-y: auto;
        transition: right 0.35s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    }

    .header-section-servicer-v4 .h11-menu.open {
        right: 0;
    }

    .header-section-servicer-v4 .h11-menu__close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 18px 20px;
        cursor: pointer;
        color: #333;
    }

    .header-section-servicer-v4 .h11-menu__close svg {
        width: 28px;
        height: 28px;
        padding: 5px;
        background: #f0f0f0;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .header-section-servicer-v4 .h11-menu__close:hover svg {
        background: var(--bv-primary);
        color: #fff;
    }

    .header-section-servicer-v4 .h11-menu__list {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
    }

    .header-section-servicer-v4 .h11-menu__item {
        border-bottom: 1px solid #f0f0f0;
    }

    .header-section-servicer-v4 .h11-menu__link {
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 0;
    }

    .header-section-servicer-v4 .h11-menu__chevron {
        display: none;
    }

    .header-section-servicer-v4 .h11-menu__arrow-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        cursor: pointer;
        color: #333;
        background: #f2f2f2;
        border-radius: 50%;
        transition: all 0.3s ease;
        font-size: 18px;
        font-weight: 300;
    }

    .header-section-servicer-v4 .h11-menu__arrow-mobile .icon-minus {
        display: none;
    }

    .header-section-servicer-v4 .h11-menu__arrow-mobile.open {
        background: var(--bv-primary);
        color: #fff;
    }

    .header-section-servicer-v4 .h11-menu__arrow-mobile.open .icon-plus {
        display: none;
    }

    .header-section-servicer-v4 .h11-menu__arrow-mobile.open .icon-minus {
        display: inline;
    }

    .header-section-servicer-v4 .h11-menu__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: #f9f9f9;
        display: none;
        padding: 5px 0;
    }

    .header-section-servicer-v4 .h11-menu__sub.open {
        display: block;
    }

    .header-section-servicer-v4 .h11-menu__sub a {
        padding: 12px 20px 12px 40px;
        font-size: 15px;
    }

    .header-section-servicer-v4 .h11-menu__sub a:hover {
        padding-left: 44px;
    }
}

@media (max-width: 575px) {
    .header-section-servicer-v4 .h11-logo__icon svg {
        width: 28px;
        height: 28px;
    }

    .header-section-servicer-v4 .h11-logo__text {
        font-size: 20px;
    }

    .header-section-servicer-v4 .h11-action__btn {
        width: 36px;
        height: 36px;
    }

    .header-section-servicer-v4 .h11-action__btn svg {
        width: 18px;
        height: 18px;
    }
}












































/* .header-section-servicer-v5 */



.header-section-servicer-v5 .h12-header {
    position: relative;
    width: 100%;
    z-index: 100;
}

.header-section-servicer-v5 .h12-topbar {
    background: #24235c;
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.header-section-servicer-v5 .h12-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-section-servicer-v5 .h12-topbar__left {
    flex-shrink: 0;
    overflow: hidden;
    max-width: 45%;
}

.header-section-servicer-v5 .h12-topbar__marquee {
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    animation: h12Marquee 15s linear infinite;
}

@keyframes h12Marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.header-section-servicer-v5 .h12-topbar__right {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.header-section-servicer-v5 .h12-topbar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 13px;
}

.header-section-servicer-v5 .h12-topbar__item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.header-section-servicer-v5 .h12-topbar__divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 16px;
}

.header-section-servicer-v5 .h12-topbar__hotline {
    display: flex;
    align-items: center;
}

.header-section-servicer-v5 .h12-middle {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.header-section-servicer-v5 .h12-middle__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-section-servicer-v5 .h12-middle__logo {
    flex-shrink: 0;
}

.header-section-servicer-v5 .h12-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-section-servicer-v5 .h12-middle__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px;
    min-width: 0;
}

.header-section-servicer-v5 .h12-middle__info small {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-style: italic;
}

.header-section-servicer-v5 .h12-middle__info strong {
    font-size: 22px;
    font-weight: 800;
    color: #e1201f;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.header-section-servicer-v5 .h12-middle__address {
    font-size: 13px;
    color: #555;
    font-weight: 400;
    font-style: italic;
}

.header-section-servicer-v5 .h12-cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #e1201f;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-section-servicer-v5 .h12-cta:hover {
    background: #c91b1a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(225, 32, 31, 0.35);
}

.header-section-servicer-v5 .h12-navbar {
    background: #e1201f;
    position: relative;
    z-index: 100;
}

.header-section-servicer-v5 .h12-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: h12SlideDown 0.35s ease;
}

@keyframes h12SlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-section-servicer-v5 .h12-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-section-servicer-v5 .h12-menu__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-section-servicer-v5 .h12-menu__item {
    position: relative;
}

.header-section-servicer-v5 .h12-menu__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
    position: relative;
}

.header-section-servicer-v5 .h12-menu__link:hover,
.header-section-servicer-v5 .h12-menu__item.active>.h12-menu__link {
    color: #fed627;
}

.header-section-servicer-v5 .h12-menu__chevron {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.header-section-servicer-v5 .h12-menu__link:hover .h12-menu__chevron {
    opacity: 1;
    color: #fed627;
}

.header-section-servicer-v5 .h12-menu__item:hover>.h12-menu__link .h12-menu__chevron {
    transform: rotate(180deg);
}

.header-section-servicer-v5 .h12-menu__sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 230px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 110;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 7px 29px rgba(100, 100, 111, 0.2);
}

.header-section-servicer-v5 .h12-menu__item:hover>.h12-menu__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-section-servicer-v5 .h12-menu__sub li {
    margin: 0;
}

.header-section-servicer-v5 .h12-menu__sub a {
    display: block;
    padding: 10px 22px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.header-section-servicer-v5 .h12-menu__sub a:hover {
    color: #e1201f;
    background: #fef5f5;
    border-left-color: #e1201f;
    padding-left: 26px;
}

.header-section-servicer-v5 .h12-navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header-section-servicer-v5 .h12-navbar__toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-section-servicer-v5 .h12-menu__close-item {
    display: none;
}

.header-section-servicer-v5 .h12-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.header-section-servicer-v5 .h12-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1199px) {
    .header-section-servicer-v5 .h12-logo__info strong {
        font-size: 17px;
    }

    .header-section-servicer-v5 .h12-menu__link {
        padding: 14px 12px;
        font-size: 13px;
    }

    .header-section-servicer-v5 .h12-cta {
        padding: 12px 22px;
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .header-section-servicer-v5 {
        /* Topbar */
        /* Middle */
        /* Mobile toggle visible */
        /* Mobile menu - slide out */
        /* Close button */
    }

    .header-section-servicer-v5 .h12-middle .h12-navbar__toggle {
        position: relative;
        transform: none;
    }

    .header-section-servicer-v5 .h12-middle .h12-navbar__toggle span {
        background: #e1201f;
    }

    .header-section-servicer-v5 .h12-navbar .h12-navbar__toggle {
        display: none;
    }

    .header-section-servicer-v5 .h12-topbar__left {
        max-width: 100%;
    }

    .header-section-servicer-v5 .h12-topbar__right {
        display: none;
        justify-content: center;
    }

    .header-section-servicer-v5 .h12-topbar__hotline {
        display: none;
    }

    .header-section-servicer-v5 .h12-middle__inner {
        gap: 10px;
    }

    .header-section-servicer-v5 .h12-middle__logo svg {
        width: 50px;
        height: 50px;
    }

    .header-section-servicer-v5 .h12-middle__info strong {
        font-size: 14px;
    }

    .header-section-servicer-v5 .h12-middle__info small {
        font-size: 10px;
    }

    .header-section-servicer-v5 .h12-middle__address {
        display: none;
    }

    .header-section-servicer-v5 .h12-cta {
        padding: 10px 18px;
        font-size: 11px;
    }

    .header-section-servicer-v5 .h12-navbar__toggle {
        display: flex;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-section-servicer-v5 .h12-navbar__inner {
        justify-content: center;
        /* min-height: 48px;
		 */
    }

    .header-section-servicer-v5 .h12-menu__list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        z-index: 200;
        overflow-y: auto;
        transition: left 0.35s ease;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
        padding: 0 0 20px;
    }

    .header-section-servicer-v5 .h12-menu__close-item {
        display: flex;
        justify-content: flex-end;
        padding: 14px 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .header-section-servicer-v5 .h12-menu__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: none;
        background: #f0f0f0;
        color: #333;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .header-section-servicer-v5 .h12-menu__close:hover {
        background: #e1201f;
        color: #fff;
    }

    .header-section-servicer-v5 .h12-menu__list.open {
        left: 0;
    }

    .header-section-servicer-v5 .h12-menu__item {
        position: relative;
    }

    .header-section-servicer-v5 .h12-menu__link {
        color: #333;
        padding: 14px 20px;
        padding-right: 55px;
        font-size: 15px;
        text-transform: none;
    }

    .header-section-servicer-v5 .h12-menu__link:hover,
    .header-section-servicer-v5 .h12-menu__item.active>.h12-menu__link {
        color: #e1201f;
    }

    .header-section-servicer-v5 .h12-menu__chevron {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        opacity: 0.5;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .header-section-servicer-v5 .h12-menu__item.sub-open .h12-menu__chevron {
        color: #e1201f;
        opacity: 1;
        transform: translateY(-50%) rotate(180deg);
    }

    .header-section-servicer-v5 .h12-menu__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: #f9f9f9;
        display: none;
        padding: 0;
    }

    .header-section-servicer-v5 .h12-menu__sub.open {
        display: block;
    }

    .header-section-servicer-v5 .h12-menu__sub a {
        padding: 12px 20px 12px 36px;
        border-left: none;
    }

    .header-section-servicer-v5 .h12-menu__sub a:hover {
        padding-left: 40px;
    }
}

@media (max-width: 575px) {
    .header-section-servicer-v5 .h12-topbar {
        font-size: 11px;
        padding: 8px 0;
    }

    .header-section-servicer-v5 .h12-topbar__divider {
        margin: 0 10px;
    }

    .header-section-servicer-v5 .h12-middle {
        padding: 10px 0;
    }

    .header-section-servicer-v5 .h12-logo {
        gap: 8px;
    }

    .header-section-servicer-v5 .h12-logo__icon svg {
        width: 40px;
        height: 40px;
    }

    .header-section-servicer-v5 .h12-logo__info strong {
        font-size: 12px;
    }

    .header-section-servicer-v5 .h12-logo__info small {
        font-size: 9px;
    }

    .header-section-servicer-v5 .h12-middle__right {
        display: none;
    }

    .header-section-servicer-v5 .h12-middle__info {
        align-items: self-start;
        text-align: left;
    }

    .header-section-servicer-v5 .h12-middle__info small {
        display: none;
    }
}