@charset "UTF-8";
/* 1. hm COLORS */
/* 2. hm TYPOGRAPHY */
/* 3. hm SIZES (Clamp) */
/* 4. LAYOUT & PADDING (Mặc định cho Desktop) */
/* RESPONSIVE VARIABLES */
/* 5. COMPONENT & UTILS */
:root {
  /* 1. hm COLORS */
  --primary-color: #222;
  --secondary-color: #f85220;
  --hm-color-black: #222;
  --hm-color-black-secondary: #333;
  --hm-color-white: #fff;
  --hm-color-gray-dark: #666;
  --hm-color-gray-light: #ccc;
  --hm-color-bg-secondary: #f0efed;
  --hm-color-bg-3rd: #f7f7f7;
  --hm-color-sale: #DC2626;
  /* 2. hm TYPOGRAPHY */
  --hm-font-main: apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --hm-padding-button: 10.78px 30px;
  --hm-max-width-main: 1680px;
  --hm-font-weight-sm: 400;
  --hm-font-weight-sd: 600;
  --hm-font-weight-lg: 700;
  --hm-line-height-main: 20px;
  --hm-box-sizing: border-box;
  /* 3. hm SIZES (Clamp) */
  --hm-size-70: clamp(49.77px, 4.861vw + 0.001rem, 93.33px);
  --hm-size-60: clamp(42.67px, 4.167vw + 0.001rem, 80px);
  --hm-size-56: clamp(39.82px, 3.889vw + 0.001rem, 74.66px);
  --hm-size-50: clamp(35.55px, 3.472vw + 0.001rem, 66.66px);
  --hm-size-48: clamp(34.12px, 3.333vw + 0.001rem, 63.99px);
  --hm-size-42: clamp(29.87px, 2.917vw + 0.001rem, 56px);
  --hm-size-40: clamp(28.44px, 2.78vw + 0.001rem, 53.33px);
  --hm-size-36: clamp(25.6px, 2.5vw + 0.001rem, 48px);
  --hm-size-32: clamp(22.76px, 2.22vw + 0.001rem, 42.67px);
  --hm-size-28: clamp(19.9px, 1.944vw + 0.001rem, 37.32px);
  --hm-size-24: 24px;
  --hm-size-20: clamp(14.22px, 1.39vw + 0.001rem, 26.67px);
  --hm-size-16: clamp(11.37px, 1.111vw + 0.001rem, 21.33px);
  --hm-size-12: clamp(8.53px, 0.83vw + 0.001rem, 16px);
  --hm-font-size-10: 10px;
  --hm-font-size-sm: 14px;
  --hm-font-size-sd: 16px;
  --hm-font-size-lg: 18px;
  --hm-size-24: 24px;
  --hm-size-2-4em: 2.4em;
  /* 4. LAYOUT & PADDING (Mặc định cho Desktop) */
  --hm-layout-padding-lg: 0 48px;
  --hm-layout-padding-main: 32px;
  --hm-layout-padding-lg-secondary: 48px;
  --hm-layout-width: 100%;
  --hm-layout-height: 100%;
  --hm-display-flex: flex;
  --hm-display-grid: grid;
  --hm-display-block: block;
  --hm-display-none: none;
  --hm-visibility-hidden: hidden;
  --hm-visibility-visible: visible;
  --hm-overflow-hidden: hidden;
  --hm-display-relative: relative;
  --hm-display-absolute: absolute;
  --hm-display-flex-row: row;
  --hm-display-flex-column: column;
  --align-items: center;
  --text-align: center;
  --hm-justify-content-center: center;
  --hm-center: center;
  /* RESPONSIVE VARIABLES */
  --hm-padding-button-sm: 10.6px 26.6px;
  --padding-sm: 0 16px;
  --padding-md: 0 24px;
  /* 5. COMPONENT & UTILS */
  --hm-radius-main: 30px;
  --hm-radius-item: 4px;
  --hm-transition: all 0.3s ease-in-out;
  --hm-border-default: 1px solid #666;
  --hm-border-ccc: 1px solid #ccc;
  --hm-opacity-1: 1;
  --hm-opacity-0: 0;
  --top-left-right-bottom-0: 0;
}

