:root {
    --main-cl: #F6EADA;
    --sub-cl: #F27325;
    --container-w: 75rem;
}

.container-width, .full-width .ubermenu-nav, .container, .row {
    max-width: var(--container-w) !important;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 0.417rem;
    background-color: #cedbff;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--main-cl);
}

input, optgroup, select, textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
    outline: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

body {
    overflow-x: hidden;
}

.grid-container {
    max-width: var(--container-w);
    margin-left: auto;
    margin-right: auto;
}

#search-lightbox {
    width: 37.5rem;
    max-width: 100%;
}

#search-lightbox .search-lightbox-title {
    margin-bottom: 1.667rem;
    font-size: 1.979rem;
    line-height: 1.2;
    font-weight: 700;
}

#search-lightbox .search-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.083rem;
    gap: 0.521rem;
}

#search-lightbox .search-keywords > a {
    -webkit-border-radius: 2.604rem;
    -moz-border-radius: 2.604rem;
    border-radius: 2.604rem;
    font-size: 0.833rem;
    line-height: 1.042rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.3125rem 0.833rem;
    display: flex;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#search-lightbox .search-keywords > a:hover {
    background-color: #fff;
    color: #000
}

#search-lightbox .flex-row > div {
    display: flex;
}

#search-lightbox .flex-row {
    align-items: unset;
    display: flex;
    -webkit-border-radius: 2.604rem;
    -moz-border-radius: 2.604rem;
    border-radius: 2.604rem;
    overflow: hidden;
}

#search-lightbox input {
    height: 100%;
    border: none;
}

#search-lightbox .button.icon {
    line-height: normal;
    min-height: unset;
    height: 100%;
    border: none;
    min-width: unset;
    background-color: #FFF;
    display: flex;
    align-items: center;
}

#search-lightbox .button.icon i {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    color: #000
}

#search-lightbox input {
    font-size: 1.042rem;
    line-height: 1.25rem;
    padding-left: 1.5625rem;
    box-shadow: unset;
    height: 2.604rem;
}

.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-content #search-lightbox {
    transform: translateY(-70%);
}

.load_home_page svg {
    width: 20.833rem;
    max-width: 95%;
    height: auto;
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%);
    /* backwards: chạy xong thì trả property về computed style, để lúc .complete
       transition opacity 1 -> 0 vẫn ăn */
    animation: loaderLogoFadeIn 0.55s ease backwards;
}

.load_home_page svg path {
    fill: var(--main-cl);
}

@keyframes loaderLogoFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -47%) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.load_home_page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999;
    opacity: 1;
    background-color: #2D1917;
    transition: opacity 0.45s ease;
}

div.load_home_page .mask {
    /*background-color: #00BDFFFF;*/
    transition: 1s all ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
}

div.load_home_page.complete .mask {
    background-color: transparent;
}

div.load_home_page .mask span {
    display: block;
    width: 100%;
    height: 20%;
    position: absolute;
    left: 0;
    transition: 1s all ease-in-out;
    background-color: #2D1917;
    /*backdrop-filter: blur(40px);*/
}

div.load_home_page .mask span:nth-child(even) {
    left: unset;
    right: 0;
}

div.load_home_page .mask span:nth-child(1) {
    top: 0;
}

div.load_home_page .mask span:nth-child(2) {
    top: 20%;
}

div.load_home_page .mask span:nth-child(3) {
    top: 40%;
}

div.load_home_page .mask span:nth-child(4) {
    top: 60%;
}

div.load_home_page .mask span:nth-child(5) {
    top: 80%;
}

.load_home_page.complete {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}

/* Xong là các thanh mask biến mất luôn, không chạy hiệu ứng gì thêm */
div.load_home_page.complete .mask span {
    display: none;
    transition: none;
    animation: none;
}

#respond input#wp-comment-cookies-consent {
    height: auto !important;
    margin: 0 10px 0 0 !important;
}

.load_home_page.complete svg {
    opacity: 0;
    animation: none;
    transition: opacity 0.45s ease;
}

