/* Fonts */
:root {
    --font-1: "Inter", sans-serif;
}

/* Colors */
:root {
    --color-main: #0C4674;
    --color-hover: #fff000;
    --color-text: #111;
    --color-social: #0C4674;
    --menu-border: rgb(255 255 255 / 20%);
    --menu-color: #fff;
    --color-messenger: linear-gradient(225deg, rgba(230, 74, 159, 1) 20%, rgba(24, 93, 215, 1) 88%);
}

.min-width {
    min-width: 1366px;
}

body {
    font-family: var(--font-1);
    font-size: 14px;
    color: var(--color-text);
    top: 0 !important;
    min-width: 320px;
    position: relative;
    margin: auto
}

[x-cloak] {
    display: none !important
}

.cf-turnstile iframe {
    max-width: 300px;
    width: 100% !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5
}

img {
    max-width: 100%;
    height: auto !important;
    vertical-align: top;
    display: inline-block
}

* {
    box-sizing: border-box
}

a {
    text-decoration: none !important
}

.h-card,
.hidden-seo {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.none {
    display: none;
}

.wrap-main {
    margin: 30px 0
}

.wrap-content {
    max-width: 1200px;
    margin: 0 auto
}

.container-custom {
    padding: 0px 10px;
    margin: 0px auto;
}

.spacer {
    margin: clamp(30px, calc(60 / 1200 * 100vw), 60px) 0
}

.w-clear:after {
    display: block;
    content: "";
    clear: both;
}

/* Scale IMG */
.scale-img {
    overflow: hidden;
    display: block;
}

.scale-img img {
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.scale-img:hover img {
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    -moz-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

/* Text hidden  */
.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    word-break: break-word;
}

/* Transition All */
.transition {
    transition: .3s all
}

/* General */
.title-main {
    text-align: center;
    margin-bottom: 30px
}

.title-main h1,
.title-main h2,
.title-main span {
    display: block;
    margin-bottom: 0;
    font-size: clamp(28px, calc(35 / 1200 * 100vw), 35px);
    font-weight: 700;
    color: var(--color-main);
    text-transform: uppercase;
    line-height: 1.2;
}

.title-detail {
    margin-bottom: 20px
}

.title-detail h1 {
    font-size: clamp(22px, calc(30 / 1200 * 100vw), 30px);
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 0
}

/* Share */
.share {
    padding: 17px 10px 10px 10px;
    line-height: normal;
    background: rgba(128, 128, 128, .15);
    margin-top: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* custom scroll bar */
.custom-scroll-bar {
    overflow-y: auto;
    overflow-x: hidden;
}

.custom-scroll-bar::-webkit-scrollbar {
    background-color: #0003;
    width: 5px;
    border-radius: 5px;
}

.custom-scroll-bar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
}

/* ::-webkit-scrollbar { width: 5px; height: 5px }
::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%) }
::-webkit-scrollbar-thumb { background: var(--color-main) } */

/* Btn frame */
.btn-frame {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 111;
    cursor: pointer;
}

.btn-frame i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-main);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-frame i img {
    vertical-align: middle;
    width: 70%;
}

.btn-frame .animated.infinite {
    animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
    width: 60px;
    height: 60px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: 0.1;
    border-color: var(--color-main);
    opacity: 0.5;
}

.btn-frame .zoomIn {
    animation-name: zoomIn;
}

.btn-frame .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    background-color: var(--color-main);
    opacity: 0.2;
}

.btn-frame .pulse {
    animation-name: pulse;
}

/* QR zalo */
#qrzalo .modal-dialog {
    max-width: 300px;
}

#qrzalo img {
    max-width: 250px;
}

/* Booking  */
.btn-booking-fix {
    position: fixed;
    top: calc(30% + 85px);
    right: 20px;
}

.btn-booking-fix.btn-frame i {
    color: var(--menu-color);
    font-size: 20px;
    background: var(--color-main);
}

/* modal  */
.modal {
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.7);
}

.modal-header {
    border-bottom: 1px solid #d1d5db;
    background: rgba(249, 250, 251, .6)
}

.modal-title {
    font-weight: 600;
    letter-spacing: .05em;
    color: #111827
}

.modal-footer {
    border-top: 1px solid #d1d5db;
    background: rgba(249, 250, 251, .6)
}

.modal-btn--close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 14px;
    color: #fff;
    background: red;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
    overflow: hidden;
    border-radius: 50%
}

.invalid-feedback {
    font-size: 13px
}

.form-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px
}

.form-btn--submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main);
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: clamp(14px, calc(16/1200*100vw), 16px)
}

/*Booking*/
.form-booking-modal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 0px;
}

.form-booking-modal .form-group-modal {
    width: 48.5%;
}

.form-booking-modal .form-group-modal label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
}

.form-booking-modal input {
    font-size: 14px;
}

.form-booking-modal textarea {
    font-size: 14px;
    height: 80px;
}

.booking-modal-button {
    width: 100%;
    text-align: center;
}

.booking-modal-button button {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    width: 100%;
}

/* Scroll top  */
.scrollToTop {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 98;
    top: auto;
    width: 40px;
    height: 40px;
    display: flex;
    background: 0 0;
    text-decoration: none;
    transition: all .3s ease-out 0s;
    transform: translateY(-20px);
    background-color: color-mix(in srgb, var(--color-main) 10%, #fff);
    border-radius: 7px;
    cursor: pointer
}

@media (max-width:870px) {
    .scrollToTop {
        bottom: 140px
    }
}

.scrollToTop svg {
    width: 100%;
    height: 100%;
    transform: rotate(270deg)
}

.scrollToTop svg path {
    stroke: var(--color-main)
}

.scrollToTop:hover {
    background: var(--color-main)
}

.scrollToTop:hover svg path {
    stroke: color-mix(in srgb, var(--color-main) 10%, #fff)
}

/* Paging */
.pagination {
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pagination li a,
.pagination li span {
    cursor: pointer;
    border-radius: 5px !important;
    border: 1px solid #cacaca;
    background: #ffff;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d4d4d;
    font-size: 14px;
    padding: 5px
}

.pagination li a:hover,
.pagination li span:hover {
    color: var(--color-main);
    border-color: var(--color-main)
}

.pagination .page-item.active .page-link {
    background: var(--color-main);
    border-color: var(--color-main);
    color: #fff
}

/* Paging Ajax */
.page-item-ajax {
    text-align: center;
}

.page-item-ajax a,
.page-item-ajax span {
    padding: 0;
    border-radius: 5px !important;
    display: inline-block;
    vertical-align: top;
    margin: 0px 9px 5px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    color: var(--color-main) !important;
    border: 1px solid var(--color-main);
    font-size: 16px;
    cursor: pointer;
    text-decoration: none !important;
    background-color: #ffffff;
}

.page-item-ajax:last-child a,
.page-item-ajax:last-child span {
    margin-right: 0;
}

nav .page-item-ajax.active a.page-link,
.page-item-ajax a:hover,
nav .page-item-ajax.active span.page-link,
.page-item-ajax span:hover {
    color: #ffffff !important;
    border-color: var(--color-main);
    background-color: var(--color-main);
}

nav .page-item.disabled a.page-link,
nav .page-item.disabled span.page-link {
    border-color: var(--color-main);
}

/* Toc */
.box-toc {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06)
}

.box-toc__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #f8fafc;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    user-select: none
}

.box-toc__header:hover {
    background: #f1f5f9
}

.box-toc__title {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px
}

.box-toc__title i {
    font-size: 20px
}

.box-toc__toggle-icon {
    color: #64748b
}

.box-toc__body {
    max-height: 0;
    overflow: hidden
}

.box-toc--open .box-toc__body {
    max-height: 1000px;
    border-top: 1px solid #e2e8f0
}

.box-toc--open .box-toc__toggle-icon {
    transform: rotate(180deg)
}

.box-toc__list {
    list-style: none;
    padding: 12px 0;
    margin: 0
}

.box-toc__item {
    margin: 0;
    position: relative
}

.box-toc__link {
    display: block;
    padding: 8px 20px;
    color: #64748b;
    text-decoration: none;
    font-size: .95rem;
    line-height: 1.5;
    border-left: 3px solid transparent
}

.box-toc__link:hover {
    color: var(--color-main) !important;
    background: #eff6ff !important
}

.box-toc__link--active {
    color: var(--color-main);
    font-weight: 600;
    background: #eff6ff;
    border-left-color: var(--color-main)
}

.box-toc__item--h2 .box-toc__link {
    padding-left: 10px;
    font-weight: 600;
    color: #334155;
    font-size: 15px
}

.box-toc__item--h3 .box-toc__link {
    padding-left: 20px;
    font-size: 14px
}

.box-toc__item--h4 .box-toc__link {
    padding-left: 30px;
    font-size: 13px;
    font-style: italic
}

/* Main widget */
.main-widget {
    position: fixed;
    right: 14px;
    bottom: 20px;
    z-index: 111;
    top: auto !important
}

@media (max-width:767px) {
    .main-widget {
        bottom: 85px
    }
}

.main-widge .img svg {
    width: 100%;
    height: 100%
}

.main-widget .img {
    width: 25px;
    height: 25px
}

.main-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-bottom: 5px
}