/*------------------------------------*\
    #RESET
\*------------------------------------*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}
body, html {
    overflow-x: visible !important;
}
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.home #primary {
  width: 100%;
  max-width: none;
}

#primary {
  margin: 0 auto;
  float: none;
}

.site-main {
  background: #fff;
  clear: both;
}

[role=main] {
  width: 100%;
  display: block;
  position: relative;
  transition: 0.4s;
}

body {
  position: var(--hm-display-relative);
  font-weight: var(--hm-font-weight-sm);
  font-size: var(--hm-font-size-sm);
  line-height: 1.428571429;
  background: var(--hm-color-white);
  color: var(--hm-color-black);
  font-family: var(--hm-font-main);
  box-sizing: border-box;
}

#vthomes-wrapper {
  display: flex;
  flex-direction: column;
  min-height: auto;
}

body.home.blog.wp-theme-vthomes {
  background: #fff;
}
body.error404.wp-theme-tac-seimitsu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 1008px;
}
.site-main, .container {
  flex: 1;
}

footer {
  margin-top: auto;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

@media (min-width: 1025px) {
  .home, .main-home-order {
    min-width: 1008px;
  }
  div#vthomes-wrapper {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  body, html {
    overflow-x: hidden !important;
    width: 100% !important;
  }
}
html .button, h1, h2, h3, h4, h5, h6, a, p, span, label {
  font-family: var(--hm-font-main) !important;
  text-decoration: inherit;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-weight: 700;
}

h2 {
  font: 400 14px/20px var(--hm-font-main);
  color: #222;
  margin: 5px 0;
  font-weight: 700;
}

button, html input[type=button], input[type=reset],
input[type=submit] {
  cursor: pointer;
}

body.no-scroll {
  overflow: var(--hm-overflow-hidden);
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
}

img, video {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #fff;
  color: #222;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.dsButtonTransparent_6ijzy {
  background: 0 0;
  border: 0;
  padding: 0;
  color: var(--hm-color-black);
  font-size: 14px;
  text-decoration: underline;
}

[class*=dsButtonTransparent] {
  background: 0 0;
  border: 0;
  padding: 0;
}

.ds-link_3hhHd {
  color: inherit;
  text-decoration: underline;
}

.ds-link_3hhHd:hover {
  text-decoration: underline;
}

a:focus {
  color: #222;
  text-decoration: none;
  outline: 0;
  outline-offset: -2px;
}

#home-content-layout {
  width: 100%;
}

#primary #home-content-layout.home-main-layout .fullImg, #home-content-layout.home-layout, body.home #primary #home-content-layout.home-main-layout {
  max-width: 100%;
}

@media only screen and (min-width: 1451px) {
  #home-content-layout.home-main-layout, [data-cms-name="Desktop Bottom"] {
    font-size: 16px;
  }
}
.home .home-main-layout {
  max-width: 1680px;
}

.home .home-main-layout {
  margin: 0 auto;
  display: block;
}

#home-content-layout {
  position: relative;
  margin: 0 auto;
  clear: both;
  max-width: 1008px;
}

.page-main-container {
  min-height: 100vh;
}

#vthomes-wrapper .site-header-desktop {
  display: var(--hm-display-flex);
  padding: 0 32px;
}
@media (max-width: 1024px) {
  #vthomes-wrapper .site-header-desktop {
    display: none;
  }
}
#vthomes-wrapper .site-header-mobile {
  display: none;
}
@media (max-width: 1024px) {
  #vthomes-wrapper .site-header-mobile {
    display: var(--hm-display-block);
  }
}

@media (max-width: 1024px) {
  #vthomes-wrapper .site-header-wrapper-desktop {
    display: none;
  }
  #vthomes-wrapper header.site-header.site-header-desktop, #vthomes-wrapper nav.header-hmf-nav.hmf-nav-primary {
    display: none;
  }
  #vthomes-wrapper .site-header-wrapper {
    position: var(--hm-display-relative);
  }
  #vthomes-wrapper .header-location {
    margin-left: 10px;
    padding-top: 3px;
  }
  #vthomes-wrapper .header-location .svg-container {
    font-size: var(--hm-font-size-10);
    width: var(--hm-size-2-4em);
    height: var(--hm-size-2-4em);
    position: var(--hm-display-relative);
  }
  #vthomes-wrapper .header-location .svg-container svg {
    width: var(--hm-size-2-4em);
    height: var(--hm-size-2-4em);
    max-height: 25px;
    max-width: 25px;
  }
  #vthomes-wrapper .header-cart-link[class] {
    border: none;
    background: var(--hm-color-white);
  }
  #vthomes-wrapper .hm-accordion-title {
    display: var(--hm-display-flex);
    justify-content: space-between;
    align-items: var(--hm-center);
    cursor: pointer;
    padding: 16px 18px;
    font-size: var(--hm-font-size-sd);
    font-weight: var(--hm-font-weight-sd);
    line-height: var(--hm-size-24);
    color: var(--primary-color);
    text-align: left;
    border-bottom: 1px solid #f0efed;
  }
  #vthomes-wrapper .hm-accordion-title {
    cursor: pointer;
    font-size: var(--hm-font-size-sd);
    font-weight: var(--hm-font-weight-sd);
    line-height: var(--hm-size-24);
    color: #144069;
    text-align: left;
  }
  #vthomes-wrapper .hm-accordion-title-icon {
    display: var(--hm-display-flex);
    align-items: var(--hm-center);
    justify-content: var(--hm-center);
    width: var(--hm-size-24);
    height: var(--hm-size-24);
  }
  #vthomes-wrapper .hm-accordion-title[aria-expanded=false] .hm-icon-opened, #vthomes-wrapper .hm-accordion-title[aria-expanded=true] .hm-icon-closed {
    display: none !important;
  }
  #vthomes-wrapper .hm-accordion-title[aria-expanded=false] .hm-icon-closed, #vthomes-wrapper .hm-accordion-title[aria-expanded=true] .hm-icon-opened {
    display: inline-block !important;
  }
  #vthomes-wrapper .hm-svg-icon {
    width: 12px;
    height: 12px;
    display: var(--hm-display-block);
    fill: none;
    stroke-width: 3;
  }
  #vthomes-wrapper .hm-sub-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #vthomes-wrapper .hm-custom-accordion {
    width: var(--hm-layout-width);
  }
  #vthomes-wrapper .hm-sub-menu-list li a {
    display: var(--hm-display-block);
    color: #333;
    text-decoration: none;
    letter-spacing: 0;
    line-height: var(--hm-line-height-main);
    font-size: var(--hm-font-size-sd);
    font-weight: var(--hm-font-weight-sm);
    padding: 18px 0 18px 32px;
    border-bottom: 1px solid var(--hm-color-white);
  }
  #vthomes-wrapper .hm-bottom-line ul li:not(:first-child) {
    background-color: var(--hm-color-bg-3rd);
    background: #f7f7f7;
    background-attachment: scroll;
    border-bottom: 1px solid var(--hm-color-white);
  }
  #vthomes-wrapper .header-menu .menu-header {
    background: #174168;
    box-sizing: var(--hm-box-sizing);
    display: var(--hm-display-flex);
    justify-content: flex-end;
    align-items: var(--hm-center);
    flex-flow: wrap;
    padding: 0 6px;
    position: sticky;
    top: var(--top-left-right-bottom-0);
    width: var(--hm-layout-width);
    z-index: 2;
    align-content: var(--hm-center);
    padding: 0 8px 0 16px;
    min-height: 70px;
  }
  #vthomes-wrapper .header-menu-container .menu-header .menu-header-left {
    display: none;
    flex-direction: row;
    align-content: var(--hm-center);
    align-items: var(--hm-center);
    width: 80%;
    gap: 6px;
  }
  #vthomes-wrapper .header-menu-container .menu-header .menu-header-right {
    display: var(--hm-display-flex);
    flex-direction: row;
    align-content: var(--hm-center);
    width: 19%;
    box-sizing: unset;
    justify-content: var(--hm-center);
    align-items: var(--hm-center);
  }
  #vthomes-wrapper .header-menu-container .header-account, #vthomes-wrapper .header-menu-container .header-favorites {
    border: 1px solid #666;
    width: 49%;
  }
  #vthomes-wrapper .header-menu-container .header-account .account-link-container, #vthomes-wrapper .header-menu-container .header-favorites {
    justify-content: var(--hm-center);
  }
  #vthomes-wrapper .header-menu-container .header-favorites {
    margin-left: 0;
    display: var(--hm-display-flex);
  }
  #vthomes-wrapper .menu-header .dsButtonTransparent_6ijzy.account-link.login-popup-button {
    color: var(--hm-color-white);
  }
  #vthomes-wrapper .header-menu-container .header-account .svg-container svg, #vthomes-wrapper .header-menu-container .header-favorites-link[class] .svg-container svg {
    color: var(--hm-color-white);
  }
  #vthomes-wrapper .header-menu-container button.hm-exit-menu.close-menu-mobile {
    background: 0 0;
    background-attachment: scroll;
    border: none;
    padding: 0;
  }
  #vthomes-wrapper .header-menu-container button.hm-exit-menu.close-menu-mobile svg {
    stroke-width: 2px;
    color: var(--hm-color-white);
    display: var(--hm-display-block);
    font-size: var(--hm-font-size-10);
    width: var(--hm-size-2-4em);
    height: var(--hm-size-2-4em);
    max-width: 48px;
    max-height: 48px;
  }
  #vthomes-wrapper .hm-custom-accordion.hm-top {
    margin-top: 20px;
  }
  #vthomes-wrapper .header-menu .hm-footer-menu-mobile {
    padding: 18px 18px 140px;
    background: #f7f7f7;
    border-top: var(--hm-border-ccc);
  }
  #vthomes-wrapper .footer-menu-mobile-gird {
    display: grid;
    gap: 12px;
    border-bottom: var(--hm-border-ccc);
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 0 24px 0;
    justify-items: center;
    align-items: center;
  }
  #vthomes-wrapper .footer-menu-mobile-gird div:not(:first-child) {
    padding-left: 32px;
    border-left: var(--hm-border-ccc);
  }
  #vthomes-wrapper .footer-menu-mobile-xnk {
    border-bottom: var(--hm-border-ccc);
  }
  #vthomes-wrapper .footer-menu-mobile-xnk, #vthomes-wrapper .footer-menu-mobile-vt {
    display: var(--hm-display-flex);
    flex-direction: row;
    gap: 6px;
    flex-wrap: nowrap;
    align-content: var(--hm-center);
    align-items: var(--hm-center);
  }
  #vthomes-wrapper .footer-menu-mobile-xnk h3.icontel, #vthomes-wrapper .footer-menu-mobile-xnk h3.Xuatkhau, #vthomes-wrapper .footer-menu-mobile-vt h3.icontel {
    font-size: var(--hm-font-size-sd);
    line-height: var(--hm-line-height-main);
    font-weight: 400;
    padding: 16px 0;
  }
  #vthomes-wrapper .footer-menu-mobile-xnk h3 span a, #vthomes-wrapper .footer-menu-mobile-vt h3 span a, #vthomes-wrapper .footer-menu-mobile-item h3 span a {
    display: var(--hm-display-flex);
    gap: 4px;
    flex-direction: row;
    align-items: var(--hm-center);
    color: var(--primary-color);
    font-weight: var(--hm-font-weight-sm);
  }
  #vthomes-wrapper .footer-menu-mobile-vt {
    padding-top: 16px;
  }
  #vthomes-wrapper .footer-menu-mobile-vt h3.icontel {
    width: 50%;
    display: var(--hm-display-flex);
    flex-wrap: nowrap;
    align-content: var(--hm-center);
    align-items: var(--hm-center);
    margin: 0 !important;
  }
  #vthomes-wrapper .footer-menu-mobile-vt h3 span a svg {
    width: 16px;
    height: 35px;
  }
  #vthomes-wrapper .site-header__search-wrapper .site-search {
    margin: 0.7142857143em 1.1428571429em;
  }
  #vthomes-wrapper .site-header__search-wrapper .site-search::before {
    content: "";
    width: calc(100% + 2.2857142857em);
    height: calc(100% + 1.4285714286em);
    position: var(--hm-display-absolute);
    background: #f7f7f7;
    border-bottom: var(--hm-border-ccc);
    top: -0.7142857143em;
    left: -1.1428571429em;
    z-index: -1;
    pointer-events: none;
  }
  #vthomes-wrapper .footer-menu-mobile-item a {
    font-size: 14px;
    font-weight: 400;
    color: #666;
  }
  #vthomes-wrapper .footer-menu-mobile-item {
    display: flex;
    flex-direction: column;
  }
  #vthomes-wrapper .footer-menu-mobile-xnk a, #vthomes-wrapper .footer-menu-mobile-vt a {
    font-weight: 400;
    font-size: 14px;
  }
  #vthomes-wrapper .footer-menu-mobile-vt svg {
    font-size: 10px;
    stroke-width: 1;
    width: 16px;
    height: 16px;
    max-width: 24px;
    max-height: 24px;
  }
  #vthomes-wrapper .footer-menu-mobile-vt {
    gap: 24px !important;
  }
  #vthomes-wrapper .banner-container {
    display: none;
  }
  #vthomes-wrapper .media-home-main img.img-gtk {
    width: 90px !important;
  }
  #vthomes-wrapper .header-core.mobile-header-core {
    height: 70px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  #vthomes-wrapper .site-header-mobile .header-logo-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #vthomes-wrapper .site-header-mobile .core-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
  #vthomes-wrapper .site-header-mobile .wpml-ls-legacy-list-horizontal {
    padding: 0;
  }
  #vthomes-wrapper span.hm-accordion-title-text a {
    font-weight: 400;
  }
  #vthomes-wrapper .site-header-desktop .media-home-main img.logo {
    width: 90px !important;
  }
}
@media (min-width: 1025px) {
  #vthomes-wrapper .site-header-wrapper {
    display: none;
  }
  #vthomes-wrapper .cbhcc-rotating-banner {
    min-height: 40px;
  }
  #vthomes-wrapper .header-core {
    margin: 0 auto;
    min-height: auto;
    border-bottom: none;
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 1200px;
    flex-direction: row;
    max-width: 1220px;
  }
  #vthomes-wrapper .site-search_main {
    position: var(--hm-display-relative);
    font-size: var(--hm-font-size-sm);
    margin: 0 12px;
  }
  #vthomes-wrapper .header-search {
    width: 50%;
  }
  #vthomes-wrapper .header-location {
    margin-left: 20px;
  }
  #vthomes-wrapper .header-location .toggle-container {
    position: var(--hm-display-relative);
  }
  #vthomes-wrapper .header-location .toggle-container .header-location-link {
    padding: 10px;
    display: var(--hm-display-block);
  }
  #vthomes-wrapper .header-location .toggle-container .svg-container {
    font-size: var(--hm-font-size-10);
    width: var(--hm-size-2-4em);
    height: var(--hm-size-2-4em);
    position: var(--hm-display-relative);
  }
  #vthomes-wrapper .header-location .toggle-container .svg-container svg {
    width: var(--hm-size-2-4em);
    height: var(--hm-size-2-4em);
    max-height: 25px;
    max-width: 25px;
  }
  #vthomes-wrapper .header-cart-container {
    margin-left: 20px !important;
    position: var(--hm-display-relative);
  }
  #vthomes-wrapper .header-cart-count {
    display: inline-block !important;
  }
  #vthomes-wrapper .header-cart-link[class] .header-cart-count {
    margin-left: 10px;
    min-width: 16px;
  }
  #vthomes-wrapper .core-right h2 {
    margin: 0 30px;
  }
  #vthomes-wrapper .header-account-link {
    display: var(--hm-display-block);
    font-size: var(--hm-font-size-sm);
    font-family: var(--hm-font-main);
    font-weight: var(--hm-font-weight-sm);
    color: var(--primary-color);
  }
  #vthomes-wrapper .account-icon-link .svg-container {
    font-size: var(--hm-font-size-10);
    width: 44px;
    height: 44px;
    padding: 10px;
    position: var(--hm-display-relative);
  }
  #vthomes-wrapper .account-icon-link .svg-container svg {
    width: var(--hm-size-24);
    height: var(--hm-size-24);
    padding: 2px;
    color: var(--primary-color);
    stroke: currentColor;
    max-width: 12em;
    max-height: 12em;
  }
  #vthomes-wrapper .site-search_main input {
    padding: 5px var(--hm-size-24);
    display: none;
  }
  #vthomes-wrapper #site-search-search-button {
    right: 16px;
  }
  #vthomes-wrapper .header-location .toggle-container .header-location-link:focus {
    outline: dashed 1px;
    outline-offset: -4px;
  }
  #vthomes-wrapper .header-location .toggle-container .header-location-link:hover .svg-container::after {
    content: "";
    width: var(--hm-layout-width);
    position: var(--hm-display-absolute);
    bottom: -10px;
    left: var(--top-left-right-bottom-0);
    border-bottom: 4px solid #000;
  }
  #vthomes-wrapper .header-cart-link[class]:focus {
    outline-offset: -4px;
  }
  #vthomes-wrapper .header-cart-link[class]:hover .svg-container::after {
    content: "";
    width: var(--hm-layout-width);
    position: var(--hm-display-absolute);
    bottom: -10px;
    left: var(--top-left-right-bottom-0);
    border-bottom: 4px solid #000;
  }
  #vthomes-wrapper .hmf-nav-primary {
    display: var(--hm-display-block);
    margin-top: 0;
    width: var(--hm-layout-width);
    background: var(--hm-color-white);
    color: var(--hm-color-white);
    position: var(--hm-display-relative);
    border-bottom: var(--hm-border-ccc);
  }
  #vthomes-wrapper .hmf-nav-primary .primary-nav-list {
    display: var(--hm-display-flex);
    flex-direction: row;
    margin: 0 auto;
    padding: 0 48px;
    width: var(--hm-layout-width);
    flex-wrap: wrap;
    max-width: 100%;
    height: 100%;
    background: unset;
    box-sizing: var(--hm-box-sizing);
    justify-content: left;
    gap: 48px;
  }
  #vthomes-wrapper .hmf-nav-primary .primary-nav-list .primary-nav-item {
    border: 0;
    padding: 0;
  }
  #vthomes-wrapper .hmf-nav-primary .primary-nav-list .primary-nav-item .toggle-container {
    width: var(--hm-layout-width);
  }
  #vthomes-wrapper .hmf-nav-primary .toggle-container {
    display: inline-block;
    position: var(--hm-display-relative);
  }
  #vthomes-wrapper .hmf-nav-primary .primary-nav-item .flyout-overlay {
    position: var(--hm-display-absolute);
    visibility: hidden;
    opacity: 0;
    background-color: rgba(34, 34, 34, 0.65);
    width: var(--hm-layout-width);
    height: 100vh;
    top: 100px;
    left: var(--top-left-right-bottom-0);
    z-index: 503;
  }
  #vthomes-wrapper .hmf-nav-primary .primary-nav-list .primary-nav-link {
    display: inline-block;
    position: var(--hm-display-relative);
    margin: 0;
    padding: 20px 0;
    border: 0;
    height: auto;
    width: auto;
    overflow: visible;
    white-space: normal;
    color: var(--primary-color);
    font-size: var(--hm-font-size-sd);
    font-weight: var(--hm-font-weight-sd);
    text-decoration: none;
    line-height: var(--hm-line-height-main);
  }
  #vthomes-wrapper .hmf-nav-primary .primary-nav-list .primary-nav-link:focus {
    outline: 0;
  }
  @keyframes menu-move-up {
    0% {
      transform: translate3d(0, -15px, 0);
    }
    100% {
      transform: translateZ(0);
    }
  }
  @keyframes menu-move-down {
    0% {
      transform: translateZ(0);
    }
    100% {
      transform: translate3d(0, 15px, 0);
    }
  }
  #vthomes-wrapper .hmf-nav-primary .item-event-hover:hover .sub-menu-dropdown {
    animation: menu-move-up 0.25s ease;
    -webkit-animation: menu-move-up 0.25s ease;
  }
  #vthomes-wrapper .hmf-nav-primary .primary-nav-item .sub-menu-dropdown {
    animation: menu-move-down 0.25s ease;
    -webkit-animation: menu-move-down 0.25s ease;
  }
  #vthomes-wrapper .sub-menu-dropdown {
    position: var(--hm-display-absolute);
    visibility: hidden;
    opacity: 0;
    width: 250px;
    text-align: left;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-clip: var(-hm-box-sizing);
    background-color: var(--hm-color-white);
    pointer-events: none;
    z-index: 380;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1490196078);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1490196078);
    padding: 10px 0;
  }
  #vthomes-wrapper .sub-menu-dropdown ul > li > a {
    color: #666;
    text-decoration: none;
    display: var(--hm-display-block);
    position: var(--hm-display-relative);
    padding: 10px 22px;
    font-size: var(--hm-font-size-sm);
    line-height: var(--hm-line-height-main);
  }
  #vthomes-wrapper .sub-menu-dropdown ul > li > a:hover {
    text-decoration: underline;
  }
  #vthomes-wrapper .sub-menu-dropdown li {
    display: var(--hm-display-block);
    position: var(--hm-display-relative);
    margin-bottom: 0;
  }
  #vthomes-wrapper .hmf-nav-primary .primary-nav-item:hover .sub-menu-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: visible;
  }
  #vthomes-wrapper .sub-menu-dropdown:after {
    content: "";
    position: var(--hm-display-absolute);
    left: var(--top-left-right-bottom-0);
    right: var(--top-left-right-bottom-0);
    bottom: 100%;
  }
  #vthomes-wrapper .hmf-nav-primary .sub-menu-dropdown {
    margin-top: 1px;
  }
  #vthomes-wrapper .site-header-desktop .media-home-main img.logo {
    width: 90px !important;
  }
}
@media (min-width: 768px) {
  #vthomes-wrapper .hine-xuong-dong {
    display: var(--hm-display-none);
  }
  #vthomes-wrapper .header-cart-container {
    margin-left: 10px;
  }
   .tac-home-layout.technology img.tac-media-mobile {
     display: none;
  }
   .hmf-carousel-wrap.slider-mobile {
		display: none !important;
   }
}
@media (min-width: 769px) and (max-width: 1279px) {
  #vthomes-wrapper .hmf-nav-primary .primary-nav-list {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #vthomes-wrapper .site-header {
    height: 70px;
  }
  #vthomes-wrapper .site-header__search-wrapper .site-search #vthomes-search-input {
    height: 48px;
    font-size: var(--hm-font-size-sd);
    min-width: 0;
  }
}
@media (max-width: 767px) {
  #vthomes-wrapper .cbhcc-rotating-banner__message a strong {
    font-size: var(--hm-font-size-sm);
    line-height: 1.4;
  }
  #vthomes-wrapper .icon-banner-anmobile {
    display: var(--hm-display-none);
  }
  #vthomes-wrapper .header-cart-link[class] .header-cart-count {
    position: var(--hm-display-absolute);
    right: var(--top-left-right-bottom-0);
    top: 5px;
    box-sizing: var(--hm-box-sizing);
    padding: 2px;
    width: 1.9em;
    height: 1.9em;
    font-size: var(--hm-font-size-10);
    color: var(--hm-color-white);
    text-align: var(--text-align);
    line-height: 1.3;
    background-color: var(--hm-color-gray-dark);
    border-radius: 10em;
    border: 1px solid var(--hm-color-white);
  }
  .tac-home-layout.technology img.tac-media-desktop {
    display: none;
   }
}
@media (min-width: 1px) {
  #vthomes-wrapper .header-cart-link[class].mobile-cart-link {
    padding: 10px;
  }
  #vthomes-wrapper .header-cart-link[class] {
    display: inline-flex;
    align-items: var(--hm-center);
    position: var(--hm-display-relative);
    text-decoration: none;
  }
  #vthomes-wrapper .header-cart-link[class] .svg-container {
    font-size: var(--hm-font-size-10);
    width: var(--hm-size-2-4em);
    height: var(--hm-size-2-4em);
    position: var(--hm-display-relative);
  }
  #vthomes-wrapper .header-cart-link[class] .svg-container svg {
    width: 2.2em;
    height: 2.2em;
    padding: 1px;
  }
  #vthomes-wrapper .header-cart-link[class] .header-cart-count {
    font-weight: var(--hm-font-weight-sd);
  }
  #vthomes-wrapper .header-cart-link[class]:focus {
    outline: dashed 1px;
    outline-offset: -3px;
  }
}

.cbhcc-rotating-banner {
  position: var(--hm-display-relative);
  overflow: var(--hm-overflow-hidden);
  width: var(--hm-layout-width);
  display: var(--hm-display-grid);
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: var(--align-items);
  text-align: var(--text-align);
  min-height: 60px;
  padding: 10px 0;
}

.cbhcc-rotating-banner__message {
  grid-area: 1/1/2/2;
  opacity: var(--hm-opacity-0);
  visibility: var(--hm-visibility-hidden);
  transition: opacity 1s, z-index 0.2s 1s, visibility 1s;
}

.cbhcc-rotating-banner__message.active {
  opacity: var(--hm-opacity-1);
  visibility: var(--hm-visibility-visible);
}

.cbhcc-rotating-banner__message a {
  display: inline-flex;
  justify-content: var(--hm-justify-content-center);
  align-items: var(--align-items);
  color: var(--hm-color-black);
  gap: 4px;
  margin: auto;
  cursor: pointer;
  text-decoration: none;
}

.giam-gia-30 {
  font-size: var(--hm-font-size-sd);
  color: red;
}

.cbhcc-rotating-banner__message svg.svg-icon-arrow-cta {
  margin-top: 2px;
  stroke-width: 1.3px;
  width: 1.2em;
  height: 0.409em;
}

.header-menu-container {
  position: fixed;
  top: var(--top-left-right-bottom-0);
  left: var(--top-left-right-bottom-0);
  width: 100vw;
  max-width: 375px;
  height: 100vh;
  z-index: 99990;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.header-menu-container.active-menu {
  transform: translate3d(0, 0, 0);
  transition: 0.25s ease-out, left 0.25s ease-out, width ease-out 0.25s;
}

.header-core {
  display: flex;
  justify-content: space-between;
  align-items: var(--hm-center);
  box-sizing: var(--hm-box-sizing);
}

.core-left {
  align-items: var(--hm-center);
}

.core-right {
  justify-content: flex-end;
  align-items: var(--hm-center);
}

button.header-menu-toggle {
  background: 0 0;
  border: none;
  padding: 8px;
}

button.header-menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke-width: 2px;
  display: var(--hm-display-block);
}

.header-cart-count[data-counter="0"] {
  display: var(--hm-display-none) !important;
}

.header-cart-container {
  align-self: var(--hm-center);
}

button.header-menu-toggle:focus {
  outline: var(--hm-color-black) dashed 1px;
  outline-offset: -3px;
}

.site-header {
  max-width: 100vw;
}

.content-overlay {
  opacity: var(--hm-opacity-0);
  visibility: var(--hm-visibility-hidden);
  position: fixed;
  top: var(--top-left-right-bottom-0);
  right: var(--top-left-right-bottom-0);
  bottom: var(--top-left-right-bottom-0);
  left: var(--top-left-right-bottom-0);
  background-color: rgba(34, 34, 34, 0.65);
  z-index: 99982;
  pointer-events: none;
  transition: opacity 0.25s ease-out, visibility 0.25s;
}

.content-overlay.active-nav {
  opacity: 0.6;
  visibility: var(--hm-visibility-visible);
  pointer-events: auto;
}

.header-menu {
  background: var(--hm-color-white);
  width: var(--hm-layout-width);
  height: 100%;
  max-width: 375px;
  overflow-y: scroll;
  scroll-padding-top: 56px;
  overscroll-behavior: contain;
  position: var(--hm-display-relative);
  z-index: 2;
}

.header-account .account-link-container {
  display: var(--hm-display-flex);
  align-items: var(--hm-center);
  gap: 5px;
  text-decoration: none;
}

.header-account, .login-popup-button, .account-login-button, .close-menu-account {
  cursor: pointer;
}

.dsButtonTransparent_6ijzy.account-link.login-popup-button {
  font-size: 12px;
  line-height: 16px;
  font-weight: var(--hm-font-weight-sm);
}

.header-account-link .account-link {
  cursor: pointer;
  text-decoration: none;
  font-family: var(--hm-font-main);
}

.header-account .account-icon-link {
  padding: 10px;
  display: var(--hm-display-block);
  cursor: pointer;
}

.header-account .svg-container, .account-icon-link .svg-container {
  font-size: var(--hm-font-size-10);
  width: var(--hm-size-2-4em);
  height: var(--hm-size-2-4em);
  position: var(--hm-display-relative);
}

.header-favorites-link[class] {
  padding: 10px;
  display: inline-flex;
  align-items: var(--hm-center);
  text-decoration: none;
  cursor: pointer;
}

.header-favorites-link[class] .svg-container {
  width: var(--hm-size-24);
  height: var(--hm-size-24);
  position: var(--hm-display-relative);
}

.header-favorites-link[class] .svg-container svg {
  width: var(--hm-size-24);
  height: var(--hm-size-24);
  padding: 2px;
  color: var(--hm-color-black);
  stroke: currentColor;
  max-width: 12em;
  max-height: 12em;
}

.header-account .svg-container svg {
  width: var(--hm-size-24);
  height: var(--hm-size-24);
  padding: 2px;
  color: var(--hm-color-black);
  stroke: currentColor;
  max-width: 12em;
  max-height: 12em;
}

.account-icon-link .svg-container svg {
  width: var(--hm-size-24);
  height: var(--hm-size-24);
  padding: 2px;
  color: var(--hm-color-black);
  stroke: currentColor;
  max-width: 12em;
  max-height: 12em;
}

.site-header__search-wrapper .site-search_main {
  position: var(--hm-display-relative);
  font-size: var(--hm-font-size-sm);
  margin: 0.7142857143em 2.2857142857em 0.7142857143em 0;
}

.site-search_main input {
  background: var(--hm-color-white);
  color: var(--hm-color-black);
  font-style: normal;
  font-weight: var(--hm-font-weight-sm);
  height: 48px;
  padding: 5px 6.4285714286em 5px 16px;
  font-size: var(--hm-font-size-sd);
  border: 1px solid #666;
  border-radius: 9999px;
  min-width: 24.0625em;
  box-sizing: var(--hm-box-sizing);
  display: var(--hm-display-flex);
  width: var(--hm-layout-width);
  box-shadow: none;
  outline: 0;
  text-overflow: ellipsis;
  line-height: normal;
  transition: border 0.2s linear;
  margin-bottom: 0;
  align-items: var(--hm-center);
}

.site-search_main input:focus {
  box-shadow: none;
  outline: solid 1px !important;
  outline-offset: -3px;
  border-radius: 9999px;
}

.site-search_main::-moz-placeholder {
  color: #666;
  opacity: 1;
}

.site-search_main::placeholder {
  color: #666;
  opacity: 1;
}

.site-search_main input {
  color: #666 !important;
  font-size: var(--hm-font-size-sd);
  font-weight: var(--hm-font-weight-sm);
}

#site-search-search-button {
  display: var(--hm-display-flex);
  position: var(--hm-display-absolute);
  top: 50%;
  right: 0.5714285714em;
  gap: 0.5714285714em;
  transform: translateY(-50%);
}

.vthomes-search-form {
  position: var(--hm-display-relative);
}
.vthomes-search-form #vthomes-search-results {
  position: var(--hm-display-absolute);
  top: 100%;
  left: var(--top-left-right-bottom-0);
  width: var(--hm-layout-width);
  background: var(--hm-color-white);
  border: 1px solid #ddd;
  z-index: 999;
}
.vthomes-search-form #vthomes-search-results a {
  display: var(--hm-display-block);
  padding: 10px;
}
.vthomes-search-form #vthomes-search-results a:hover {
  background: #f4f4f4;
}

.vthomes-search-form button {
  flex-shrink: 0;
}

#site-search-search-button {
  display: inline-flex;
  font-size: var(--hm-font-size-sm);
  align-items: var(--hm-center);
  justify-content: var(--hm-center);
  width: 36px;
  height: 36px;
}

#site-search-search-button svg {
  width: 1.5em;
  height: 1.5em;
  stroke-width: 3;
  color: #717171;
  stroke: #717171;
}

input[type=text]:focus {
  border-color: #666;
  outline: 0;
}

.site-search .overlayInactive {
  position: var(--hm-display-absolute);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.site-search .overlayActive.active {
  position: fixed;
  visibility: visible;
  opacity: 1;
  left: var(--top-left-right-bottom-0);
  right: var(--top-left-right-bottom-0);
  background-color: rgba(34, 34, 34, 0.65);
  width: var(--hm-layout-width);
  height: 100vh;
  z-index: 9999;
}

.menu-login-popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: var(--top-left-right-bottom-0);
  right: var(--top-left-right-bottom-0);
  width: 525px;
  height: 100vh;
  max-height: 100vh;
  max-width: 100vw;
  z-index: 9999991;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.3, 1), visibility 0.5s;
  background: var(--hm-color-white);
}

.menu-login-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease-out, opacity 0.25s ease-out, visibility 0.25s;
}

.login-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: var(--top-left-right-bottom-0);
  right: var(--top-left-right-bottom-0);
  bottom: var(--top-left-right-bottom-0);
  left: var(--top-left-right-bottom-0);
  background-color: rgba(34, 34, 34, 0.65);
  z-index: 99982;
  pointer-events: none;
  transition: opacity 0.25s ease-out, visibility 0.25s;
}

.login-overlay.active-nav {
  opacity: 0.6;
  visibility: visible;
  pointer-events: auto;
}

.header-favorites {
  margin-left: 20px;
}

.account-icon-link {
  display: var(--hm-display-flex);
  align-items: var(--hm-center);
  gap: 5px;
  text-decoration: none !important;
  width: -moz-max-content;
  width: max-content;
}

.header-favorites-link[class]:focus {
  outline: dashed 1px;
  outline-offset: -4px;
}

.header-favorites-link[class]:hover {
  text-decoration: none;
}

.header-favorites-link[class]:hover .svg-container::after {
  content: "";
  width: var(--hm-layout-width);
  position: var(--hm-display-absolute);
  bottom: -10px;
  left: var(--top-left-right-bottom-0);
  border-bottom: 4px solid #000;
}

.dsButtonTransparent_6ijzy:hover {
  text-decoration: underline !important;
}

.header-login-popup {
  position: var(--hm-display-relative);
  display: var(--hm-display-flex);
  box-sizing: var(--hm-box-sizing);
  margin: 0;
  width: var(--hm-layout-width);
  height: -moz-min-content;
  height: min-content;
  min-height: 52px;
  justify-content: flex-end;
  padding: 30px 30px 8px;
  justify-content: space-between;
}

.header-login-popup button.dsButtonTransparent_6ijzy {
  display: inline-grid;
  place-content: var(--hm-center);
  width: 44px;
  height: 44px;
  outline-offset: -2px;
  position: var(--hm-display-absolute);
  inset: 4px 4px auto auto;
}

.header-login-popup button.header-menu-toggle svg {
  height: 18px;
  width: 18px;
  max-height: 36px;
  max-width: 36px;
  stroke-width: 2;
}

.login-popup-content {
  display: var(--hm-display-flex);
  flex-direction: column;
  padding: 16px 32px;
  font-family: var(--hm-font-main);
}

.headingtext-Login .textlogin-content {
  font-size: var(--hm-size-24);
  margin: 0;
  font-weight: var(--hm-font-weight-sd);
  padding: 0 0 16px;
}

.headingtext-Login {
  display: var(--hm-display-flex);
}

form#vthomes-login-form {
  transition: all 0.3s ease;
  display: var(--hm-display-flex);
  flex-direction: column;
  flex-wrap: nowrap;
}

form#vthomes-login-form input, form#vthomes-lost-password-form input,
form#vthomes-register-form input {
  margin: 0 0 8px;
  box-sizing: var(--hm-box-sizing);
  display: inline-block;
  border: 1px solid #666;
  border-radius: 0;
  box-shadow: none;
  width: var(--hm-layout-width);
  position: var(--hm-display-relative);
  outline: 0;
  vertical-align: top;
  background-color: var(--hm-color-white);
  color: var(--hm-color-black);
  font-style: normal;
  font-weight: var(--hm-font-weight-sm);
  transition: border 0.2s linear, box-shadow 0.2s linear;
  padding: 5px var(--hm-size-24);
  line-height: normal;
  height: 44px;
  font-size: var(--hm-font-size-sd);
  border-radius: 999px;
}

form#vthomes-login-form input:focus {
  border-color: #666;
  box-shadow: 0 0 0 1px var(--hm-color-white) inset, 0 0 0 2px #666 inset;
}

.password-field-wrapper {
  position: var(--hm-display-relative);
  width: var(--hm-layout-width);
}
.password-field-wrapper input {
  width: var(--hm-layout-width);
  padding-right: 45px;
}
.password-field-wrapper .password-toggle-btn {
  position: var(--hm-display-absolute);
  right: 10px;
  top: 42%;
  transform: translateY(-46%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 10;
  display: var(--hm-display-flex);
  align-items: var(--hm-center);
  justify-content: var(--hm-center);
}

.create-password-show button#toggle-password {
  position: var(--hm-display-absolute);
  right: 10px;
  top: 42%;
  transform: translateY(-46%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 10;
  display: var(--hm-display-flex);
  align-items: var(--hm-center);
  justify-content: flex-end;
  height: var(--hm-size-24);
  width: -moz-max-content;
  width: max-content;
  margin: 0;
}

.login-forget {
  display: var(--hm-display-flex);
  flex-direction: column;
  gap: 8px;
}

.login-meta a#toggle-lost-password {
  display: inline-block;
  font-size: var(--hm-font-size-sm);
  font-weight: var(--hm-font-weight-sm);
  background: 0 0;
  color: var(--hm-color-black);
  border: none;
  padding: 0;
  margin: 0;
  text-transform: none;
  padding-left: var(--hm-size-24);
}

.login-meta a#toggle-lost-password:hover {
  text-decoration: underline;
}

.login-popup-content .login-forget button, .login-popup-content a#show-register,
.login-popup-content .social-login, form#vthomes-lost-password-form button,
form#vthomes-lost-password-form button.back-to-login, form#vthomes-register-form button {
  box-sizing: var(--hm-box-sizing);
  border: 2px solid var(--hm-color-black);
  border-radius: 999px;
  margin: 0 0 8px;
  padding: 0 var(--hm-size-24);
  font-style: normal;
  font-weight: var(--hm-font-weight-sd);
  text-align: var(--hm-center);
  text-decoration: none;
  text-transform: none;
  position: var(--hm-display-relative);
  outline: 0;
  white-space: nowrap;
  height: 44px;
  font-size: var(--hm-font-size-sm);
  line-height: 36px;
  background: var(--hm-color-black);
  color: var(--hm-color-white);
  letter-spacing: normal;
  width: 100%;
}

.login-popup-content a#show-register {
  display: var(--hm-display-flex);
  justify-content: var(--hm-center);
  align-items: var(--hm-center);
}

p.or-main {
  font-weight: var(--hm-font-weight-sm);
  font-size: var(--hm-font-size-sm);
  line-height: var(--hm-line-height-main);
  color: var(--hm-color-black);
  text-transform: lowercase;
  text-align: var(--hm-center);
  margin: 0 0 8px;
}

form#vthomes-lost-password-form input, form#vthomes-lost-password-form button,
form#vthomes-lost-password-form button.back-to-login, form#vthomes-register-form input {
  width: var(--hm-layout-width);
}

form#vthomes-lost-password-form p, form#vthomes-register-form span.textlogin-content {
  padding-left: var(--hm-size-24);
}

form#vthomes-register-form span.textlogin-content {
  font-size: var(--hm-font-size-sd);
  font-weight: var(--hm-font-weight-sm);
  padding-bottom: 8px;
}

.account-icon-link:hover .svg-container::after {
  content: "";
  position: var(--hm-display-absolute);
  bottom: -10px;
  left: var(--top-left-right-bottom-0);
  border-bottom: 4px solid #000;
  width: var(--hm-size-24);
  top: 100%;
  left: 50%;
  transform: translate(-50%, -100%);
}

.primary-nav-item:hover .primary-nav-link::after {
  content: "";
  position: var(--hm-display-absolute);
  bottom: var(--top-left-right-bottom-0);
  left: var(--top-left-right-bottom-0);
  width: var(--hm-layout-width);
  border-bottom: 4px solid var(--hm-color-black);
  z-index: 381;
}

.primary-nav-item .primary-nav-link:focus::after {
  content: "";
  position: var(--hm-display-absolute);
  bottom: var(--top-left-right-bottom-0);
  left: var(--top-left-right-bottom-0);
  width: var(--hm-layout-width);
  border-bottom: 4px solid var(--hm-color-black);
  z-index: 381;
}

.banner-container {
  background-color: #174168;
  min-height: 40px;
  align-items: center;
  display: flex;
  position: relative;
  justify-content: center;
}

.banner-container .tac-banner {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: flex-end;
  max-width: 1680px;
  align-items: center;
  padding: 0 24px;
}

.site-header-desktop .core-left img.img-gtk {
  max-height: 60px;
  width: 100%;
  height: 30px;
}

.site-header-wrapper-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
}

.site-header-desktop .core-right ul.primary-nav-list {
  display: flex;
  gap: 60px;
}

.site-search_container {
  display: none;
}

button#icon-search-banner {
  display: inline-flex;
  font-size: var(--hm-font-size-sm);
  align-items: var(--hm-center);
  justify-content: var(--hm-center);
  width: 36px;
  height: 36px;
}

button#icon-search-banner svg {
  width: 1.2em;
  height: 1.2em;
  stroke-width: 3;
  color: hsla(0, 0%, 100%, 0.8);
  stroke: hsla(0, 0%, 100%, 0.8);
}

.banner-container-all.tac-banner .wpml-ls-statics-shortcode_actions > ul > li {
  color: hsla(0, 0%, 100%, 0.8);
}

.banner-container-all.tac-banner .wpml-ls-legacy-list-horizontal a:focus {
  color: inherit;
}

.site-header-desktop .ds-link_3hhHd {
  text-decoration: none;
  color: #144069;
  font-size: 16px;
  font-weight: 600;
  padding: 30px 0;
  display: inline-block;
}

.primary-nav-item:hover .ds-link_3hhHd::after {
  content: "";
  position: var(--hm-display-absolute);
  bottom: var(--top-left-right-bottom-0);
  left: var(--top-left-right-bottom-0);
  width: var(--hm-layout-width);
  border-bottom: 4px solid #174168;
  z-index: 381;
}

.site-header-desktop .ds-link_3hhHd:focus::after {
  content: "";
  position: var(--hm-display-absolute);
  bottom: var(--top-left-right-bottom-0);
  left: var(--top-left-right-bottom-0);
  width: var(--hm-layout-width);
  border-bottom: 4px solid #174168;
  z-index: 381;
}

.site-header-desktop .core-right ul.primary-nav-list > li {
  position: relative;
}

.banner-container-all.tac-banner .wpml-ls-legacy-list-horizontal {
  padding: 0;
}

.wpml-ls-legacy-list-horizontal a span:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .site-main .mobile-main-video {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-main .desk-ipad-main {
    display: none;
  }
  .site-main .play-pause-btn {
    top: auto !important;
    bottom: 4% !important;
    left: 4% !important;
  }
  .site-main .video-container video {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 9/16 !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
@media (min-width: 1025px) {
  .site-main .play-pause-btn.glass-btn:hover {
    transform: scale(1.1);
  }
}

.video-container-all {
  display: flex;
  flex-direction: column;
  position: relative;
}

.video-container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  height: auto;
}

.video-container video {
  display: block;
  width: 100%;
  height: auto;
  visibility: visible;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.play-pause-btn.glass-btn {
  position: absolute;
  top: 48px;
  left: 40px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  z-index: 10;
  padding: 0;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0.5px 0.5px 0.5px rgba(0, 0, 0, 0.1));
  background: rgba(255, 255, 255, 0.01);
  border: 0.6px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  transform: translateZ(0);
}

.play-pause-btn.playing .play-icon {
  opacity: var(--hm-opacity-0);
  transform: translate(-50%, -50%) scale(0.6);
}

.play-pause-btn .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-pause-btn.playing .pause-icon {
  opacity: var(--hm-opacity-1);
  transform: translate(-50%, -50%) scale(1);
}

.play-pause-btn .pause-icon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
}

.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0 4px;
}

.play-pause-btn.glass-btn:hover {
  background: rgba(255, 255, 255, 0.01);
}

.play-pause-btn.glass-btn:focus {
  background-color: rgba(255, 255, 255, 0.05);
}

.play-pause-btn.glass-btn:hover::before {
  opacity: 0.7;
}

.play-pause-btn.glass-btn::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: inherit;
  background-attachment: fixed;
  filter: blur(1.5px) brightness(1.3);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}

.play-pause-btn.glass-btn::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0) 40%);
  transition: transform 1.2s;
  transform: translateX(-100%);
}

.play-pause-btn.glass-btn:hover::after {
  transform: translateX(100%);
}

.hm-container-text.hm-align-center {
  text-align: center;
}

.hm-container-text.hm-hor-center {
  left: 50%;
  transform: translateX(-50%);
}

.hm-container-text.hm-absolute {
  position: absolute;
}

.hm-container-text:has(a) {
  z-index: 1;
}

.hm-container-text {
  position: relative;
  white-space: nowrap;
  top: 10%;
}

.hm-container-text a {
  display: block;
  position: relative;
  color: var(--secondary-color);
}

.video-container-all a:not(.button, :has(> [class*=brandBtn])):focus:before {
  bottom: 0.1em;
  left: 0.1em;
  outline-color: #222;
  right: 0.1em;
  top: 0.1em;
  z-index: 1;
}

.video-container-all a:not(.button):focus:after, .video-container-all a:not(.button):focus:before {
  border: none;
  content: "";
  display: inline-block;
  outline: 1px dashed;
  position: absolute;
}

@media (max-width: 1024px) {
  footer .hm-footer-container-4 a {
    align-items: center;
    align-content: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  footer {
    --content-max-width: 450px !important;
    --padding-horizontal: 16px !important;
  }
  footer .hm-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  footer .hm-footer-container-4 .hm-footer-col > div:not(.hm-footer-logo) {
    justify-items: center;
  }
  footer .hm-footer-logo {
    flex-direction: column;
    align-items: center;
  }
  footer .hm-footer-bottom p {
    text-align: center;
  }
  footer .hm-footer-container {
    grid-template-columns: 1fr !important;
    text-align: center;
    justify-items: center;
  }
}
footer > * {
  grid-column: content;
}

footer {
  --padding-vertical: 24px;
  --padding-horizontal: 40px;
  --content-max-width: 1400px;
  background-color: rgb(20, 64, 105);
  display: grid;
  max-width: 100vw;
  padding: var(--padding-vertical) 0;
  grid-template-columns: [full-width-start] minmax(var(--padding-horizontal), 1fr) [content-start] min(100% - var(--padding-horizontal) * 2, var(--content-max-width)) [content-end] minmax(var(--padding-horizontal), 1fr) [full-width-end];
  clear: both;
  max-width: none;
  float: none;
  width: 100%;
  position: relative;
  justify-items: center;
}

footer .hm-footer-container {
  grid-column: content;
  display: grid;
  row-gap: 24px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  padding-bottom: 24px;
}

.hm-footer-container-1 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 24px;
}

.hm-footer-container-2 {
  font-size: 14px;
  line-height: 24px;
}

footer .hm-footer-container-4 {
  row-gap: 40px;
}

footer .hm-footer-container-1.hm-footer-container-3 .hm-footer-col {
  margin-bottom: 0;
}

.hm-footer-container-1 .hm-footer-info {
  list-style-type: none;
  margin: 0;
}

.hm-footer-container-1 .hm-footer-col {
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

footer .hm-footer-container-4 .hm-footer-col > div:not(.hm-footer-logo) {
  display: grid;
  row-gap: 12px;
}

footer .hm-footer-container-4 .hm-footer-col .hm-footer-info-content {
  display: grid;
  row-gap: 12px;
}

footer .hm-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer .hm-footer-logo svg {
  font-size: 10px;
  stroke-width: 1;
  width: 4em;
  height: 4em;
  max-width: 80px;
  max-height: 80px;
  fill: #f7f7f7;
}

footer .hm-footer-container-4 h2 {
  font-size: 14px;
  margin: 0;
}

footer .hm-footer-container-4 svg.hm-icon-policy {
  fill: #222 !important;
}

footer .hm-footer-container-4 p {
  margin: 0;
  line-height: 1.3em;
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  word-spacing: 6px;
}

footer .hm-info-item span {
  display: inline-block;
  font-size: 14px;
  font-weight: inherit;
}

footer .hm-footer-container-4 a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: inherit;
  width: 170px;
}

footer .hm-footer-container-4 a:hover {
  text-decoration: underline;
  color: #222;
}

footer .hm-footer-container-4 svg.hm-icon-maps {
  font-size: 6px;
  stroke-width: 1;
  width: 4em;
  height: 4em;
  max-width: 80px;
  max-height: 80px;
}

footer .hm-footer-container-4 .hm-info-item-map {
  display: flex;
  color: #666;
  padding-left: 8px;
}

footer .hm-footer-bottom p {
  margin: 12px 0;
  color: #ccc;
  font-weight: 400;
  font-size: 12px;
}

footer .social-links-4 {
  display: flex;
  gap: 8px 16px;
}

footer .social-links-4 svg {
  font-size: 10px;
  width: 2.4em;
  height: 2.4em;
  max-width: 48px;
  max-height: 48px;
  stroke-width: 0;
}

footer .social-links-item-1 {
  display: inline-flex;
}

.hm-footer-col.hm-footer-info h2 {
    color: #a68556;
    font-size: 24px;
    margin-bottom: 20px;
}

.hm-footer-col.hm-footer-info.right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

footer .hm-footer-container-1 div.hm-footer-info.center {
  justify-content: center;
}

footer .hm-footer-container {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1220px;
  padding: 0 32px;
}

footer .hm-footer-container-1 div.hm-footer-col {
  display: grid;
  align-content: start;
  row-gap: 10px;
  min-width: 0;
}

@media (min-width: 1025px) {
  .main-desktop-middle .media-home-main-mobile {
    display: none;
  }
}
@media (max-width: 1024px) {
  .main-desktop-middle .media-home-main {
    display: none;
  }
}
.media-home-main img, .media-home-main-mobile img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  display: block;
}

.main-desktop-middle .tac-home-layout {
  justify-content: center;
  padding: 32px;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  background-color: #fff;
}

.main-desktop-middle .tac-carousel-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 24px;
}

.main-desktop-middle .tac-carousel-header h2 {
  font-size: clamp(24.02px, -0.009px + 2.64vw, 50.67px) !important;
  font: inherit;
  font-weight: 700;
  color: #144069;
}

div#main-desktop-middle {
  background-color: #f5f5f5;
}

.tac-container p.carousel-text {
  font-weight: 400;
  font-size: 1.1rem;
}

.tac-home-layout-map {
  position: relative;
  width: 100%;
}

.tac-home-layout-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.tac-home-layout-map .tac-container-map {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

main.tac-container-all figure.wp-block-image.size-large img {
  width: 100vw;
}

main.tac-container-all figure.wp-block-image.size-large {
  margin: 0;
  padding: 0;
}

main.tac-container-all h1.text-container-page {
  display: none;
}

.tac-container-all p.carousel-text {
  color: #222;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  border-left: 4px solid #174168;
  padding: 10px;
  display: inline-block;
  background-color: #f0efed;
}

.tac-container-all {
  border-bottom: 1px solid #ccc;
  margin-bottom: 24px;
}

.tac-container-footer p.carousel-text {
  color: #222;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  border-left: 4px solid #174168;
  padding: 10px;
  display: inline-block;
  background-color: #f0efed;
}

.technology .tac-container-all {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  padding: 10px 0px 32px 0px;
}

.tac-media-container img {
  border-radius: 8px;
  display: block;
}

.tac-container-text span.carousel-text {
  font-weight: 400;
}

.tac-container-all.list-9 {
  border-bottom: none;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: sans-serif;
}

.info-table td {
  border: 1px solid #000;
  padding: 12px 15px;
  vertical-align: middle;
}

/* Cột bên trái độ rộng cố định để nhìn gọn hơn */
.info-table td:first-child {
  width: 25%;
  font-weight: bold;
  background-color: #f9f9f9;
}