.load_home_page rect,
.load_home_page path {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.path-1 {
    animation-name: Signature2;
    animation-duration: 10s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(2, .25, .43, .96);
    stroke: #FFF;
    stroke-width: 1px;
    stroke-dasharray: 2108;
    stroke-dashoffset: 2108;
    fill: transparent;
}

.path-2 {
    animation-name: Signature1;
    animation-duration: 20s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(2, .25, .43, .96);
    stroke: var(--sub-cl);
    stroke-width: 1px;
    stroke-dasharray: 2108;
    stroke-dashoffset: 2108;
    fill: transparent;
}

.load_home_page.complete .path-2 {
    fill: var(--sub-cl);
}

.load_home_page.complete .path-1 {
    fill: #FFF
}

@keyframes Signature1 {
    to {
        stroke: var(--sub-cl);
        stroke-dashoffset: 0;
    }
}

@keyframes Signature2 {
    to {
        stroke: #FFF;
        stroke-dashoffset: 0;
    }
}




.tile-reveal {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-flow: row wrap;
    align-self: flex-start;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 99;
    background: #fff;
}

.tile-reveal-square {
    flex: 1 1 auto;
    width: 80px;
    height: 80px;
    background-color: var(--main-cl);
    opacity: 1;
}

.wrap-enter-site {
    position: fixed;
    width: 100%;
    height: auto;
    bottom: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
}

.search-page {
    padding: 5.208rem 0;
}

.search-page h1 {
    margin-bottom: 2.604rem;
}

.search-tabs .search-tabs-title {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    gap: 0.833rem;
}

.search-tabs .search-tabs-title .search-tab-title {
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--fs-color-primary);
    font-size: 0.833rem;
    line-height: 1.042rem;
    color: var(--fs-color-primary);
    -webkit-border-radius: 0.521rem;
    -moz-border-radius: 0.521rem;
    border-radius: 0.521rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
}

.search-tabs .search-tab-title:hover,
.search-tabs .search-tab-title.active {
    background-color: var(--fs-color-primary);
    color: #FFF;
}

.search-tabs .search-tab-content {
    display: none;
}

.search-tabs .search-tab-content.active {
    display: block;
}

.search-tabs .search-empty {
    color: #333;
    font-size: 1.25rem;
    line-height: 2.083rem;
    padding: 0.521rem;
}

.search-tabs .search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1.667rem;
    margin-bottom: 1.5625rem;
}

.search-tabs .search-item h3 {
    margin: 0.521rem 0 0 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}


/*setup code*/

html.js.has-off-canvas-undefined {
    margin-right: 0.417rem !important;
}

body.compensate-for-scrollbar {
    margin-right: 0 !important;
}

.uppercase {
    text-transform: uppercase;
}

.justify {
    text-align: justify;
}

.italic {
    font-style: italic;
}

h1, h2, h3, h4, h5, h6, a, span, strong, .breadcrumbs {
    font-weight: unset !important;
    margin: 0;
}

.t-w,
.text-white,
.text_white {
    color: white;
}


.clearfix:after {
    content: unset;
}

.cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s all;
}

.contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .7s all;
}

img,
path,
line,
svg {
    transition: .7s all;
}


.active > .clip-path-to-bot path,
.active > .clip-path-to-left path,
.active > .clip-path-to-right path,
.clip-path-to-bot.active path,
.clip-path-to-left.active path,
.clip-path-to-right.active path {
    clip-path: inset(0 0 0 0);
}

.clip-path-to-left path {
    transition: 2s;
    clip-path: inset(0 0 0 100%);
}

.clip-path-to-bot path {
    transition: 2s;
    clip-path: inset(0 0 100% 0);
}

.clip-path-to-right path {
    transition: 2s;
    clip-path: inset(0 100% 0 0);
}


.banner_hero_svg .clip-path-to-left path {
    clip-path: inset(0 0 0 100%);
    transition: none;
}

.banner_hero.banner_loading .banner_hero_svg .clip-path-to-left path {
    transition: none;
}

.banner_hero.active:not(.banner_loading) .banner_hero_svg .clip-path-to-left path {
    clip-path: inset(0 0 0 0);
    transition: clip-path 2s ease;
}