.main-icon p {
    font-size: 10px;
    color: #fff;
    margin: 0
}

.out-circle {
    overflow: hidden;
    padding: 17px;
    border-radius: 100%;
    background: var(--color-main);
    width: 60px;
    height: 60px
}

.main-icon {
    line-height: 0;
    color: #fff;
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.main-icon i {
    width: 26px;
    height: 26px;
    transform: translateX(2px)
}

.ser-icon {
    display: inline-flex;
    position: absolute;
    font-size: 30px;
    top: 0;
    left: 0;
    padding: 10%;
    background: #fff;
    max-width: 100%;
    overflow: hidden;
    border-radius: 100%;
    color: var(--color-main);
    width: 70%;
    height: 70%;
    margin: 15%;
    transition: .2s all
}

.unsee {
    opacity: 0;
    transform: scale(0)
}

.process {
    display: inline-flex;
    transform: translateX(0);
    transition: .15s linear transform;
    line-height: 0
}

.ser-icon .item {
    margin-right: 40px;
    width: 30px;
    height: 30px;
    color: var(--color-main);
    display: flex;
    justify-content: center;
    align-items: center
}

.ser-icon .item svg {
    width: 25px;
    height: 25px;
    color: var(--color-main)
}

.ser-icon i:nth-child(2n) {
    color: #000
}

.def-content {
    position: absolute;
    bottom: 62px;
    right: 0;
    background: #fff;
    border-radius: 8px;
    transition: .2s all;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    width: 300px;
    z-index: 1
}

.def-content:before {
    position: absolute;
    bottom: -8px;
    right: 22px;
    left: auto;
    display: inline-block !important;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    border-left: 8px solid transparent;
    content: ''
}

.def-content .def-header {
    background: var(--color-main);
    padding: 10px;
    border-radius: 8px 8px 0 0;
    color: #fff;
    position: relative;
    font-size: 16px;
    font-weight: 700
}

.def-content .def-header .close-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
    left: initial;
    padding: 0;
    margin: 0;
    border: 0 none;
    background: 0 0;
    line-height: 1;
    width: 26px;
    height: 26px;
    cursor: pointer;
    color: #fff;
    background: var(--color-main);
    border-radius: 50%;
    text-align: center
}

.def-content .item>.item-single-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 10px;
    transition: .3s linear all;
    cursor: pointer;
}

.def-content .item>.item-single-widget .img {
    flex-grow: 0;
    flex: none;
    height: 34px;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 50%;
    color: #fff !important
}

.def-content .item>.item-single-widget .img svg {
    height: 20px;
    width: 20px
}

.def-content .item>.item-single-widget .detail {
    flex-grow: 1;
    line-height: normal
}

.def-content .item>.item-single-widget .detail .arcu-item-title {
    font-weight: 700;
    font-size: 15px;
    display: block;
    line-height: normal;
    color: #000
}

.def-content .item>.item-single-widget .detail .arcu-item-subtitle {
    font-size: 14px;
    color: #787878
}

.def-content .item.phone>.item-single-widget .img {
    background: #4eb625
}

.def-content .item.mess>.item-single-widget .img {
    background: #31adff
}

.def-content .item.zalo>.item-single-widget .img {
    background: #0165f8
}

.def-content .item.map>.item-single-widget .img {
    background: #d94234
}

.def-content .item:last-child {
    margin-bottom: 0
}

.main-widget .close-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-size: 25px;
    top: 0;
    padding: 10px;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 1;
    text-align: center;
    color: #fff;
    background: var(--color-main);
    border-radius: 100%;
    transition: .2s all;
    transform: rotate(0);
    cursor: pointer
}

.main-widget .close-icon svg {
    width: 25px;
    height: 25px
}

.close-icon.unsee {
    transform: rotate(180deg)
}

.pregan {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--color-main);
    z-index: -2;
    border-radius: 100%;
    opacity: .6;
    animation: zoomzoom 3s linear .2s infinite
}

.pregan:nth-child(1) {
    animation-delay: .5s
}

.main-widget .item svg {
    fill: var(--color-main)
}

.def-content .item svg {
    fill: #fff
}

.def-content .item:hover {
    background: #f1f1f1
}

@keyframes zoomzoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1.2)
    }
}

/* dịch */
.ggdich-box {
    position: relative;
    display: inline-block
}

.ggdich-box__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    color: inherit
}

.ggdich-box__icon {
    margin-right: 6px
}

.ggdich-box__dropdown {
    position: absolute;
    z-index: 15;
    top: 100%;
    left: 0;
    margin-top: 10px;
    min-width: 150px;
    background-color: #fff;
    padding: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05)
}

.ggdich-box__item {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #000;
    margin-bottom: 10px;
    transition: color .2s
}

.ggdich-box__item:last-child {
    margin-bottom: 0
}

.ggdich-box__item:hover {
    color: #c0392b
}

.ggdich-box__flag {
    margin-right: 7px;
    display: inline-block;
    max-width: 22px
}

.ggdich-box__flag img {
    width: 100%;
    display: block
}

/* Lang header */
.header-lang {
    position: relative;
    z-index: 101
}

.header-lang-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: clamp(12px, calc(120 / 1200 * 100vw), 120px);
    background: #dae1e7;
    backdrop-filter: blur(8px);
    padding: 10px
}

.header-lang-flag {
    max-width: 35px;
    border-radius: 3px;
    overflow: hidden
}

.header-lang-country {
    font-weight: 700;
    font-size: clamp(13px, calc(14 / 1200 * 100vw), 14px)
}

.header-lang-box {
    position: absolute;
    right: 0;
    margin-top: 10px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, .35) 0 5px 15px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 150px
}

.header-lang-picker {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer
}

.header-lang-icon {
    display: inline-block;
    width: 25px
}

.header-lang-name {
    font-size: clamp(13px, calc(14 / 1200 * 100vw), 14px);
    font-weight: 500;
    flex: 1 1 0%
}

.header-lang-picker:hover .header-lang-name {
    color: orange
}

#google_translate_element {
    clear: both;
    width: auto !important;
    text-align: right;
    display: none
}

.skiptranslate {
    display: none !important
}

/*Header*/
.header {
    background: #fff;
    position: relative;
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top {
    background: var(--color-main);
    color: #fff;
    padding: 5px 0
}

.info-header {
    color: #fff;
    line-height: 20px;
    font-size: 14px;
}

.info-header svg {
    width: 20px;
}

.header-info-icon {
    width: 20px
}

a.info-header {
    color: #fff;
    opacity: 0.9;
}

/* Menu */
.menu {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
    z-index: 100;
    background: var(--color-main);
}

.menu.isPage {
    position: relative;
}

.header.menu-fix {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    padding: 3px 0;
    -webkit-box-shadow: 0px 5px 5px 0px rgb(148 145 148);
    -moz-box-shadow: 0px 5px 5px 0px rgba(148, 145, 148, 1);
    box-shadow: 0px 5px 5px 0px rgb(148 145 148);
}
.header.menu-fix .boxLogoHeader .logo-header{
    top: -45px;
  }
.header.menu-fix .boxLogoHeader .logo-img{
	width: 90px;
}
.menu ul {
    padding: 0px;
    margin-bottom: 0;
    list-style: none;
}

.menu ul li {
    position: relative;
}

.menu ul li.line {
    width: 1px;
    height: 21px;
    background-color: #d3d0cb;
}

.menu ul li a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    padding: 15px 25px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.menu ul li a.active,
.menu ul li:hover>a {
    color: var(--color-hover);
}

.menu ul li ul {
    position: absolute;
    min-width: 250px;
    left: 0;
    background: var(--color-main);
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

.menu ul li:hover>ul {
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
    transition: all .5s;
}

.menu ul li ul li {
    text-align: left;
    border-bottom: 1px solid rgb(255 255 255 / 32%);
}

.menu ul li ul li:last-child {
    border-bottom: 0px;
}

.menu ul li ul li a {
    font-size: 14px;
    padding: 10px;
    display: block;
    color: #fff;
    text-decoration: none !important;
    line-height: 20px;
    text-align: left;
    font-weight: 500;
    text-transform: capitalize;
}

.menu ul li ul li ul {
    top: 0px;
    left: 100%;
}

.menu ul li ul li a:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    -ms-transition: all .3s linear;
    visibility: hidden;
    opacity: 0;
}

.menu ul li ul li:hover>a:before,
.menu ul li ul li>a.active:before {
    left: 0;
    visibility: visible;
    opacity: 1;
    width: 10px;
}

.menu ul li ul li:hover>a {
    padding-left: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(19.47079849243164px);
}

/* Search */
.search {
    background: #FFFFFF;
    border-radius: 50px;
    flex: 1 1 auto;
    max-width: 570px;
    padding: 4px;
    border: 1px solid var(--color-main);
}

.search input {
    width: calc(100% - 83px);
    height: 42px;
    outline: none;
    padding: 0px 14px;
    border: 0;
    background: #0000;
    font-size: 13px;
    color: #333;
    border-radius: 50px;
    outline: none;
}

.search p {
    width: 83px;
    height: 42px;
    cursor: pointer;
    line-height: 42px;
    text-align: center;
    font-size: 16px;
    background: var(--color-main);
    border-radius: 50px;
    color: #fff;
}

.search input::placeholder {
    color: #766C5D;
}

.search input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none;
}