/* Responsive cho điện thoại */
@media (max-width: 767px) {
  .technology .tac-container-all {
    flex-direction: column !important;
  }
  .main-desktop-middle .tac-home-layout {
    padding: 0 !important;
  }
  .slider-dots {
    bottom: 6% !important;
  }
  div#main-desktop-middle .tac-home-layout.home-page {
    padding: 16px !important;
  }
  .tac-container p.carousel-text {
    font-size: 14px !important;
  }
  .tac-home-layout.owned .tac-container-all {
     padding: 0 16px 24px 16px !important;
  }
  .main-desktop-middle .tac-carousel-header {
	  margin-top: 24px;
   }
  .tac-carousel-wrap {
	  padding: 0 16px 24px;
  }
  .iframe-map-container, iframe {
    min-height: 200px !important;
	height: 200px !important;
  }
  .tac-home-layout.technology .tac-container-text {
	width: 100% !important;
	display: flex;
	flex-direction: row;
	justify-content: center;
  }
	.hmf-carousel-wrap.slider-desktop {
		display: none !important;
	}
}
@media (max-width: 600px) {
  .info-table td {
    width: 100%;
    box-sizing: border-box;
  }
}

div#n2-ss-2-arrow-next img.skip-lazy {
    margin-left: clamp(2.04px, .2vw, 3.84px);
}
div#n2-ss-2-arrow-previous img.skip-lazy {
    margin-right: clamp(2.04px, .2vw, 3.84px);
}
div#n2-ss-2 .n2-style-da7cc8d058b4d9b4a848aa1e9320588b-dot, div#n2-ss-3 .n2-style-da7cc8d058b4d9b4a848aa1e9320588b-dot {
	background-color: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid #fff !important;
	transition: background-color 0.3s, transform 0.3s;
}
div#n2-ss-2 .n2-style-da7cc8d058b4d9b4a848aa1e9320588b-dot:hover {
    transform: scale(1.1);
}

