.qt-hf-nav {
    position: relative;
}

.qt-hf-nav.qt-hf-nav--mobile {
    display: flex;
    width: 100%;
}

.qt-hf-nav .qt-hf-nav__inner {
    display: flex;
    align-items: center;
}

.qt-hf-nav .qt-hf-nav__inner ul,
.qt-hf-nav .qt-hf-nav__inner li {
    list-style: none;
    list-style-type: none;
}

.qt-hf-nav .qt-hf-nav__inner li::marker {
    content: '';
    font-size: 0;
}

.qt-hf-nav .qt-hf-nav__menu {
    --qt-nav-menu-gap: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.qt-hf-nav .qt-hf-nav__menu > li {
    position: relative;
    list-style: none;
}

.qt-hf-nav .qt-hf-nav__menu > li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(var(--qt-nav-menu-gap) / -2);
    display: none;
    height: 16px;
    border-left: 1px solid #101010;
    transform: translateY(-50%);
    pointer-events: none;
}

.rtl .qt-hf-nav .qt-hf-nav__menu > li:not(:last-child)::after,
[dir="rtl"] .qt-hf-nav .qt-hf-nav__menu > li:not(:last-child)::after {
    right: auto;
    left: calc(var(--qt-nav-menu-gap) / -2);
    transform: translateY(-50%);
}

.qt-hf-nav .qt-hf-nav__menu a {
    font-weight: 500;
}