/* Search Res */
.search-res {
    position: relative;
}

.search-res .icon-search {
    width: 35px;
    height: 35px;
    cursor: pointer;
    text-align: center;
    line-height: 35px;
    color: var(--color-main);
    font-size: 15px;
    margin: 0px;
    border: 1px solid var(--color-main);
    border-radius: 50%;
    margin-left: 15px;
}

.search-res .icon-search.active {
    color: var(--color-main);
    background: #ffffff;
    border-radius: 100%;
}

.search-res .search-grid {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 0px;
    height: 40px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-main);
    z-index: 2;
    opacity: 0;
    border-radius: 25px;
    line-height: normal;
}

.search-res .search-grid p {
    float: left;
    width: 40px;
    height: 38px;
    cursor: pointer;
    outline: none;
    border: none;
    margin: 0px;
    font-size: 17px;
    display: block;
    color: var(--color-main);
    line-height: 40px;
    text-align: center;
}

.search-res .search-grid input {
    width: calc(100% - 40px);
    float: right;
    line-height: 38px;
    outline: none;
    border: none;
    color: var(--color-main);
}

.search-res .search-grid input::-webkit-input-placeholder {
    color: #313131;
}

.search-res .search-grid input:-moz-placeholder {
    color: #313131;
}

.search-res .search-grid input::-moz-placeholder {
    color: #313131;
}

.search-res .search-grid input:-ms-input-placeholder {
    color: #313131;
}

.search-res input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none;
}

/* Search autocomplate */
.search-clear {
    position: absolute;
    right: 60px;
    top: calc(50% - 13px / 2);
    color: #ff0101;
    font-size: 13px;
    cursor: pointer;
    display: none;
}

.search-clear.active {
    display: block;
}

.search-loading {
    text-align: center;
}

.search-loading span {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid blue;
    border-right: 5px solid green;
    border-bottom: 5px solid red;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    display: inline-block;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.search-autocomplate {
    position: absolute;
    left: 0px;
    top: calc(100% + 5px);
    right: 0px;
    background: #fff;
    border: 1px solid #e9e9e9;
    /* border-top: none; */
    display: none;
    z-index: 99;
    padding: 10px;
    border-radius: 10px;
}

.search-product-show {
    max-height: 400px;
}

.search-count-show {
    border-top: 1px solid #cdd0d5;
    padding: 15px 5px 3px;
    font-size: 13px;
}

.search-autocomplate.active {
    display: block;
}

.search-item {
    display: block;
    padding: 7px 0px;
    border-bottom: 1px solid #ebebeb;
}

.search-item:last-child {
    border-bottom: 0px;
}

.search-item:hover {
    background: #f0f2f5;
}

.search-img {
    width: 70px;
    display: block;
}

.search-info {
    width: calc(100% - 82px);
    display: block;
}

.search-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.search-name.text-split {
    -webkit-line-clamp: 2;
}

.search-price {
    display: block;
    font-size: 14px;
    color: #333;
}

.search-price .search-price-new {
    color: #ff0101;
    font-weight: 700;
}

.search-price .search-price-old {
    color: #8f8f8f;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 12px;
}

.search-address {
    font-size: 13px;
}

/* Search popup  */
.search-popup {
    position: relative
}

.search-popup .icon-search {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0
}

.search-popup .icon-search.active {
    background: #fff;
    color: var(--color-main);
    border: solid 1px var(--color-main)
}

.search-popup .search-grid {
    position: absolute;
    top: 50px;
    right: 0;
    width: 0;
    height: 40px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-main);
    z-index: 2;
    opacity: 0;
    border-radius: 25px;
    display: flex;
    align-items: center
}

.search-popup .search-grid p {
    width: 35px;
    height: 35px;
    cursor: pointer;
    outline: 0;
    border: none;
    margin: 0;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-main)
}

.search-popup .search-grid input {
    width: calc(100% - 35px);
    float: right;
    line-height: 35px;
    outline: 0;
    border: none;
    color: #000;
    font-size: 14px
}

.search-popup .search-grid input::placeholder {
    color: #ccc
}

/* Swiper  */
.swiper .swiper-wrapper {
    width: inherit;
    height: inherit;
}

.swiper.swiper-initialized .swiper-wrapper {
    margin: 0;
    width: 100%;
    height: 100%;
}

.swiper.swiper-initialized .swiper-slide {
    padding: 0;
    margin: 0px;

}

/* Breadcrumbs  */
.breadCrumbs {
    background: color-mix(in srgb, var(--color-main) 10%, #fff);
    margin-bottom: 30px
}

.breadcrumb {
    gap: 10px;
    padding: 10px 0 !important
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 15px
}

.breadcrumb li a {
    flex: 1 1 0%;
    color: #666;
    transition: .2s;
}

.breadcrumb li a:hover {
    color: var(--color-main)
}

.breadcrumb li.active a {
    font-weight: 500;
    color: var(--color-main)
}

.breadcrumb li svg {
    width: 7px;
    color: #666;
    margin-top: 2px
}

/* Slideshow */
.sidebox-group {
    position: sticky;
    top: 60px;
    border: 1px solid #dee2e6;
    border-radius: clamp(5px, calc(10/1200*100vw), 10px);
    padding: clamp(10px, calc(15/1200*100vw), 15px)
}

.sidebox-group__header {
    display: flex;
    font-size: clamp(15px, calc(16/1200*100vw), 16px);
    font-weight: 700;
    text-transform: uppercase;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    padding: 0 0 8px;
    border-bottom: .5px dashed #ebe0e0;
    margin-bottom: 10px
}

.sidebox-group__icon {
    font-size: 22px
}

.sidebox-group__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.sidebox-group__item {
    position: relative
}

.sidebox-group__link {
    color: #252a2b;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    display: block;
    text-transform: capitalize;
    transition: .3s;
    padding: 5px 0
}

.sidebox-group__item--has-child>.sidebox-group__link {
    padding-right: 30px
}

.sidebox-group__link--active,
.sidebox-group__link:hover {
    color: var(--color-main) !important
}

.sidebox-group__toggle {
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid transparent;
    display: none
}

.sidebox-group__item--has-child .sidebox-group__toggle {
    display: block
}

.sidebox-group__toggle:hover {
    border: 1px solid #e7e7e7
}

.sidebox-group__toggle::after,
.sidebox-group__toggle::before {
    background: rgba(9, 9, 9, .6);
    content: '';
    display: block;
    position: absolute;
    margin-right: 7px;
    top: 50%;
    right: 0;
    transition: all .25s linear
}

.sidebox-group__toggle::before {
    width: 9px;
    height: 1px;
    transform: translateY(-50%)
}

.sidebox-group__toggle::after {
    width: 1px;
    height: 9px;
    right: 4px;
    transform: translateY(-50%) scale(1, 1)
}

.sidebox-group__item.opened>.sidebox-group__link .sidebox-group__toggle::after {
    transform: translateY(-50%) scale(1, 0)
}

.sidebox-group__sublist {
    margin: 0;
    padding-left: 10px;
    list-style: none;
    display: none
}

/* Giới thiệu */
.wrap-about {
    padding: 55px 0px;
    background: #e7f5ee;
    margin-bottom: 50px;
}

.left-about {
    width: 46.4%;
}

.right-about {
    width: 47.6%;
}

.video-about {
    width: 100%;
    margin-top: 60px;
}

.title-about {
    position: relative;
    margin-bottom: 20px;
}

.title-about p {
    color: var(--color-main);
    font-size: 22px;
    margin-bottom: 0px;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.2;
}

.title-about span {
    color: #e5020d;
    font-size: 35px;
    margin-bottom: 0px;
    font-weight: 800;
    display: block;
    text-transform: uppercase;
    line-height: 1.3;
}

.desc-about {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 30px;
}

.desc-about.text-split {
    -webkit-line-clamp: 6;
}

.view-about {
    display: inline-block;
    padding: 14px 24px;
    color: #fff;
    background: var(--color-main);
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
}

.view-about:hover {
    color: #fff;
    background: #e5020d;
}

/* Tiêu chí */
.wrap-criteria {
    padding: 70px 0px;
    background: #fff;
}

.row-criteria {
    margin: 0px -13.5px;
}

.col-criteria {
    padding: 0px 13.5px;
}

.box-criteria {
    text-align: center;
}

.img-criteria img {
    transition: 0.7s;
}

.box-criteria:hover .img-criteria img {
    transform: rotateY(180deg);
}

.info-criteria {
    padding-top: 15px;
}

.info-criteria h3 {
    color: #1c1c1c;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
    font-size: 18px;
}

.info-criteria p {
    color: #515151;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0px;
}

/* Sản phẩm */
.wrap-product {
    padding: 60px 0px;
}

.tab-product {
    text-align: center;
    margin-bottom: 15px;
}

.item-tab-product {
    cursor: pointer;
    color: #333;
    border-radius: 5px;
    border: 1px solid var(--color-main);
    padding: 5px 15px;
    display: inline-block;
    margin: 0px 5px 5px;
}

.item-tab-product:hover,
.item-tab-product.active {
    background: var(--color-main);
    color: #fff;
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.product-item__pic {
    background: #eee;
    overflow: hidden;
}

.product-item__info {
    text-align: center;
    margin-top: 10px
}

.product-item__name {
    margin-bottom: 5px;
}

.product-item__name a {
    font-size: 16px;
    color: #333;
    line-height: 25px;
    max-height: 50px;
}

.product-item__name a:hover {
    color: var(--color-main)
}

.product-item__name a.text-split {
    -webkit-line-clamp: 2;
}

.product-item__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.product-item__price--new {
    font-size: clamp(14px, calc(15/1200*100vw), 15px);
    font-weight: 700;
    color: var(--color-main)
}

.product-item__price--old {
    margin: 0 8px;
    font-size: clamp(12px, calc(13/1200*100vw), 13px);
    color: #6c757d;
    text-decoration: line-through
}

.product-item__price--per {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--color-main);
    font-size: 11px;
    border-radius: 20px;
    padding: 3px 10px;
    gap: 5px
}

.product-item__cart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.product-item__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
    padding: 7px 15px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid var(--color-main);
}