div#n2-ss-2 .n2-style-da7cc8d058b4d9b4a848aa1e9320588b-dot.n2-active, 
div#n2-ss-3 .n2-style-da7cc8d058b4d9b4a848aa1e9320588b-dot.n2-active, 
div#n2-ss-2 .n2-style-da7cc8d058b4d9b4a848aa1e9320588b-dot:HOVER, 
div#n2-ss-2 .n2-style-da7cc8d058b4d9b4a848aa1e9320588b-dot:FOCUS {
    background-color: #fff !important;
}
.tac-home-layout.owned .tac-container-all {
    padding: 0 32px 24px 32px;
    border-bottom: none;
    margin-bottom: 0px;
}
.tac-home-layout.inquiry h2.carousel-title {
    font-size: 28px;
    color: #174168;
    margin: 24px 0;
}
.tac-home-layout.inquiry li.primary-nav-item.menu-design {
    font-size: 16px;
    line-height: 28px;
}

/* Trạng thái mặc định */
.site-header-wrapper-desktop, 
.site-header-mobile {
    transition: all 0.3s ease-in-out;
    width: 100%;
}

/* Khi có class active (đã cuộn) */
.site-header-wrapper-desktop.active, 
.site-header-mobile.active {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .15);
    animation: slideDown .6s ease-out;
	height: 70px;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.iframe-map-container, 