.qt-hf-nav .qt-hf-nav__menu > li > a {
    --qt-nav-pointer-height: 3px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 10px;
    color: #111827;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-underline .qt-hf-nav__menu > li > a,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-overline .qt-hf-nav__menu > li > a {
    position: relative;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-underline .qt-hf-nav__menu > li > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-overline .qt-hf-nav__menu > li > a::before {
    content: '';
    position: absolute;
    left: 0;
    right: auto;
    width: 100%;
    height: var(--qt-nav-pointer-height);
    background-color: currentColor;
    opacity: 0;
    pointer-events: none;
    transform: scaleX(1);
    transition: opacity 180ms ease, transform 180ms ease;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-underline .qt-hf-nav__menu > li > a::before {
    bottom: 0;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-overline .qt-hf-nav__menu > li > a::before {
    top: 0;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-underline.qt-hf-nav--pointer-animation-slide-out .qt-hf-nav__menu > li > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-underline.qt-hf-nav--pointer-animation-fade-out .qt-hf-nav__menu > li > a::before {
    bottom: var(--qt-nav-pointer-height);
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-slide .qt-hf-nav__menu > li > a::before {
    transform: scaleX(0);
    transform-origin: left center;
}

.rtl .qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-slide .qt-hf-nav__menu > li > a::before,
[dir="rtl"] .qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-slide .qt-hf-nav__menu > li > a::before {
    transform-origin: right center;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-slide-in .qt-hf-nav__menu > li > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-fade-in .qt-hf-nav__menu > li > a::before {
    transform: translate3d(0, var(--qt-nav-pointer-height), 0);
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-slide-out .qt-hf-nav__menu > li > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-fade-out .qt-hf-nav__menu > li > a::before {
    transform: translate3d(0, 0, 0);
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-slide-out .qt-hf-nav__menu > li:hover > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-slide-out .qt-hf-nav__menu > li > a:active::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-fade-out .qt-hf-nav__menu > li:hover > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-fade-out .qt-hf-nav__menu > li > a:active::before {
    opacity: 1;
    animation: qt-hf-nav--pointer-slide-out 180ms ease both;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-slide-in .qt-hf-nav__menu > li:hover > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-slide-in .qt-hf-nav__menu > li > a:active::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-fade-in .qt-hf-nav__menu > li:hover > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-animation-fade-in .qt-hf-nav__menu > li > a:active::before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-underline:not(.qt-hf-nav--pointer-animation-slide-in):not(.qt-hf-nav--pointer-animation-slide-out):not(.qt-hf-nav--pointer-animation-fade-in):not(.qt-hf-nav--pointer-animation-fade-out) .qt-hf-nav__menu > li:hover > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-overline:not(.qt-hf-nav--pointer-animation-slide-in):not(.qt-hf-nav--pointer-animation-slide-out):not(.qt-hf-nav--pointer-animation-fade-in):not(.qt-hf-nav--pointer-animation-fade-out) .qt-hf-nav__menu > li:hover > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-underline:not(.qt-hf-nav--pointer-animation-slide-in):not(.qt-hf-nav--pointer-animation-slide-out):not(.qt-hf-nav--pointer-animation-fade-in):not(.qt-hf-nav--pointer-animation-fade-out) .qt-hf-nav__menu > li > a:active::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-overline:not(.qt-hf-nav--pointer-animation-slide-in):not(.qt-hf-nav--pointer-animation-slide-out):not(.qt-hf-nav--pointer-animation-fade-in):not(.qt-hf-nav--pointer-animation-fade-out) .qt-hf-nav__menu > li > a:active::before {
    opacity: 1;
    transform: scaleX(1) translateY(0);
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-active .qt-hf-nav__menu > li.current-menu-item > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-active .qt-hf-nav__menu > li.current-menu-parent > a::before,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--pointer-active .qt-hf-nav__menu > li.current-menu-ancestor > a::before {
    opacity: 1;
    animation: none;
    transform: scaleX(1) translate3d(0, 0, 0);
}

@keyframes qt-hf-nav--pointer-slide-out {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, var(--qt-nav-pointer-height), 0);
    }
}

.qt-hf-nav .qt-hf-nav__menu > li:hover > a {
	color: #111827;
}

.qt-hf-nav .qt-hf-nav__submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    color: #6b7280;
    transition: color 180ms ease, fill 180ms ease;
}

.qt-hf-nav .qt-hf-nav__submenu-toggle-icon {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.qt-hf-nav .qt-hf-nav__submenu-toggle-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.qt-hf-nav .qt-hf-nav__inner .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    display: none;
    flex-direction: column;
    min-width: 200px;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #eee;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: none;
    z-index: 100;
}

.qt-hf-nav:not(.qt-hf-nav--ready) .qt-hf-nav__inner .sub-menu {
    display: none;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover .qt-hf-nav__inner li:hover > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover .qt-hf-nav__inner li.qt-hf-nav__item--focus > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-click .qt-hf-nav__inner .qt-hf-nav__item--open > .sub-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover .qt-hf-nav__menu > li.menu-item-has-children::before {
	content: '';
	position: absolute;
	inset-block-start: 100%;
	inset-inline-start: 0;
	display: block;
	width: 100%;
	height: var(--qt-hf-submenu-hover-bridge-height, 0px);
	pointer-events: auto;
	z-index: 99;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-fade .qt-hf-nav__inner li:hover > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-fade .qt-hf-nav__inner li.qt-hf-nav__item--focus > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-click.qt-hf-nav--submenu-animation-fade .qt-hf-nav__inner .qt-hf-nav__item--open > .sub-menu {
    animation: qt-nav-submenu-fade 180ms ease both;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-slide-down .qt-hf-nav__inner li:hover > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-slide-down .qt-hf-nav__inner li.qt-hf-nav__item--focus > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-click.qt-hf-nav--submenu-animation-slide-down .qt-hf-nav__inner .qt-hf-nav__item--open > .sub-menu {
    animation: qt-nav-submenu-slide-down 180ms ease both;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-slide-up .qt-hf-nav__inner li:hover > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-slide-up .qt-hf-nav__inner li.qt-hf-nav__item--focus > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-click.qt-hf-nav--submenu-animation-slide-up .qt-hf-nav__inner .qt-hf-nav__item--open > .sub-menu {
    animation: qt-nav-submenu-slide-up 180ms ease both;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-slide-left .qt-hf-nav__inner li:hover > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-slide-left .qt-hf-nav__inner li.qt-hf-nav__item--focus > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-click.qt-hf-nav--submenu-animation-slide-left .qt-hf-nav__inner .qt-hf-nav__item--open > .sub-menu {
    animation: qt-nav-submenu-slide-left 180ms ease both;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-slide-right .qt-hf-nav__inner li:hover > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-slide-right .qt-hf-nav__inner li.qt-hf-nav__item--focus > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-click.qt-hf-nav--submenu-animation-slide-right .qt-hf-nav__inner .qt-hf-nav__item--open > .sub-menu {
    animation: qt-nav-submenu-slide-right 180ms ease both;
}

.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-scale .qt-hf-nav__inner li:hover > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-hover.qt-hf-nav--submenu-animation-scale .qt-hf-nav__inner li.qt-hf-nav__item--focus > .sub-menu,
.qt-hf-nav:not(.qt-hf-nav--mobile).qt-hf-nav--submenu-trigger-click.qt-hf-nav--submenu-animation-scale .qt-hf-nav__inner .qt-hf-nav__item--open > .sub-menu {
    animation: qt-nav-submenu-scale 180ms ease both;
    transform-origin: top center;
}

@keyframes qt-nav-submenu-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes qt-nav-submenu-slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

@keyframes qt-nav-submenu-slide-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes qt-nav-submenu-slide-left {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

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

@keyframes qt-nav-submenu-slide-right {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

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

@keyframes qt-nav-submenu-scale {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .qt-hf-nav:not(.qt-hf-nav--mobile) .qt-hf-nav__inner .sub-menu {
        animation: none !important;
    }
}

.qt-hf-nav:not(.qt-hf-nav--mobile) .qt-hf-nav__inner .sub-menu .qt-hf-nav__submenu-toggle {
	transform: rotate(-90deg);
}

.rtl .qt-hf-nav:not(.qt-hf-nav--mobile) .qt-hf-nav__inner .sub-menu .qt-hf-nav__submenu-toggle,
[dir="rtl"] .qt-hf-nav:not(.qt-hf-nav--mobile) .qt-hf-nav__inner .sub-menu .qt-hf-nav__submenu-toggle {
    transform: rotate(90deg);
}

.qt-hf-nav .qt-hf-nav__inner .sub-menu li {
    position: relative;
    list-style: none;
}

.qt-hf-nav .qt-hf-nav__inner .sub-menu > li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    border-top: 1px solid currentColor;
    pointer-events: none;
}

.qt-hf-nav .qt-hf-nav__inner .sub-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    color: #111827;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 180ms ease, color 180ms ease;
}

.qt-hf-nav:not(.qt-hf-nav--mobile) .qt-hf-nav__inner .sub-menu a:hover,
.qt-hf-nav:not(.qt-hf-nav--mobile) .qt-hf-nav__inner .sub-menu li:hover > a,
.qt-hf-nav:not(.qt-hf-nav--mobile) .qt-hf-nav__inner .sub-menu .current-menu-item > a {
    color: #111827;
    background-color: #dedede;
}

.qt-hf-nav .qt-hf-nav__inner .sub-menu .sub-menu {
    top: 0px;
    left: 100%;
    right: auto;
}

.rtl .qt-hf-nav .qt-hf-nav__inner .sub-menu,
[dir="rtl"] .qt-hf-nav .qt-hf-nav__inner .sub-menu {
    left: auto;
    right: 0;
}

.rtl .qt-hf-nav .qt-hf-nav__inner .sub-menu .sub-menu,
[dir="rtl"] .qt-hf-nav .qt-hf-nav__inner .sub-menu .sub-menu {
    left: auto;
    right: 100%;
}

.qt-hf-nav .qt-hf-nav__inner .sub-menu.qt-hf-nav__submenu--align-right {
    left: auto;
    right: 0;
}

.qt-hf-nav .qt-hf-nav__inner .sub-menu.qt-hf-nav__submenu--align-left {
    left: 0;
    right: auto;
}

.qt-hf-nav .qt-hf-nav__inner .sub-menu.qt-hf-nav__submenu--edge-clamped {
    max-width: calc(100vw - 24px);
    overflow-x: auto;
}

.qt-hf-nav .qt-hf-nav__inner .sub-menu .sub-menu.qt-hf-nav__submenu--open-left {
    left: auto;
    right: 100%;
}

.qt-hf-nav .qt-hf-nav__inner .sub-menu .sub-menu.qt-hf-nav__submenu--open-right {
    left: 100%;
    right: auto;
}

.elementor-editor-active .qt-hf-nav,
.elementor-editor-preview .qt-hf-nav {
    max-width: 100%;
}

.qt-hf-nav .qt-hf-nav__toggle {
    display: none;
    border: 0;
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
}

.qt-hf-nav .qt-hf-nav__toggle:hover {
    background-color: #e5e7eb;
}

.qt-hf-nav .qt-hf-nav__toggle:active {
    transform: scale(0.96);
}

.qt-hf-nav .qt-hf-nav__toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.qt-hf-nav .qt-hf-nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    border-radius: 999px;
}

.qt-hf-nav.qt-hf-nav--mobile {
    display: flex;
    align-items: center;
}

.qt-hf-nav.qt-hf-nav--mobile button.qt-hf-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__inner {
    display: block;
    align-items: stretch;
    justify-content: flex-start;
    align-content: flex-start;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 999;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__menu {
    --qt-nav-menu-gap: 0px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    margin: 0;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__menu--open {
    display: flex;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__menu > li {
    width: 100%;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__menu > li::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    height: 0;
    border-top: 1px solid currentColor;
    border-left: 0;
    transform: none;
    display: none !important;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__inner a {
    width: 100%;
    box-sizing: border-box;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__menu > li > a {
    justify-content: space-between;
    padding: 13px 14px;
    background-color: #fff;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__inner .sub-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 100%;
    max-width: none !important;
    box-sizing: border-box;
    left: auto;
    right: auto;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__inner .sub-menu > li {
    width: 100%;
    box-sizing: border-box;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__inner .sub-menu > li:not(:last-child)::after {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: currentColor;
}

.rtl .qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__inner .sub-menu,
[dir="rtl"] .qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__inner .sub-menu {
    padding: 6px 12px 6px 0;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__item--open > .sub-menu {
    display: flex;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__inner .sub-menu a {
    padding: 10px 14px;
    white-space: normal;
}

.qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__inner .sub-menu .sub-menu {
    left: 0;
    right: auto;
    margin-left: 0;
}

.rtl .qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__inner .sub-menu .sub-menu,
[dir="rtl"] .qt-hf-nav.qt-hf-nav--mobile .qt-hf-nav__inner .sub-menu .sub-menu {
    left: auto;
    right: 0;
    margin-left: 0;
    margin-right: 0;
}