.product-item__btn--buynow {
    background-color: var(--color-main);
    color: #fff;
}

.product-item__btn:hover {
    background-color: var(--color-main);
    color: #fff;
}

.category-nav {
    margin-bottom: 30px
}

.category-nav__item {
    font-size: clamp(14px, calc(16 / 1200 * 100vw), 16px);
    text-transform: uppercase;
    color: inherit;
    display: inline-block;
    vertical-align: top;
    padding-block: 7px;
    padding-inline: clamp(10px, calc(20 / 1200 * 100vw), 20px);
    transition: .2s;
    border: 1px solid #1a1918;
    background-color: #fff
}

.category-nav__item.active {
    background: #1a1918;
    color: #fff
}

/* Product detail  */
.row-product {
    margin: 0px -10px;
}

.row-product .col {
    padding: 0px 10px;
    margin-bottom: 20px;
}

.prodetail {
    display: block;
    width: 100%
}

.prodetail__header {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 47% 1fr;
    gap: 30px
}

.prodetail__gallery {
    position: relative
}

.prodetail__info {
    position: relative
}

.row-product-thumbs {
    margin: 0px -5px;
}

.col-product-thumbs {
    padding: 0px 5px;
}

.prodetail__thumb {
    margin-bottom: 10px;
    border: solid 1px #eee;
    background: #fff;
    border-radius: 10px;
    overflow: hidden
}

.prodetail__nav .splide__slide,
.prodetail__nav .swiper-slide {
    opacity: .6 !important;
    transition: opacity .3s;
    border: 1px solid transparent !important;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.prodetail__nav .splide__slide.is-active,
.prodetail__nav .swiper-slide.is-active {
    opacity: 1 !important;
    border: solid 1px var(--color-main) !important;
    overflow: hidden;
    cursor: pointer;
}

.prodetail__title {
    font-size: clamp(20px, calc(25/1200*100vw), 25px);
    font-weight: 700;
    margin-bottom: 10px
}

.prodetail__option {
    margin: 15px 0;
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.prodetail__option li span {
    color: var(--color-main)
}

.prodetail__option .item-detail-comment-star {
    position: relative;
    font-size: 13px;
    margin-right: 19px;
}

.prodetail__option .item-detail-comment-star::after {
    position: absolute;
    right: -19px;
    top: 3px;
    width: 1px;
    height: 14px;
    background: #8e8e8e;
    content: "";
}

.prodetail__option .item-detail-comment-star span {
    position: absolute;
    left: 0px;
    top: 0px;
    color: #ffcd00;
    white-space: nowrap;
    overflow: hidden;
}

.prodetail__social {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px
}

.prodetail__social-title {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap
}

.prodetail__price {
    margin: 15px 0;
    font-size: clamp(14px, calc(15/1200*100vw), 15px)
}

.prodetail__price-new {
    font-size: clamp(18px, calc(24/1200*100vw), 24px);
    font-weight: 700;
    color: #d0021b
}

.prodetail__price-old {
    text-decoration: line-through;
    color: #888;
    margin: 0 10px
}

.prodetail__price-discount {
    background: #d0021b;
    color: #fff;
    padding: 2px 3px;
    border-radius: 5px;
    font-size: 11px;
    position: relative
}

.prodetail__price-discount::before {
    content: "";
    border-right: 6px solid #d0021b;
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translate(0, -50%)
}

.prodetail__qty-group {
    margin: 20px 0;
    display: flex;
    align-items: center
}

.prodetail__qty-group label {
    font-weight: 600;
    margin-right: 15px
}

.prodetail__qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #dadada;
    border-radius: 4px;
    overflow: hidden
}

.prodetail__qty-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #f3f3f3;
    transition: .2s
}

.prodetail__qty-btn:hover {
    background: #eee
}

.prodetail__qty-btn svg {
    width: 14px;
    height: 14px
}

.prodetail__qty-input {
    width: 60px;
    height: 35px;
    border: none;
    text-align: center;
    outline: 0;
    -moz-appearance: textfield;
    border-left: solid 1px #dadada;
    border-right: solid 1px #dadada
}

.prodetail__qty-input::-webkit-inner-spin-button,
.prodetail__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.prodetail__desc {
    margin: 20px 0
}

.prodetail__actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0
}

.prodetail__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-block: clamp(7px, calc(10/1200*100vw), 10px);
    border: solid 1px #333;
    border-radius: 4px;
    font-size: clamp(14px, calc(15/1200*100vw), 15px);
    transition: all .3s;
    text-decoration: none;
    min-height: 45px;
    cursor: pointer
}

.prodetail__btn:hover {
    color: #fff !important;
    background: color-mix(in srgb, var(--color-main) 70%, #000) !important
}

.prodetail__btn--add {
    color: #d0021b;
    background: #fff;
    border-color: #d0021b
}

.prodetail__btn--buy {
    color: #fff;
    background: #d0021b;
    border-color: #d0021b
}

.prodetail__btn--hotline {
    color: #fff !important;
    background: var(--color-main);
    border-color: var(--color-main)
}

.prodetail__btn--zalo {
    color: #fff !important;
    background: #0068ff;
    border-color: #0068ff;
    padding: 5px 10px;
    text-align: left;
    justify-content: flex-start
}

.prodetail__btn-text {
    font-weight: 500;
    text-transform: uppercase
}

.prodetail__btn-subtext {
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-transform: none
}

.prodetail__tab-header {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    padding: 0;
    list-style: none
}

.prodetail__tab-header li {
    padding: 10px 0;
    font-size: clamp(14px, calc(18/1200*100vw), 18px);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: color .3s
}

.prodetail__tab-header li:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-main);
    transition: width .3s
}

.prodetail__tab-header li.active {
    color: var(--color-main)
}

.prodetail__tab-header li.active:after {
    width: 100%
}

.prodetail__tab-body {
    display: none
}