iframe {
    width: 100% !important;
    min-height: 300px !important;
    display: block !important;
    overflow: hidden !important;
    -webkit-overflow-scrolling: touch !important; 
}
.tac-home-layout.technology .tac-media-container {
    position: relative;
}
.tac-container-map { 
    height: auto !important;
    display: block !important;
    position: relative !important;
}
.tac-home-layout.technology .tac-container-text {
    position: absolute;
    top: 4%;
    left: 4%;
    background-color: #ffffff26;
    padding: 12px;
    border-radius: 8px;
	width: auto !important;
}
.tac-home-layout.technology h2.carousel-title-bottom {
    color: #144069;
}

/* --- Fix hiển thị ngôn ngữ --- */
span.wpml-ls-display {
    display: none;
}
.wpml-ls-legacy-list-horizontal .wpml-ls-current-language {
    display: none !important;
}
.wpml-ls-item-ja a:hover {
    text-decoration: underline;
}
span.wpml-ls-native {
    text-transform: uppercase;
}

.map-overlay {
    position: absolute;
    top: 10px; 
    left: 10px;
    background: white;
    padding: 10px;
    z-index: 10;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.map-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}
.tac-home-container p.carousel-text {
    color: #222;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    border-left: 4px solid #174168;
    padding: 10px;
    display: inline-block;
    background-color: #f0efed;
}
header.site-header.site-header-desktop .core-left {
    display: flex;
    flex-direction: row;
}
.site-header-desktop .core-left img.logo-co {
    height: 48px !important;
    width: auto;
	display: block;
}
.tac-carousel-logoco {
    margin-right: 8px;
}
.tac-container-text {
    margin-right: 24px;
}
.tac-container-text p.carousel-text {
    font-size: 12px;
	color: #174168;
}
.tac-container-text h2.carousel-title {
    font-size: 18px;
    color: #174168;
}
.site-header-wrapper-desktop.active .site-header-desktop .ds-link_3hhHd {
    padding: 24px 0;
}
.tac-container-all ul.primary-nav-list {
    padding-bottom: 32px;
}
.header-logo-mobile {
    display: flex;
    justify-content: center;
}
.header-logo-mobile img.img-gtk {
    width: 80px;
}