.banner_hero:not(.active) .banner_hero_svg .clip-path-to-left path {
    clip-path: inset(0 0 0 100%);
    transition: clip-path 1s ease;
}

svg {
    width: 100%;
    height: 100%;
    display: block;
}

.img-scale:hover img {
    transform: scale(1.1);
    transition: .7s all;
}

.pattern {
    position: absolute;
    pointer-events: none;
    transition: .7s all;
}

.z-1 {
    z-index: 1 !important;
}

.z-2 {
    z-index: 2 !important;
}

.z-3 {
    z-index: 3 !important;
}

.z-4 {
    z-index: 4 !important;
}

.z-5 {
    z-index: 5 !important;
}

.flex-col {
    flex-direction: column;
}

.item_link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

@keyframes opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes transform-y {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse-border-transform {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

@keyframes pulse-border-tiny {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border-2 {
    0% {
        transform: scale(1) translate(-50%, -50%);
        opacity: 1;
    }
    100% {
        transform: scale(1.3) translate(-50%, -50%);;
        opacity: 0;
    }
}

@keyframes pulse-border3 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}


@keyframes shake {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-15deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(15deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-15deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(15deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes shake-2 {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-5deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(5deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-5deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(5deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.s-content {
    font-size: 0.78125rem;
}

.btn_content {
    color: white;
    font-size: 0.9375rem;
}


.content,
.content_text {
    font-size: 0.9375rem;
}

.l-content {
    font-size: 1.042rem;
    line-height: normal;
}

.xl-content {
    font-size: 1.25rem;
}

.tab_block_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(-60px) skewX(8deg);
    transition: opacity .5s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1);
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
}

.tab_block_inner.active {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
    pointer-events: auto;
    position: relative;
    visibility: visible;
    overflow-x: auto;
    overflow-y: hidden;
}


.count_opacity,
.counter_opacity {
    opacity: 0;
}

.count,
.counter {
    position: absolute;
    left: 0;
}

.mobile_display,
.mobile_flex {
    display: none;
}

.limit-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.limit-1 {
    -webkit-line-clamp: 1;
}

.limit-2 {
    -webkit-line-clamp: 2;
}

.limit-3 {
    -webkit-line-clamp: 3;
}

.limit-4 {
    -webkit-line-clamp: 4;
}

.limit-5 {
    -webkit-line-clamp: 5;
}

.limit-6 {
    -webkit-line-clamp: 6;
}

.limit-7 {
    -webkit-line-clamp: 7;
}

.the_content :is(ul,ol) {
    padding-left: 1rem;
}

.ajax_loading {
    position: absolute;
    inset: 0;
    background: rgb(255 253 249 / 80%);
    /*background:#0047391f;*/
    display: flex;
    align-items: start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    padding-bottom: 20rem;
    padding-top: 15rem;
}

.ajax_loading.active {
    opacity: 1;
    pointer-events: auto;
    align-items: flex-end;
    padding-bottom: 20rem;
}

.ajax_loading_logo {
    width: 20rem;
    animation: loadingFloat 1s ease-in-out infinite;
    display: flex;
    justify-content: center;
}

@keyframes loadingFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.wpcf7 .wpcf7-not-valid-tip {
    position: absolute;
    opacity: 1;
    z-index: 1;
}


body #main {
    color: #333333;
}

.bg_sec {
    position: absolute;
    width: 100%;
    pointer-events: none;
}

.left_full {
    margin-left: calc(-1 * calc(calc(100vw - var(--container-w)) / 2) - 15px);
}

.right_full {
    margin-right: calc(-1 * calc(calc(100vw - var(--container-w)) / 2) - 15px);
}

html body :is(input,textarea,form) {
    margin: 0;
}

.load_home_page.complete img.logo_center {
    opacity: 0;
}


img.logo_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20rem;
    max-width: 80vw;
    transition: .8s all ease-in-out;
    opacity: 1;
    max-height: 20rem;
    height: auto;
}

ul.sub-menu {
    border-radius: 10px;
    background: white;
    opacity: 0;
    display: block;
    text-align: left;
    overflow: hidden;
    padding: 0;
    top: 100%;
}

header#header ul.header-nav ul.sub-menu a {
    transition: .7s all;
    text-align: left;
    color: #333 !important;
    font-size: 0.9375rem;
    font-style: normal;
    font-family: 'wix medium';
    text-transform: unset;
    margin: 0 1rem;
    padding: .35rem 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.15);
    position: relative;
    line-height: normal !important;
    width: 100%;
}

header#header ul.header-nav ul.sub-menu li:hover > a {
    color: var(--main-cl) !important;
    transition: .7s all;
}

ul.sub-menu li {
    width: 100%;
    overflow: hidden;
    display: flex;
}

/*end setup*/

.header_coming_soon {
    position: fixed;
    top: 3.28125rem;
    right: 4.21875rem;
    z-index: 1002;
}

.language_wrap_inner {
    gap: 0.573rem;
}

.language_title {
    color: var(--main-cl);
    transition: .7s all;
    line-height: normal;
}

.language_svg {
    width: 0.833rem;
    height: 0.833rem;
    display: flex;
    flex: 0 0 auto;
}

.coming_soon_container {
    padding-top: 3.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7.03125rem;
}

h1 {
    font-family: 'gegyll';
    color: var(--main-cl);
    letter-spacing: 10%;
    font-size: 3.125rem;
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: unset !important;
}

.coming_soon {
    height: 100vh;
    /* dvh: khong bi hut chieu cao khi thanh dia chi mobile an/hien */
    height: 100dvh;
    background: #2D1917;
}

.coming_soon .btn {
    margin-top: 2.34375rem;
    font-size: 0.78125rem;
    color: #352824;
    text-transform: uppercase;
    line-height: 1.4;
    padding: 0.78125rem 4.323rem;
    font-family: 'gegyll';
    background: var(--main-cl);
    border-radius: 100px;
    transition: .7s all;
    border: 1px solid var(--main-cl);
}

.coming_soon .group_content .content {
    width: 32.292rem;
    margin-top: 1.146rem;
    color: var(--main-cl);
    font-family: 'gegyll';
}

.coming_soon .btn:hover {
    background: transparent;
    color: var(--main-cl);
    transition: .7s all;
}


.coming_soon_pattern_animation {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* SVG phu kin khung: cover ca chieu ngang lan chieu doc (di kem preserveAspectRatio="xMidYMid slice") */
.coming_soon_pattern_animation svg {
    display: block;
    width: 100%;
    height: 100%;
}

.coming_soon_pattern_animation .cs_blob {
    --orbit-r: 260px;
    --orbit-time: 12s;
    animation: cs_orbit var(--orbit-time) linear infinite;
    transform-box: view-box;
    transform-origin: center;
    will-change: transform;
}

/* Lệch pha 1/3 vòng => 3 khối luôn cách đều nhau trên đường tròn.
 * Tính theo --orbit-time nên đổi chu kỳ ở trên là tự khớp lại, khỏi sửa tay 2 chỗ.
 * Delay ÂM để chúng vào đúng vị trí ngay từ frame đầu, không phải đứng chờ. */
.coming_soon_pattern_animation .cs_blob_1 {
    --orbit-r: 260px;
    animation-delay: 0s;
}

.coming_soon_pattern_animation .cs_blob_2 {
    --orbit-r: 300px;
    animation-delay: calc(var(--orbit-time) * -1 / 3);
}

.coming_soon_pattern_animation .cs_blob_3 {
    --orbit-r: 230px;
    animation-delay: calc(var(--orbit-time) * -2 / 3);
}

@keyframes cs_orbit {
    from {
        transform: rotate(0deg) translateX(var(--orbit-r)) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(var(--orbit-r)) rotate(-360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .coming_soon_pattern_animation .cs_blob {
        animation: none;
    }
}

.coming_soon_pattern_line {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /*mix-blend-mode: color-dodge;*/
    pointer-events: none;
}


.coming_soon_pattern_line.cs_line_animate path {
    fill-opacity: 0;
}

/* Bản stroke (.cs_line_draw): giấu nét cho tới khi csDrawLineSvg() set xong
   dasharray, không thì loé nguyên pattern một nhịp rồi mới vẽ. */
.cs_line_draw path {
    stroke-opacity: 0;
}

.cs_line_draw.cs_line_ready path {
    stroke-opacity: 1;
}

.coming_soon .bg_sec {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color-dodge;
    z-index: 3;
    pointer-events: none;
}

.pattern.pattern_1 {
    left: 0;
    top: 0;
}

.pattern.pattern_2 {
    left: 0;
    bottom: 0;
}

.pattern.pattern_3 {
    right: 0;
    top: 0;
}

.language_main {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    transition: .7s all;
    pointer-events: none;
    background: #F7E4D1;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.language_main .content {
    padding: 0.365rem 0.521rem;
    color: #352824;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.language_wrap:hover .language_main {
    opacity: 1;
    transition: .7s all;
    pointer-events: all;
    line-height: 1;
}

.language_main:hover .content {
    color: var(--main-cl);
    transition: .7s all;
}

.language_main:hover {
    background: #352824;
    transition: .7s all;
}

.quick_cta {
    top: 20.625rem;
    right: 3.646rem;
    position: fixed;
    z-index: 10;
    gap: 0.78125rem;
}

.quick_cta .item {
    width: 2.34375rem;
    height: 2.34375rem;
    border: 1px solid var(--main-cl);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .7s all;
}

.quick_cta .item img {
    max-width: 1.5625rem;
    max-height: 1.042rem;
    object-fit: contain;
}

.quick_cta .item:hover {
    background: #352824;
    border: 1px solid #352824;
    transition: .7s all;
}

.footer_desktop {
    position: fixed;
    z-index: 10;
    bottom: 3.698rem;
    width: 100%;
    padding: 0 3.646rem;
}

a.hotline {
    gap: 0.521rem;
}

.hotline_content {
    color: var(--main-cl);
    font-size: 1.302rem;
    font-family: 'gegyll';
    line-height: normal;
}

.logo_2 {
    width: auto;
    height: 3.073rem;
}

.coming_soon_container .logo {
    width: auto;
    height: 6.615rem;
}

.cs_popup {
    width: 48.229rem;
    background: var(--main-cl);
    overflow: unset;
    cursor: auto !important;
    border-radius: 20px;
    padding: 4.323rem 5.46875rem 2.76rem;
}

.cs_popup button.fancybox-button.fancybox-close-small {
    padding: 0;
    right: 1.458rem;
    top: 1.458rem;
    color: black;
    opacity: 1;
}

.cs_popup button.fancybox-button.fancybox-close-small:hover svg {
    transform: rotate(360deg);
    transition: .7s all;
}

.cs_popup h2 {
    font-family: 'gegyll';
    letter-spacing: 6%;
    font-size: 2.083rem;
    line-height: 1;
    color: #2D1917;
    margin-bottom: 0.15625rem;
}

.cs_popup .l-content {
    font-family: 'gegyll';
    color: #352824;
    line-height: 1.1;
}

.cs_popup_wrap {
    margin: 1.146rem -0.46875rem 0;
}

.cs_popup_wrap input {
    border: 1px solid #35282433;
    box-shadow: unset;
    border-radius: 100px;
    background: transparent;
    font-size: 0.9375rem;
    line-height: normal;
    height: 2.604rem;
    padding: 0.729rem 1.302rem;
    color: #352824;
    transition: .7s all;
}

.cs_popup_wrap input::placeholder {
    color: #2D191766;
}

.cs_popup_wrap .col {
    padding: 0 9px 15px;
}

.cs_popup_wrap .content {
    margin-top: 0.365rem;
    color: #352824;
    font-family: 'gegyll';
    line-height: 1;
}

.cs_popup_wrap button {
    margin: 0;
    width: 100%;
    background: #352824;
    opacity: 50%;
    margin-top: 0.365rem;
    height: 2.604rem;
    min-height: unset;
    font-size: 0.78125rem;
    font-family: 'gegyll';
    color: var(--main-cl);
    line-height: 1;
    text-transform: unset;
    font-weight: unset;
    padding: 0.78125rem 1rem;
    border-radius: 100px;
    transition: .7s all;
}

.cs_popup_wrap button:hover {
    opacity: 1;
    transition: .7s all;
}

/* Nút submit form coming soon: chỉ sáng lên khi đã fill đủ 100% field */
.cs_popup_wrap button[disabled],
.cs_popup_wrap button[disabled]:hover {
    opacity: .5;
    cursor: not-allowed;
}

.cs_popup_wrap button.is-active,
.cs_popup_wrap button.is-active:hover {
    opacity: 1;
    cursor: pointer;
}


.selected-option {
    height: 2.604rem;
    font-size: 0.9375rem;
    line-height: normal;
    color: #2D1917;
    padding: 0.677rem 1.302rem;
    border: 1px solid #35282433;
    border-radius: 100px;
    font-family: 'gegyll';
    transition: .7s all;
    cursor: pointer;
    position: relative;
}

.selected-option::placeholder {
    color: #2D1917;
}

ul.custom-select {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 20rem;
    overflow: auto;
    border-radius: 10px;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .15);
}

ul.custom-select li {
    margin: 0;
    line-height: normal;
    font-size: 0.833rem;
    font-family: 'gegyll';
    padding: 0.365rem 0.885rem;
    background: var(--main-cl);
    position: relative;
    transition: .7s all;
}

.custom-select-container {
    position: relative;
    z-index: 5;
}

ul.custom-select li:not(:last-child) {
    border-bottom: 1.5px solid #3528240D;
}

ul.custom-select li:hover {
    background: #352824;
    color: var(--main-cl);
    transition: .7s all;
}

ul.custom-select li.active {
    background: #352824;
    color: var(--main-cl);
}

.cs_popup_wrap input:focus {
    box-shadow: unset;
    background: transparent;
}

.cs_popup_wrap button.is-active:hover {
    background: var(--main-cl);
    border: 1px solid #352824;
    color: #352824;
    transition: .7s all;
}

.wpcf7 form.sent .wpcf7-response-output {
    font-family: 'gegyll';
    line-height: normal;
    font-size: 0.833rem;
    width: fit-content;
    background: #46b450;
    color: white;
    margin: 1rem auto 0;
}

.coming_soon .cs_hide {
    display: none;
}

.cs_thank .group_content {
    padding-top: 14.323rem;
    gap: 2.03125rem;
}

.cs_thank .group_content .logo {
    width: auto;
    height: 8.75rem;
}

.cs_thank .group_content .content {
    width: 33.4375rem;
}

.selected-option:before {
    position: absolute;
    content: '';
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjUxMDIgNy45ODY5QzE4LjQ1ODEgNy44NjEyOCAxOC4zNyA3Ljc1MzkxIDE4LjI1NyA3LjY3ODM2QzE4LjE0MzkgNy42MDI4MiAxOC4wMTEgNy41NjI1IDE3Ljg3NSA3LjU2MjVINC4xMjVDMy45ODkwMyA3LjU2MjUgMy44NTYxIDcuNjAyODIgMy43NDMwNCA3LjY3ODM3QzMuNjI5OTggNy43NTM5MSAzLjU0MTg2IDcuODYxMjkgMy40ODk4MyA3Ljk4NjkxQzMuNDM3OCA4LjExMjU0IDMuNDI0MTggOC4yNTA3NyAzLjQ1MDcxIDguMzg0MTRDMy40NzcyNCA4LjUxNzUgMy41NDI3MiA4LjY0IDMuNjM4ODggOC43MzYxNUwxMC41MTM5IDE1LjYxMTFDMTAuNTc3NyAxNS42NzUgMTAuNjUzNSAxNS43MjU2IDEwLjczNjkgMTUuNzYwMkMxMC44MjAzIDE1Ljc5NDcgMTAuOTA5NyAxNS44MTI1IDExIDE1LjgxMjVDMTEuMDkwMyAxNS44MTI1IDExLjE3OTcgMTUuNzk0NyAxMS4yNjMxIDE1Ljc2MDJDMTEuMzQ2NSAxNS43MjU2IDExLjQyMjMgMTUuNjc1IDExLjQ4NjEgMTUuNjExMUwxOC4zNjExIDguNzM2MTVDMTguNDU3MyA4LjY0IDE4LjUyMjggOC41MTc1IDE4LjU0OTMgOC4zODQxM0MxOC41NzU4IDguMjUwNzcgMTguNTYyMiA4LjExMjUzIDE4LjUxMDIgNy45ODY5WiIgZmlsbD0iIzM1MjgyNCIvPgo8L3N2Zz4K");
    width: 1.146rem;
    height: 1.146rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: .7s all;
}

.header_mobile {
    display: none;
}

.hotline .icon {
    width: 1.771rem;
    height: 1.771rem;
    display: flex;
    flex: 0 0 auto
}

.mobile_flex,
.mobile_block {
    display: none;
}

.language_title {
    font-family: 'gegyll';
}

body {
    font-family: 'gegyll' !important;
}

html[lang="vi"] body {
    font-family: 'Helvetica' !important;
}

html[lang="vi"] .cs_popup h2 {
    font-family: 'Helvetica medium';
    letter-spacing: unset;
}

html[lang="vi"] .cs_popup .l-content {
    font-family: 'Helvetica';
    line-height: normal;
}

html[lang="vi"] .coming_soon .group_content .content {
    font-family: 'Helvetica' !important;
}

html[lang="vi"] .btn {
    font-family: 'Helvetica medium' !important;
}

html[lang="vi"] .hotline_content {
    font-family: 'Helvetica' !important;
}

html[lang="vi"] .language_title {
    font-family: 'Helvetica';
}

.cs_popup_wrap .content {
    font-family: 'Helvetica' !important;
}

html[lang="vi"] .selected-option {
    font-family: 'Helvetica';
}

html[lang="vi"] .cs_popup_wrap button {
    font-family: 'Helvetica medium';
}

html[lang="vi"] ul.custom-select li {
    font-family: 'Helvetica';
}

.coming_soon_pattern_line svg {
    width: auto;
}



@media (max-width: 1600px) and (min-width: 1300px) {
    body, html {
        font-size: 1vw !important;
    }
}

@media (min-width: 1280px) {
    body, html {
        font-size: 1vw;
    }
}

@media only screen and (max-width: 1199px) {
    :root {
        --container-w: 950px
    }

    .load_home_page svg {
        width: 320px;
    }
}

@media only screen and (max-width: 991px) {
    html {
        font-size: 1.6vw !important;
    }

    :root {
        --container-w: 720px
    }

    .load_home_page svg {
        width: 320px;
    }

    .search-tabs .search-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .header_desktop {
        display: none;
    }

    .header_mobile {
        display: flex;
    }

    .footer_desktop {
        display: none;
    }

    .header_mobile {
        position: fixed;
        top: 27px;
        width: 100%;
        padding: 0 15px;
        left: 0;
    }

    .header_wrap {
        width: 100%;
        justify-content: space-between;
    }

    .quick_cta {
        display: none;
    }

    .header_mobile .quick_cta {
        display: flex;
        position: relative;
        inset: unset;
        transform: unset;
        flex-direction: row;
    }

    .quick_cta .item {
        width: 3rem;
        height: 3rem;
    }

    .quick_cta .item img {
        max-width: 2rem;
        max-height: 1.5rem;
    }

    .hotline_content {
        font-size: 1.5rem;
    }

    .content, .content_text {
        font-size: 1.2rem;
    }

    .language_svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .coming_soon_pattern_line svg {
        width: auto;
    }

    .row {
        height: 100%;
    }

    .coming_soon_container {
        height: 100%;
        padding-top: 5.208rem;
        gap: 4rem;
    }

    .coming_soon .btn {
        font-size: 1rem;
    }

    .coming_soon .group_content .content {
        width: 80%;
    }

    h1 {
        font-size: 3.5rem;
    }

    .coming_soon_container .logo {
        height: 8rem;
    }

    .l-content {
        font-size: 1.3rem;
    }

    .cs_popup h2 {
        font-size: 2.5rem;
    }

    .cs_popup_wrap input {
        font-size: 1.1rem;
        height: 3rem;
    }

    .selected-option {
        font-size: 1.1rem;
        height: 3rem;
    }

    .cs_popup_wrap button {
        font-size: 1.1rem;
        height: auto;
    }

    .cs_popup {
        width: 90%;
    }

    ul.custom-select li {
        font-size: 1.05rem;
        padding: .5rem .8rem;
    }

    .coming_soon_container .logo_2 {
        display: flex;
        margin-top: 5rem;
    }

    .coming_soon_container {
        padding-top: 5rem;
    }
}

@media only screen and (max-width: 767px) {
    html {
        font-size: 3.5vw !important;
    }

    .grid-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .load_home_page svg {
        width: 240px;
    }

    #search-lightbox {
        margin-left: -20px;
        margin-right: -20px;
        max-width: calc(100% + 40px);
    }

    #search-lightbox .search-lightbox-title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    #search-lightbox .search-keywords {
        margin-top: 20px;
    }

    #search-lightbox .search-keywords > a {
        font-size: 14px;
    }

    .search-tabs .search-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 1.5rem 1rem
    }

    .search-page {
        padding: 3rem 0;
    }

    .search-page h1 {
        margin-bottom: 2rem;
    }

    .search-tabs .search-tabs-title .search-tab-title {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .quick_cta .item {
        width: 2.5rem;
        height: 2.5rem;
    }

    .quick_cta .item img {
        max-width: 1.5rem;
        height: 1.25rem;
    }

    .hotline_content {
        font-size: 1.1rem;
    }

    .hotline .icon {
        width: 2rem;
        height: 2rem;
    }

    .header_mobile .quick_cta {
        gap: .5rem;
    }

    .quick_cta .item {
        width: 2.25rem;
        height: 2.25rem;
    }

    .quick_cta .item img {
        max-width: 1.25rem;
        height: 1rem;
    }

    .hotline_content {
        font-size: 1.1rem;
    }

    .hotline .icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .header_mobile .quick_cta {
        gap: .5rem;
    }

    .language_title {
        font-size: 1rem;
    }

    .language_svg {
        width: 1rem;
        height: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .coming_soon .group_content .content {
        width: 100%;
    }

    .content, .content_text {
        font-size: 1.1rem;
    }

    .coming_soon .btn {
        font-size: 1.05rem;
    }

    .coming_soon_container .logo {
        height: 6.5rem;
    }

    .mobile_flex {
        display: flex;
    }

    .mobile_display {
        display: block;
    }

    .desktop_display {
        display: none;
    }

    .cs_popup {
        width: 95%;
        padding: 3rem 2rem 2.5rem;
    }

    .cs_popup button.fancybox-button.fancybox-close-small {
        top: -3rem;
        right: 0;
        color: white;
    }

    .cs_popup h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .cs_popup .l-content {
        margin-top: 1rem;
    }

    .l-content {
        font-size: 1.2rem;
    }

    html body :is(input,textarea) {
        font-size: 18px !important;
    }

    html body :is(input,textarea)::placeholder {
        font-size: 1.1rem;
    }

    .selected-option {
        font-size: 1.2rem;
    }


    .cs_popup_wrap .col:nth-child(5) {
        z-index: 10;
        position: relative;
    }

    .cs_thank .group_content .logo {
        height: 8rem;
    }

    .cs_thank .group_content {
        padding-top: 0;
        height: 100%;
    }

    .language_main {
        border-radius: 5px;
    }

    .coming_soon_pattern_animation.mobile_display .cs_blob_1 {
        --orbit-r: 58px;
    }

    .coming_soon_pattern_animation.mobile_display .cs_blob_2 {
        --orbit-r: 67px;
    }

    .coming_soon_pattern_animation.mobile_display .cs_blob_3 {
        --orbit-r: 52px;
    }

    .coming_soon_pattern_animation svg {
        width: 100%;
        height: 100%;
    }

    .coming_soon_pattern_animation {
        width: 100%;
        left: 0;
    }

    .coming_soon_container .logo_2 {
        margin-top: 2rem;
    }

    .coming_soon_container {
        gap: 2.5rem;
    }

    html[lang="vi"] .coming_soon .group_content .content {
        font-size: 1rem;
    }
}