.prodetail__tab-body[x-show] {
    display: block
}

.prodetail__related {
    margin-top: 40px
}

.prodetail__related-title h2 {
    font-size: clamp(18px, calc(24/1200*100vw), 24px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-main);
    padding-left: 10px
}

.prodetail__related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px
}

.prodetail__attribute {
    margin-bottom: 20px
}

.prodetail__attribute-label {
    display: block;
    font-size: clamp(14px, calc(16/1200*100vw), 16px);
    font-weight: 700;
    margin-bottom: 10px
}

.prodetail__attribute-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px
}

.prodetail__attribute-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 5px 12px;
    border: 1px solid #dadada;
    border-radius: 2px;
    background: #fff;
    color: #111;
    font-size: clamp(12px, 1.5vw, 14px);
    cursor: pointer;
    overflow: hidden
}

.prodetail__attribute-btn:hover {
    border-color: var(--color-main);
}

.prodetail__attribute-btn.active {
    border-color: var(--color-main);
    color: var(--color-main)
}

.prodetail__attribute-check {
    position: absolute;
    bottom: -1px;
    right: -1px;
    z-index: 1;
    width: 20px;
    height: 20px;
    display: none;
    align-items: flex-end;
    justify-content: flex-end;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    color: #fff;
    background-color: var(--color-main)
}

.prodetail__attribute-btn.active .prodetail__attribute-check {
    display: flex
}

.splide.procategory:not(.is-overflow) .splide__list {
    justify-content: center
}

.splide__arrow {
    background: color-mix(in srgb, var(--color-main) 10%, #fff) !important;
    opacity: 1 !important;
    border-radius: 5px !important;
    transition: .2s;
    width: 35px !important;
    height: 35px !important
}

.splide__arrow--prev {
    left: -30px
}

.splide__arrow--next {
    right: -30px
}

.splide__arrow svg {
    fill: var(--color-main) !important;
    width: 24px;
    height: 24px;
    transition: .2s
}

.splide__arrow:hover {
    background: var(--color-main) !important
}

.splide__arrow:hover svg {
    fill: color-mix(in srgb, var(--color-main) 10%, #fff) !important
}

.wrap-show-content {
    position: relative;
}

.wrap-show-content.max-height {
    max-height: 500px;
    overflow: hidden;
}

.wrap-show-content.active {
    max-height: 100%;
}

.wrap-show-content.active .btn-show-content {
    position: relative;
    padding: 20px;
    background: none;
}

.btn-show-content {
    text-align: center;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(180deg, transparent, #fff);
    padding-top: 100px;
}

.btn-show-content span {
    background: var(--color-main);
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
}

.btn-show-content span i {
    margin-left: 10px;
}

.content-ckeditor table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-color: gray;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
}

.content-ckeditor tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

.content-ckeditor tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
}

.content-ckeditor td {
    display: table-cell;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-width: 1px;
    border-style: revert-layer;
}

.content-ckeditor ul,
.content-ckeditor ol {
    list-style: auto;
    padding-left: 2rem;
}

.content-ckeditor ul li,
.content-ckeditor ol li {
    margin-bottom: 0.75rem;
    list-style-type: auto;
}

.content-ckeditor * {
    max-width: 100% !important;
}

.content-ckeditor ul li {
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

.content-ckeditor ol li {
    margin-bottom: 0.75rem;
    list-style-type: decimal;
}

.content-ckeditor a {
    color: #05f;
    font-weight: 700;
    display: contents
}

.content-ckeditor iframe {
    width: 100% !important;
    display: block;
    margin: 10px auto 20px
}

.content-ckeditor figcaption {
    text-align: center
}

.content-ckeditor a img {
    max-width: 100%;
    height: auto !important
}

.content-ckeditor blockquote {
    border-left: solid 3px #ccc;
    padding-left: 20px;
    margin-left: 20px;
    font-style: italic
}

.skeleton-item {
    box-shadow: 0 2px 5px rgba(0, 0, 0, .05)
}

.skeleton-box {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: 1.5s shine3 linear infinite;
    border-radius: 4px
}

.skeleton-img {
    width: 100%;
    margin-bottom: 10px
}

.skeleton-title {
    height: 20px;
    width: 80%;
    margin-bottom: 8px
}

.skeleton-price {
    height: 20px;
    width: 50%
}

@keyframes shine3 {
    to {
        background-position-x: -200%
    }
}

.wrap-readmore {
    text-align: center;
}

.wrap-readmore span {
    color: #fff;
    background: var(--color-main);
    padding: 10px 20px;
    border: 1px solid var(--color-main);
    font-size: 15px;
    text-transform: capitalize;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.wrap-readmore span:hover {
    color: #fff;
    background: #f00;
    border-color: #f00;
}

.wrap-readmore span.active::before {
    position: absolute;
    inset: 0px;
    content: "";
    color: #fff;
    background: var(--color-main);
    transition: 0.7s;
}

.wrap-readmore span.active::after {
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    content: "\e4bb";
    color: #fff;
    font-family: "Font Awesome 6 Pro";
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.7s;
    animation: rotate3 1.5s linear infinite;
}

@keyframes rotate3 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Sort */
.sort-select {
    display: flex;
    justify-content: end;
    margin: 20px 0px;
    position: relative;
}

.sort-select .click-sort {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 10px 6px 8px;
    margin: 0px;
}

.sort-select-main {
    display: grid;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
    position: absolute;
    padding: 0 7px;
    top: 30px;
    right: 0;
    width: 160px;
    z-index: 2;
}

.sort-select-main p {
    border-bottom: 1px solid #f1f1f1;
    margin: 0px;
    order: 2;
}

.sort-select-main p:has(.check) {
    order: 1;
}

.sort a {
    color: #000;
    font-size: 14px;
    line-height: 17px;
    padding: 11px 3px;
    display: block;
    cursor: pointer;
}

.sort a.check i {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 16px;
    border: 2px solid transparent;
    border-radius: 100px;
    vertical-align: middle;
}

.sort a.check i::after {
    content: '';
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 3px;
    top: -4px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform-origin: bottom left;
    transform: rotate(45deg);
}

.sort-select .sort-show {
    padding-right: 12px;
    position: relative;
}

.sort-select .sort-show::before {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #333;
    content: '';
    height: 0;
    position: absolute;
    top: 6px;
    right: 0;
    width: 0;
}

/* Album */
.row-album {
    margin: 0px -10px;
}

.col-album {
    padding: 0px 10px;
    margin-bottom: 20px;
}

.album-item h3 {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 10px;
}

/* Video */
.row-video {
    margin: 0px -10px;
}

.col-video {
    padding: 0px 10px;
    margin-bottom: 20px;
}

.img-video {
    position: relative;
}

.img-video::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: url(../images/video.webp) center center no-repeat;
    background-size: 100%;
}

.video-item h3 {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 10px;
}

/* News */
.news-left {
    width: 68%;
}

.news-right {
    position: sticky;
    top: 61px;
    width: 30%;
    background: #f1f1f1cc;
    padding: 20px;
    box-shadow: 0px 0px 5px #99999978;
}

.news-right .title-main {
    margin-bottom: 15px;
}

.news-right .title-main span {
    font-size: 25px;
    line-height: 30px;
}

.item-news .ds-news {
    width: 100%;
}

.ds-news span {
    display: block;
    line-height: 25px;
    color: #999;
    font-size: 13px;
    margin: 10px 0px 0px;
    font-style: italic;
}

.ds-news h3 {
    font-size: 16px;
    margin: 0;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-line-clamp: 3 !important;
}

.ds-news h3:hover {
    color: var(--color-main);
}

.ds-news .desc {
    color: #333;
    margin-bottom: 0px;
}

.item-news:hover h3 {
    color: #f00;
}

.item-news-all a {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.item-news-all a .scale-img {
    max-width: 120px;
}

.item-news-all a .ds-news h3 {
    text-transform: capitalize;
    font-size: 15px;
}

.news-item a {
    display: block;
    position: relative
}

.news-item__pic {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 10px
}

.news-item__date {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-main);
    padding: 5px;
    border-radius: 10px 0 10px 0;
    color: #fff;
    font-size: 12px;
    font-weight: 600
}

.news-item__info {
    margin-top: 15px
}

.news-item__name {
    -webkit-line-clamp: 2 !important;
    color: var(--color-text);
    font-size: clamp(15px, calc(16/1200*100vw), 16px);
    font-weight: 600;
    margin-bottom: 7px;
    transition: .2s
}

.news-item a:hover .news-item__name {
    color: var(--color-main)
}

.news-item__desc {
    -webkit-line-clamp: 2 !important;
    color: var(--color-text);
    line-height: 20px;
    margin-bottom: 10px;
    word-break: break-word
}

.news-item__next {
    font-weight: 600;
    color: var(--color-text);
    transition: .2s
}

.news-item a:hover .news-item__next {
    color: var(--color-main)
}

/* News detail  */
.wrap-news {
    padding: 60px 0px;
}

.row-news {
    margin: 0px -12px;
}

.col-news {
    padding: 0px 12px;
    margin-bottom: 25px;
}

.news-box .news-pic {
    display: block;
    border-radius: 10px;
}

.news-box .news-info {
    padding-top: 15px;
}

.news-box .news-name {
    margin-bottom: 10px;
}

.news-box .news-name a {
    color: #282828;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.5;
}

.news-box .news-name a.text-split {
    -webkit-line-clamp: 2;
}

.news-box .news-name a:hover {
    color: var(--color-main);
}

.news-box .news-date {
    color: #818181;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.news-box .news-date i {
    color: var(--color-main);
    font-size: 16px;
}

.news-box .news-desc {
    color: #464646;
    font-size: 13px;
    line-height: 2;
    margin-bottom: 5px;
    text-align: justify;
}

.news-box .news-desc.text-split {
    -webkit-line-clamp: 3;
}

.news-box .news-view {
    text-align: right;
}

.news-box .news-view a {
    color: #434343;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-style: italic;
}

.news-box .news-view a span {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--color-main);
    font-weight: 400;
    font-style: normal;
}

.news-box .news-view a:hover {
    color: var(--color-hover);
}

.title-news {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.title-news-left {
    border-left: 3px solid #fcd657;
    padding-left: 15px;
}

.title-news-left span {
    display: block;
    color: #171717;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title-news-left p {
    margin-bottom: 0px;
    color: #222;
    font-size: 18px;
    line-height: 20px;
}

.arrows-news {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrows-news span {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ebeaea;
    border-radius: 50%;
    color: #727272;
    font-size: 16px;
}

.arrows-news span:hover {
    color: #000;
    background: #fcd657;
}

.left-news {
    width: 44%;
}

.right-news {
    width: 54.2%;
}

.swiper-news .swiper-slide {
    overflow: unset !important;
}

.news-best-pic {
    border-radius: 4px;
    overflow: hidden;
    display: block;
}

.news-best-info {
    padding-top: 15px;
}

.news-best-date {
    font-size: 13px;
    padding-left: 25px;
    min-height: 16px;
    background: url(../images/date.webp) left center no-repeat;
    color: #979797;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.news-best-info h3 {
    margin-bottom: 7px;
}

.news-best-info h3 a {
    color: #1e1e1e;
    font-size: 14px;
    font-weight: 700;
}

.news-best-info h3 a:hover {
    color: var(--color-hover);
}

.news-best-info h3 a.text-split {
    -webkit-line-clamp: 2;
}

.news-best-desc {
    margin-bottom: 0px;
    color: #727272;
    font-size: 14px;
    line-height: 1.7;
}

.news-best-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #272727;
    font-size: 16px;
    text-transform: capitalize;
}

.news-best-view:hover {
    color: var(--color-hover);
}

.blog-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.blog-box-1 {
    flex-direction: row-reverse;
}

.blog-pic {
    width: 174px;
    border-radius: 4px;
    overflow: hidden;
}

.blog-info {
    width: calc(100% - 184px);
}

.blog-name {
    margin-bottom: 7px;
}

.blog-name a {
    color: #1e1e1e;
    font-size: 14px;
    font-weight: 700;
}

.blog-name a:hover {
    color: var(--color-hover);
}

.blog-name a.text-split {
    -webkit-line-clamp: 2;
}

.blog-date {
    color: #979797;
    font-size: 13px;
    font-style: italic;
    padding-left: 25px;
    background: url(../images/date.webp) left center no-repeat;
    min-height: 16px;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.blog-desc {
    color: #7c7c7c;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 0px;
}

.blog-desc.text-split {
    -webkit-line-clamp: 2;
}

.blog-view {
    text-align: right;
}

.blog-view a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #424242;
    font-size: 13px;
    font-style: italic;
}

.blog-view a span {
    display: inline-block;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    background: #e0110b;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-style: normal;
}

.blog-view a:hover {
    color: #e0110b;
}

/* Footer */
.footer-article {
    padding: 35px 0px;
    overflow: hidden;
}

.footer-title {
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-main);
}

.footer-info {
    color: #333;
    font-size: 15px;
}

.footer-news:nth-child(1) {
    width: 40%;
}

.footer-news:nth-child(2) {
    width: 25%;
}

.footer-news:nth-child(3) {
    width: 25%;
}

.footer-ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-ul li {
    margin-bottom: 10px;
}

.footer-ul li:last-child {
    margin-bottom: 0px;
}

.footer-ul li a {
    color: #333;
    font-size: 14px;
}

.footer-ul li a:hover {
    text-decoration: none;
    color: var(--color-main);
}

.social-footer {
    margin-top: 25px;
}

.social-footer a {
    margin: 0 10px 5px 0;
    transition: all .7s;
}

.social-footer a:last-child {
    margin-right: 0;
}

.social-footer a:hover {
    -webkit-animation: rubberBand 1s;
    animation: rubberBand 1s;
}

.footer-powered {
    padding: 25px 0px;
    text-align: center;
    border-top: 1px solid #D7D7D7;
    transition: 0.7s;
}

.footer-copyright {
    color: #1C1B19;
    font-size: 15px;
}

.footer-copyright span {
    text-transform: uppercase;
}

.footer-copyright a {
    color: #1C1B19;
}

.footer-statistic {
    text-align: right;
}

.footer-statistic span {
    padding-right: 10px;
}

.footer-statistic span:last-child {
    padding-right: 0px;
}

#footer-map {
    position: relative;
    height: 450px;
    margin-top: 0px;
}

#footer-map iframe {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0px !important;
    left: 0px !important;
}

#facebookComponent {
    height: 200px;
}

#tiktokComponent {
    height: 403px;
    position: relative;
}

#tiktokComponent .tiktok-embed {
    margin: 0px;
    height: 403px;
    position: relative;
}

#tiktokComponent .tiktok-embed iframe {
    margin: 0px;
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Tags  */
.footer-tags {
    padding: 40px 0px;
}

.title-tags {
    color: var(--color-main);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.item-tags {
    display: inline-block;
    background: #f1f1f1;
    color: #525252;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px 8px 12px;
    border-radius: 3px;
    margin: 0px 10px 10px 0px;
}

.item-tags i {
    margin-right: 7px;
    color: var(--color-main);
    font-size: 18px;
    vertical-align: middle;
}

.item-tags:hover {
    color: #fff;
    background: var(--color-main);
}

.item-tags:hover i {
    color: #fff;
}

/* Contact */
.contact-flex {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 20px
}

.contact-map {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px
}

.contact-form {
    margin-top: 20px;
    background: #f5f5f5;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px
}

.contact-input {
    margin-bottom: 10px
}

.contact-input input,
.contact-input textarea {
    border-radius: 7px;
    border: 1px solid #e1e1e1;
    text-indent: 0;
    color: #000;
    font-size: 13px;
    min-height: 40px
}

.form-group,
.form-group-select {
    position: relative;
    margin-bottom: 15px
}

.form-group input,
.form-group textarea {
    width: 100%;
    font-size: 14px;
    transition: .1s ease;
    resize: vertical;
    background: #fff !important;
    box-shadow: none !important;
    border-radius: 5px;
    border: 1px solid #cacaca
}

.form-group.novalidate input,
.form-group.novalidate textarea {
    border: 1px solid #e2e2e2 !important
}

.form-group input {
    height: 45px
}

.form-group input.date-picker {
    padding-right: 35px
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #7799d0 !important
}

.form-group label,
.form-group-select>label {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 14px;
    color: #777;
    transition: .1s ease;
    pointer-events: none;
    background-color: transparent;
    margin: 0;
    line-height: 1.5
}

.form-group>span {
    position: absolute;
    right: 12px;
    top: 12px;
    transition: .1s ease;
    pointer-events: none;
    display: inline-block;
    max-width: 20px
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-main);
    outline: 0
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group-select>label {
    top: -10px;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    left: 8px;
    transform: none
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.custom-file-label::after {
    content: attr(title);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + .75rem);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0
}

/* Newsletter  */
.wrap-newsletter {
    overflow: hidden;
    padding: 92px 0 89px;
    position: relative;
    background: #7c7c7c;
    background-size: cover;
}



.newsletter-column-left {
    width: 45%;
}

.newsletter-column-right {
    width: 53.25%;
}

.flex-form .newsletter-input {
    width: calc(50% - 12px);
}

.newsletter-input {
    margin-bottom: 20px;
}

.newsletter-input.nletter-content {
    margin-bottom: 22px;
}

.newsletter-input input,
.newsletter-input textarea {
    height: 52px;
    outline: none;
    border: 1px solid #DDCCBB;
    border-radius: 12px;
    background-color: #fff;
    font-size: 16px;
    color: var(--color-text);
}

.newsletter-input textarea {
    padding-top: 12px;
    height: 80px;
    resize: none;
}

.newsletter-input input::-webkit-input-placeholder,
.newsletter-input textarea::-webkit-input-placeholder {
    color: var(--color-text);
}

.btn-submit {
    outline: none;
    border-radius: 12px;
    width: 186px;
    height: 52px;
    border: 0;
    background: var(--color-main);
    color: var(--color-text);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

.btn-submit:hover {
    color: #fff;
    background: var(--color-main);
}

/* Header CSS matching the design */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    padding: 15px 0px;
}

.h-header {
    height: 80px;
}

.boxLogoHeader {
    position: relative;
    width: 200px;
}

.boxLogoHeader .logo-header {
    position: absolute;
    top: -60px;
    /* Adjust based on logo size to overlap */
    left: 0;
    z-index: 10;
}

.boxLogoHeader .logo-img {

    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

/* Menu */
.menu-header {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ul-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 30px;
}

.ul-menu>li {
    position: relative;
    padding: 25px 0;
}

.ul-menu>li>a {
    color: #444;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ul-menu>li>a:hover,
.ul-menu>li>a.active {
    color: #294c7b;
}

/* Submenu */
.ul-menu>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.ul-menu>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ul-menu>li>ul>li {
    position: relative;
}

.ul-menu>li>ul>li>a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ul-menu>li>ul>li>a:hover {
    background: #f5f5f5;
    color: #294c7b;
}

/* Sub-submenu */
.ul-menu>li>ul>li>ul {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.ul-menu>li>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Right Actions */
.right-header {
    position: relative;
    z-index: 11;
}

.icon-search i {
    color: #555;
}

.icon-search:hover i {
    color: #294c7b;
}

.hotline-btn {
    background: #294c7b;
    border-radius: 50px;
    padding: 5px 20px 5px 5px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hotline-btn:hover {
    background: #1a355b;
    color: #fff;
}

.hotline-btn .icon-phone {
    background: #f0a93b;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.hotline-btn .icon-phone i {
    color: #294c7b;
    font-size: 16px;
}

.hotline-btn .hotline-text {
    color: #ffffff;
}

.cursor-pointer {
    cursor: pointer;
}

@media (max-width: 991px) {
    .h-header {
        height: 60px;
    }

    .boxLogoHeader {
        width: auto;
    }

    .boxLogoHeader .logo-header {
        top: auto;
        position: relative;
    }

    .boxLogoHeader .logo-img {
        width: auto;
    }
}

/* Process & Courses Section Styling */
.wrap-process-courses {
    background: url('../images/bk_quytrinh.png') no-repeat center center / cover;
    padding: 50px 0;
}

.process-title h2 {
    font-size: 26px;
    font-weight: 700;
    color: #294c7b;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    background: rgba(244, 248, 251, 0.95);
    border-radius: 20px;
}

.process-title-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #c5d3e0;
    z-index: 1;
}

.process-grid {
    gap: 10px;
}

.process-item {
    flex: 1;
    max-width: 180px;
}

@media (max-width: 991.98px) {
    .process-grid {
        justify-content: center !important;
    }
    .process-item {
        flex: 0 0 calc(33.333% - 10px);
        max-width: none;
        margin-bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .process-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .process-item {
        flex: 0 0 calc(100% - 10px);
    }
}

.process-box {
    background: #fff;
    border: 1px solid #c5d3e0;
    border-radius: 12px;
    padding: 40px 15px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.process-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #294c7b;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.process-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.process-name {
    font-size: 14px;
    font-weight: 700;
    color: #294c7b;
    margin-bottom: 5px;
}

.process-desc {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

.process-arrow {
    margin-top: 50px;
}

.process-arrow i {
    color: #294c7b;
    font-size: 20px;
}

.swiper-courses,
.swiper-courses .swiper-wrapper {
    padding: 25px 0 !important;
}

.course-card {
    background: #fff;
    border: 1px solid #294c7b;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(0.95);
    opacity: 0.92;
}

.course-card:hover {
    transform: scale(0.98) translateY(-3px);
}

.course-card.highlight,
.course-card.active,
.swiper-slide-active .course-card {
    border: 2px solid #e5a855 !important;
    box-shadow: 0 15px 35px rgba(229, 168, 85, 0.35) !important;
    transform: scale(1.08) !important;
    opacity: 1 !important;
    z-index: 5;
}

.course-header {
    background: #294c7b;
    color: #fff;
    padding: 16px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.course-card.highlight .course-header,
.course-card.active .course-header,
.swiper-slide-active .course-header {
    background: #e5a855 !important;
}

.course-body {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-badge span {
    border: 1px solid #294c7b;
    color: #294c7b;
    padding: 6px 22px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.course-price {
    font-size: 26px;
    font-weight: 800;
    color: #294c7b;
}

.course-price u,
.course-price .unit {
    text-decoration: underline;
    font-size: 22px;
}

.course-short-desc {
    font-size: 13px;
    color: #666;
    min-height: 42px;
    line-height: 1.4;
}

.course-divider {
    height: 1px;
    background: #e6ecf2;
    margin: 15px 0 20px 0;
    width: 100%;
}

.course-features {
    font-size: 13px;
    color: #333;
    margin: 0px auto;
    width: 100%;
    max-width: 180px;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-features i {
    color: #294c7b;
    font-size: 14px;
}

.course-btn {
    display: block;
    background: #f0f5fa;
    color: #294c7b;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-card.highlight .course-btn,
.course-card.active .course-btn {
    background: #294c7b !important;
    color: #fff !important;
}

.course-btn:hover {
    opacity: 0.95;
    transform: scale(1.02);
    color: #fff;
}

.course-btn.btn-outline {
    background: #f0f5fa;
    color: #294c7b;
    border: 1px solid transparent;
}

.course-btn.btn-outline:hover {
    background: #294c7b;
    color: #fff;
}

.course-info-card {
    background: #294c7b;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: opacity 0.2s ease;
}

.info-header {
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#info-course-title {
    font-size: 15px;
    font-weight: bold;
    color: #e5a855;
}

.info-body ul {
    font-size: 13px;
    line-height: 1.6;
}

.info-body ul li i {
    width: 16px;
    text-align: center;
}

.info-img img {
    height: 120px;
    object-fit: cover;
}

/* Section Titles & Decor */
.section-title-wrapper {
    margin-bottom: 35px;
}

.section-main-title {
    font-size: 26px;
    font-weight: 800;
    color: #294c7b;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.section-sub-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.title-decor-line {
    width: 100%;
    height: 24px;
    background: url('../images/title_right.png') no-repeat center center;

    margin: 10px auto 0;
}

/* Why Choose Us Section */
.wrap-why-us {
    padding: 60px 0;
}

.why-us-grid {
    gap: 15px;
}

.why-us-item {
    flex: 1;
    min-width: 180px;
}

.why-us-card {
    background: #fff;
    border-radius: 16px;
    padding: 45px 15px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(41, 76, 123, 0.12);
}

.why-us-icon-wrapper {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 62px;
    background: #294c7b;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(41, 76, 123, 0.3);
}

.why-us-icon-wrapper img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.why-us-title {
    font-size: 14px;
    font-weight: 700;
    color: #294c7b;
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.3;
}

.why-us-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Training Program Section */
.wrap-training-program {
    padding: 60px 0;
    background: #fff;
}

.program-tabs {
    gap: 14px;
    margin-bottom: 35px;
}

.program-tab-btn {
    background: #ffffff;
    color: #294c7b;
    border: 1px solid #dcdcdc;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.program-tab-btn:hover {
    border-color: #e5a855;
    color: #294c7b;
}

.program-tab-btn.active {
    background: #e5a855;
    color: #294c7b;
    border-color: #e5a855;
    box-shadow: 0 4px 12px rgba(229, 168, 85, 0.25);
}

.program-step-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

.program-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.program-card-body {
    padding: 24px 20px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.program-num-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #294c7b;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-num-badge.badge-green {
    background: #28a745;
}

.program-num-badge.badge-orange {
    background: #e5a855;
}

.program-step-title {
    font-size: 15px;
    font-weight: 800;
    color: #294c7b;
    line-height: 1.25;
    text-transform: uppercase;
}

.program-step-title.text-green {
    color: #28a745;
}

.program-step-title.text-orange {
    color: #e5a855;
}

.program-tab-pane {
    display: none;
}

.program-tab-pane.active {
    display: block;
}

.program-feature-desc {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-feature-desc ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.program-feature-desc ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.program-feature-desc ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #294c7b;
}

.program-feature-list {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.program-feature-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.program-feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #294c7b;
    font-size: 16px;
}

.program-img-wrapper {
    margin-top: auto;
}

.program-img-wrapper img {
    height: 150px;
    object-fit: cover;
    border-top: 1px solid #e2e8f0;
}

/* Program Swiper */
.swiper-program {
    overflow: hidden;
    padding: 10px 0;
}

.swiper-program .swiper-slide {
    height: auto;
    display: flex;
}

.swiper-program .program-step-card {
    width: 100%;
}

/* Compare Program Section */
.wrap-compare-program {
    padding: 60px 0;
    background: #f8fafc;
}

.compare-left-card {
    background: #294c7b;
    border-radius: 16px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(41, 76, 123, 0.15);
    height: 100%;
}

.compare-icon-box {

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.compare-icon-box img {

    object-fit: contain;
}

.compare-notice-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    font-weight: 600;
}

.compare-table-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.compare-table {
    margin-bottom: 0;
    width: 100%;
    border-collapse: collapse;
}

.compare-table thead th {
    background: #294c7b;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    padding: 16px 20px;
    text-transform: uppercase;
    border: none;
    letter-spacing: 0.3px;
}

.compare-table tbody tr {
    border-bottom: 1px solid #f0f4f8;
    transition: background-color 0.2s ease;
}

.compare-table tbody tr:hover {
    background-color: #f8fafc;
}

.compare-table tbody tr:last-child {
    border-bottom: none;
}

.compare-table tbody td {
    padding: 15px 20px;
    font-size: 14px;
    color: #333333;
    vertical-align: middle;
}

.compare-table tbody td.text-navy {
    color: #294c7b;
}

/* Newsletter Section */
.wrap-newsletter {
    padding: 60px 0;
    background: #ffffff;
}

.newsletter-form-card {
    border: 1px solid #e5e7eb;
    padding: 35px 30px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.newsletter-input-group label {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
}

.input-with-icon .form-control {
    padding-left: 38px;
    height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    box-shadow: none;
    transition: all 0.3s ease;
}

.input-with-icon .form-control:focus {
    border-color: #294c7b;
    box-shadow: 0 0 0 3px rgba(41, 76, 123, 0.1);
}

.input-with-icon .form-control::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.newsletter-footer {
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
}

.security-notice {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
}

.security-notice i {
    color: #4b5563;
    margin-right: 6px;
}

.btn-submit-yellow {
    background: #e5a855;
    color: #294c7b;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-yellow:hover {
    background: #d89945;
    color: #294c7b;
}

.newsletter-banner-card {
    background: #294c7b;
    padding: 40px 30px 0 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.newsletter-banner-card .banner-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.newsletter-banner-card .banner-desc {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.banner-car-img {
    max-width: 120%;
    margin-left: -10%;
    display: block;
    object-fit: contain;
}

.compare-table-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.compare-table {
    margin-bottom: 0;
    width: 100%;
    border-collapse: collapse;
}

.compare-table thead th {
    background: #294c7b;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    padding: 16px 20px;
    text-transform: uppercase;
    border: none;
    letter-spacing: 0.3px;
}

.compare-table tbody tr {
    border-bottom: 1px solid #f0f4f8;
    transition: background-color 0.2s ease;
}

.compare-table tbody tr:hover {
    background-color: #f8fafc;
}

.compare-table tbody tr:last-child {
    border-bottom: none;
}

.compare-table tbody td {
    padding: 15px 20px;
    font-size: 14px;
    color: #333333;
    vertical-align: middle;
}

.compare-table tbody td.text-navy {
    color: #294c7b;
}

.wrap-reviews {
    background-color: #ffffff;
    padding: 40px 0;
}

.reviews-header .section-title {
    color: #294c7b;
    font-weight: 700;
    font-size: 28px;
}

.reviews-header .section-desc {
    color: #4b5563;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.title-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.title-divider .dotted-line {
    flex: 1;
    border-bottom: 2px dotted #a8b8d0;
}

.review-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    padding: 20px;
    gap: 20px;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-image {
    flex: 0 0 200px;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.review-content {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-name {
    color: #294c7b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.review-role {
    color: #4b5563;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 12px;
}

.review-divider {
    border: 0;
    border-top: 2px solid #a8b8d0;
    margin: 0 0 12px 0;
    width: 100%;
}

.review-text {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-quote-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 36px;
    color: #cbd5e1;
    opacity: 0.6;
}

.review-card-small .review-image {
    flex: 0 0 160px;
}

.review-card-small .review-text {
    -webkit-line-clamp: 3;
}

@media (max-width: 991px) {
    .review-card-small .review-image {
        flex: 0 0 140px;
    }
}

@media (max-width: 768px) {
    .review-card {
        flex-direction: column;
    }

    .review-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
        aspect-ratio: 1;
    }

    .review-card-small .review-image {
        max-width: 180px;
        aspect-ratio: 1;
    }

    .review-text {
        margin-bottom: 40px;
    }
}


.reviews-header .section-title {
    font-weight: 800;
}

.title-divider i {
    color: #294c7b;
    font-size: 18px;
}

.wrap-news {
    background: url("../images/bk_tintuc.png") center/cover no-repeat;
    padding: 60px 0;
}

.news-item-home {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.news-item-home__pic {
    border-radius: 12px;
    overflow: hidden;
}

.news-item-home__pic img {
    border-radius: 12px;
    object-fit: cover;
}

.news-item-home__info {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: -60px 15px 0;
    position: relative;
    z-index: 2;
    padding: 25px 20px;
    text-align: center;
}

.news-item-home__name a {
    color: #294c7b;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
    transition: 0.3s;
}

.news-item-home__name a:hover {
    color: #e5a855;
}

.news-item-home__divider {
    position: relative;
    border-top: 2px solid #cbd5e1;
    margin: 20px 0 15px;
    text-align: center;
}

.news-item-home__date {
    display: inline-block;
    background: #294c7b;
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 13px;
    position: relative;
    top: -15px;
    font-weight: 600;
}

.news-item-home__desc {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.footer-ul-clean {
    padding-left: 0;
    margin-bottom: 0;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    text-decoration: none;
}

.social-circle:hover {
    border-color: #294c7b;
    background: #294c7b;
}

.social-circle:hover img {
    filter: grayscale(0%) brightness(0) invert(1) !important;
}

.footer-big-text {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 130px;
    font-weight: 900;
    color: rgba(220, 225, 235, 0.4);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 5px;
}

@media (max-width: 992px) {
    .footer-big-text {
        font-size: 80px;
        bottom: -10px;
    }
}

@media (max-width: 576px) {
    .footer-big-text {
        font-size: 40px;
        bottom: 0px;
    }
}


.footer {
    background: url("../images/bk_footer.png") center/cover no-repeat;
    padding-top: 50px;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 76, 123, 0.9);
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.footer-top-section h3 {
    font-size: 32px;
    letter-spacing: 1px;
}

.footer-top-section p {
    font-size: 15px;
    opacity: 0.9;
}

.footer-top-section button {
    font-size: 14px;
    border-radius: 4px;
}

.footer-bottom-box {
    border-radius: 15px;
    padding-bottom: 100px !important;
}

.consultant-label {
    font-size: 12px;
    font-weight: 600;
}

.consultant-name {
    color: #294c7b;
    font-size: 20px;
}

.consultant-img {
    width: 75px;
    height: 75px;
    object-fit: cover;
}

.consultant-info-item span,
.consultant-info-item i {
    font-size: 13px;
}

.consultant-social-icon {
    width: 16px;
    height: 16px;
    filter: grayscale(100%);
}

.footer-logo {
    max-height: 140px;
}

.footer-col-title {
    color: #333;
    font-size: 15px;
}

.footer-list-info {
    font-size: 13px;
    line-height: 1.8;
}

.footer-list-info i {
    width: 15px;
}

.footer-list-links {
    font-size: 13px;
    line-height: 2;
}

.footer-divider {
    border-color: #f3f4f6;
}

.footer-copyright {
    font-size: 12px;
}

.designer-name {
    color: #333;
}

.footer-social-label {
    font-size: 12px;
    font-weight: 500;
}

.social-icon-img {
    max-width: 14px;
    max-height: 14px;
    filter: grayscale(100%);
}