@font-face {
    font-family: "Mona Sans";
    src: url("../fonts/MonaSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mona Sans";
    src: url("../fonts/MonaSans-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mona Sans";
    src: url("../fonts/MonaSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mona Sans";
    src: url("../fonts/MonaSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mona Sans";
    src: url("../fonts/MonaSans-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

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

@keyframes floatY {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(-14px);
    }

    75% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shake-anim {
    0% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    10%, 30% {
    }

    20%, 40% {
    }

    100%, 50% {
    }
}

@-webkit-keyframes shake-anim {
    0%, 100%, 50% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    10%, 30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20%, 40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
}

.popup-custom .modal-content {
    border-radius: 0px;
    border: 0px;
}

.popup-custom .modal-content .modal-body {
    padding: 10px;
}

.popup-custom .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 2;
    color: rgb(136, 136, 136);
    cursor: pointer;
    border: 1px solid rgb(238, 238, 238);
    background-color: rgb(255, 255, 255);
    opacity: 1 !important;
}

#popup-quickview .modal-dialog {
    max-width: 1140px;
}

.opacity-0 {
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0px, 100px, 0px);
    }

    100% {
        opacity: 1;
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0px, -100px, 0px);
    }

    100% {
        opacity: 1;
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes scaleLarge {
    0% {
        opacity: 0;
        transform: scale(2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

:root {
    --color-red: #ec2d3f;
    --color-medium-red: #cc2c32;
    --color-dark-red: #c31829;
    --color-green: #28a745;
    --color-dark-green: #207d36;
    --color-black: #212529;
    --color-gray: #6c757d;
    --background-static: #3fa07e;
    --background-hover: #eceb1b;
    --color-static: #000;
    --color-hover: #ec2d3f;
}

a.mucluc-dropdown-list_button::before {
    content: "";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    background: rgb(255, 255, 255);
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: inline-block;
    line-height: 38px;
    text-align: center;
    border: 1px solid rgb(221, 221, 221);
    color: rgb(0, 106, 203) !important;
}

.meta-toc.fiedx {
    position: fixed;
    left: 5px;
    top: 200px;
    z-index: 111;
}

.meta-toc .mucluc-dropdown-list_button {
    display: none;
}

.meta-toc.fiedx .mucluc-dropdown-list_button {
    display: block;
}

.meta-toc:not(.fiedx) .box-readmore {
    display: block !important;
}

.box-readmore {
    padding: 10px;
    background-color: rgb(245, 245, 245);
    width: 100%;
    margin-top: 2px;
    border: 1px solid rgb(221, 221, 221);
    font-size: 13px;
    margin-bottom: 10px;
}

.meta-toc.fiedx .box-readmore {
    width: 350px;
    display: none;
}

.box-readmore li ul > li {
    margin: 0px 0px 8px;
}

.box-readmore li ul > li::before {
    content: counters(item, ".") " ";
}

.box-readmore ul {
    list-style-type: none;
    counter-reset: item 0;
    margin-bottom: 0px;
    margin-top: 8px;
    padding-left: 0px !important;
}

.box-readmore ul li {
    display: table;
    counter-increment: item 1;
    margin: 0px 0px 5px;
}

.box-readmore ul li::before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 5px;
}

.box-readmore ul li a {
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: rgb(0, 0, 0) !important;
}

.box-readmore ul li li a {
    font-weight: 400;
}

.box-readmore ul li a:hover {
    color: rgb(118, 118, 118);
}

#loader-wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
}

#loader-wrapper #wrap {
    background: rgb(255, 255, 255);
    position: absolute;
    inset: 0px;
    margin: auto;
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

#loader-wrapper.show1 #wrap {
    background: 0px 0px;
}

#loader-wrapper::after {
    mask: url("../images/mask-01.png") 0% 0% / 2300% 100%;
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    z-index: 99999;
}

#loader-wrapper.show1::after {
    animation: 1s steps(22) 0s 1 normal forwards running MaskPlay;
}

#loader-wrapper.show1 #wrap {
    opacity: 0;
}

.loading-text ul {
    margin-top: 1.875rem;
}

.loading-text ul li {
    animation: 1.5s linear 0s infinite normal none running anime;
    display: inline-block;
    font-family: var(--bs-font-monospace);
    font-size: 1.875rem;
    letter-spacing: 1px;
}

.loading-text ul li:nth-child(1) {
    animation-delay: 0s;
}

.loading-text ul li:nth-child(2) {
    animation-delay: 0.1s;
}

.loading-text ul li:nth-child(3) {
    animation-delay: 0.2s;
}

.loading-text ul li:nth-child(4) {
    animation-delay: 0.3s;
}

.loading-text ul li:nth-child(5) {
    animation-delay: 0.4s;
}

.loading-text ul li:nth-child(6) {
    animation-delay: 0.5s;
}

.loading-text ul li:nth-child(7) {
    animation-delay: 0.6s;
}

.loader {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0px;
    padding-bottom: 3.125rem;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 100001;
}

@-webkit-keyframes anime {
    0% {
        color: grey;
        letter-spacing: 1px;
        text-shadow: rgb(0, 0, 0) 1px 1px 0px;
        transform: translateY(0px);
    }

    50% {
        color: rgb(255, 193, 7);
        letter-spacing: 5px;
        text-shadow: rgb(0, 0, 0) 5px 10px 1px;
        transform: translateY(-10px);
    }

    100% {
        color: grey;
        letter-spacing: 1px;
        text-shadow: rgb(0, 0, 0) 1px 1px 0px;
        transform: translateY(0px);
    }
}

@keyframes anime {
    0% {
        color: grey;
        letter-spacing: 1px;
        text-shadow: rgb(0, 0, 0) 1px 1px 0px;
        transform: translateY(0px);
    }

    50% {
        color: rgb(255, 193, 7);
        letter-spacing: 5px;
        text-shadow: rgb(0, 0, 0) 5px 10px 1px;
        transform: translateY(-10px);
    }

    100% {
        color: grey;
        letter-spacing: 1px;
        text-shadow: rgb(0, 0, 0) 1px 1px 0px;
        transform: translateY(0px);
    }
}

@-webkit-keyframes MaskPlay {
    0% {
        mask-position: 0px 0px;
    }

    100% {
        mask-position: 100% 0px;
    }
}

@keyframes MaskPlay {
    0% {
        mask-position: 0px 0px;
    }

    100% {
        mask-position: 100% 0px;
    }
}

.menu-category.collapsed .menu-category-list {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
}

.menu-category.collapsed:hover .menu-category-list, .menu-category.collapsed:focus-within .menu-category-list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-category.collapsed .menu-category-panels {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}

body {
    font-size: 14px;
    font-family: "Mona Sans";
}

blockquote {
    font-style: italic;
    font-family: "Mona Sans";
    padding: 2px 8px 2px 20px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    border-width: 0px 0px 0px 5px;
}

blockquote p {
    margin-bottom: 0px;
}

.row-10 {
    margin-left: -5px;
    margin-right: -5px;
}

.row-20 {
    margin-left: -10px;
    margin-right: -10px;
}

.row-30 {
    margin-left: -15px;
    margin-right: -15px;
}

.col-30 {
    padding-left: 15px;
}

.col-20 {
    padding-left: 10px;
    padding-right: 10px;
}

.mg-col-10 {
    padding-left: 5px;
    padding-right: 5px;
}

.padding-top-bottom {
    padding: 2.5rem 0px;
}

.pad-top {
    padding-top: 2.5rem;
}

.pad-bottom {
    padding-bottom: 2.5rem;
}

.mg-top {
    margin-top: 2.5rem;
}

.mg-bottom {
    margin-bottom: 2.5rem;
}

.hover_xemthem {
    transition: 0.4s;
}

.hover_xemthem:hover {
    letter-spacing: 2px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

a, input, textarea {
    outline: 0px;
    padding: 0px;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
    margin: 0px;
}

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

.hidden {
    display: none;
}

.clear {
    clear: both;
}

.none {
    display: none;
}

.hidden-seoh {
    visibility: hidden;
    height: 0px;
    margin: 0px;
    overflow: hidden;
}

.wrap-content {
    max-width: 1200px;
    margin: auto;
    width: calc(100% - 30px);
}

.fix_head {
    top: 0px;
    width: 100%;
    position: fixed !important;
    z-index: 999 !important;
}

.mg-l-10 {
    margin-left: -10px;
}

.mg-r-10 {
    margin-right: -10px;
}

.mg-b-20 {
    margin-bottom: 20px;
}

.title-detail-main {
    color: rgb(37, 37, 37);
    font-size: 23px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.title-main {
    margin-bottom: 1.5rem;
    text-align: center;
}

.title-main span {
    text-transform: uppercase;
    color: var(--color-black);
    font-weight: 700;
    font-size: 1.4rem;
}

.time-main {
    margin-bottom: 0.75rem;
    color: rgb(153, 153, 153);
}

.time-main i {
    vertical-align: top;
    margin: 3px 7px 0px 0px;
}

.time-main span {
    vertical-align: top;
    display: inline-block;
}

.share {
    padding: 17px 15px 10px;
    line-height: normal;
    background: rgba(128, 128, 128, 0.15);
    margin-top: 15px;
    border-radius: 5px;
}

.share b {
    display: block;
    margin-bottom: 5px;
}

.control-owl {
    position: absolute;
    width: 100%;
    z-index: 2;
    left: 0px;
    top: calc(50% - 22.5px);
}

.control-owl button {
    opacity: 0.5;
    top: 0px;
    position: absolute;
    outline: 0px;
    border: 0px;
    padding: 0px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 25px;
    margin: 0px;
    background-color: rgb(0, 0, 0);
    border-radius: 3px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.control-owl button:hover {
    opacity: 1;
}

.control-owl button.owl-prev {
    left: 20px;
}

.control-owl button.owl-next {
    right: 20px;
}

.custom-form-row {
    margin-right: -10px;
    margin-left: -10px;
}

.custom-form-row > .col, .custom-form-row > [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}

.text-sm {
    font-size: 0.875rem !important;
}

img.lazy {
    opacity: 0;
    filter: blur(10px);
    transition: filter 0.4s, -webkit-filter 0.4s;
}

img:not(.initial) {
    transition: opacity 1s;
}

img.error, img.initial, img.loaded {
    opacity: 1;
    transition: opacity 0.3s;
    filter: blur(0px);
}

img:not([src]) {
    visibility: hidden;
}

.wrap-user {
    width: 100%;
    max-width: 550px;
    margin: auto;
    border: 1px solid rgb(188, 232, 241);
    border-radius: 5px;
}

.title-user {
    background-color: rgb(217, 237, 247);
    padding: 12px 15px;
    border-radius: 5px 5px 0px 0px;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.title-user span {
    color: rgb(49, 112, 143);
}

.title-user a {
    color: rgb(0, 86, 179);
    font-size: 12px;
}

.form-user {
    padding: 20px 15px;
}

.input-user {
    margin-bottom: 0.75rem;
}

.input-user input {
    font-size: 14px;
}

.button-user {
    margin-bottom: 1rem;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.button-user input {
    font-size: 14px;
}

.checkbox-user, .radio-user {
    cursor: pointer;
}

.checkbox-user input {
    top: calc(50% - 0.625rem);
    height: auto;
}

.checkbox-user label {
    font-size: 14px;
    cursor: pointer;
}

.checkbox-user label::after, .checkbox-user label::before {
    top: calc(50% - 0.5rem);
}

.radio-user {
    margin-right: 1rem;
}

.radio-user:last-child {
    margin-right: 0px;
}

.radio-user label::after, .radio-user label::before {
    top: calc(50% - 0.5rem);
}

.note-user {
    font-size: 14px;
    border-top: 1px solid rgb(221, 221, 221);
    padding-top: 0.5rem;
}

.ContactUs {
    position: fixed;
    bottom: 1.125em;
    right: 1.125em;
    z-index: 999997;
}

.ContactUs__chatBotOnly {
    position: fixed;
    bottom: 1.5em;
    right: 1.5em;
    padding: 0px;
    z-index: 999997;
    background: 0px 0px;
}

.ContactUs__chatBotOnly .ContactUs__icon {
    width: 4.5em;
    height: 4.5em;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 10px;
}

.ContactUs__button {
    color-scheme: unset;
    forced-color-adjust: unset;
    math-depth: unset;
    position: relative;
    position-anchor: unset;
    text-size-adjust: unset;
    appearance: unset;
    color: rgb(0, 0, 0);
    font-family: unset;
    font-feature-settings: unset;
    font-kerning: unset;
    font-language-override: unset;
    font-optical-sizing: unset;
    font-palette: unset;
    font-size: unset;
    font-size-adjust: unset;
    font-stretch: unset;
    font-style: unset;
    font-synthesis: unset;
    font-variant: unset;
    font-variation-settings: unset;
    font-weight: 600;
    position-area: unset;
    text-orientation: unset;
    text-rendering: unset;
    text-spacing-trim: unset;
    -webkit-font-smoothing: unset;
    -webkit-locale: unset;
    -webkit-text-orientation: unset;
    -webkit-writing-mode: unset;
    writing-mode: unset;
    zoom: unset; accent-color: unset;
    align-content: unset;
    align-items: center;
    place-self: unset;
    alignment-baseline: unset;
    anchor-name: unset;
    anchor-scope: unset;
    animation-composition: unset;
    animation: unset;
    animation-trigger: unset;
    app-region: unset;
    aspect-ratio: unset;
    backdrop-filter: unset;
    backface-visibility: unset;
    background: rgb(255, 189, 57);
    background-blend-mode: unset;
    baseline-shift: unset;
    baseline-source: unset;
    block-size: unset;
    border-block: unset; border: 2px solid rgb(255, 189, 57);
    border-radius: 10px;
    border-collapse: unset;
    border-end-end-radius: unset;
    border-end-start-radius: unset;
    border-inline: unset; border-start-end-radius: unset;
    border-start-start-radius: unset;
    inset: unset;
    box-decoration-break: unset;
    box-shadow: unset;
    box-sizing: unset;
    break-after: unset;
    break-before: unset;
    break-inside: unset;
    buffered-rendering: unset;
    caption-side: unset;
    caret-animation: unset;
    caret-color: unset;
    caret-shape: unset;
    clear: unset;
    clip: unset;
    clip-path: unset;
    clip-rule: unset;
    color-interpolation: unset;
    color-interpolation-filters: unset;
    color-rendering: unset;
    columns: unset;
    column-fill: unset;
    gap: unset;
    column-rule: unset;
    column-span: unset;
    contain: unset;
    contain-intrinsic-block-size: unset;
    contain-intrinsic-size: unset;
    contain-intrinsic-inline-size: unset;
    container: unset;
    content: unset;
    content-visibility: unset;
    corner-shape: unset;
    corner-block-end-shape: unset;
    corner-block-start-shape: unset;
    counter-increment: unset;
    counter-reset: unset;
    counter-set: unset;
    cursor: unset;
    cx: unset;
    cy: unset;
    d: unset;
    display: flex;
    dominant-baseline: unset;
    dynamic-range-limit: unset;
    empty-cells: unset;
    field-sizing: unset;
    fill: unset;
    fill-opacity: unset;
    fill-rule: unset;
    filter: unset;
    flex: unset;
    flex-flow: unset;
    float: unset;
    flood-color: unset;
    flood-opacity: unset;
    grid: unset;
    grid-area: unset;
    height: unset;
    hyphenate-character: unset;
    hyphenate-limit-chars: unset;
    hyphens: unset;
    image-orientation: unset;
    image-rendering: unset;
    initial-letter: unset;
    inline-size: unset;
    inset-block: unset;
    inset-inline: unset;
    interactivity: unset;
    interest-delay: unset;
    interpolate-size: unset;
    isolation: unset;
    justify-content: space-between;
    justify-items: unset;
    letter-spacing: unset;
    lighting-color: unset;
    line-break: unset;
    line-height: unset;
    list-style: unset;
    margin-block: unset; margin: unset;
    margin-inline: unset; marker: unset;
    mask: unset;
    mask-type: unset;
    math-shift: unset;
    math-style: unset;
    max-block-size: unset;
    max-height: unset;
    max-inline-size: unset;
    max-width: unset;
    min-block-size: unset;
    min-height: unset;
    min-inline-size: unset;
    min-width: unset;
    mix-blend-mode: unset;
    object-fit: unset;
    object-position: unset;
    object-view-box: unset;
    offset: unset;
    opacity: unset;
    order: unset;
    orphans: unset;
    outline: unset;
    outline-offset: unset;
    overflow-anchor: unset;
    overflow-block: unset;
    overflow-clip-margin: unset;
    overflow-inline: unset;
    overflow-wrap: unset;
    overflow: unset;
    overlay: unset;
    overscroll-behavior-block: unset;
    overscroll-behavior-inline: unset;
    overscroll-behavior: unset;
    padding-block: unset; padding: 6px;
    padding-inline: unset; page: unset;
    page-orientation: unset;
    paint-order: unset;
    perspective: unset;
    perspective-origin: unset;
    pointer-events: unset;
    position-try: unset;
    position-visibility: unset;
    print-color-adjust: unset;
    quotes: unset;
    r: unset;
    reading-flow: unset;
    reading-order: unset;
    resize: unset;
    rotate: unset;
    ruby-align: unset;
    ruby-position: unset;
    rx: unset;
    ry: unset;
    scale: unset;
    scroll-behavior: unset;
    scroll-initial-target: unset;
    scroll-margin-block: unset;
    scroll-margin: unset;
    scroll-margin-inline: unset;
    scroll-marker-group: unset;
    scroll-padding-block: unset;
    scroll-padding: unset;
    scroll-padding-inline: unset;
    scroll-snap-align: unset;
    scroll-snap-stop: unset; scroll-snap-type: unset;
    scroll-target-group: unset;
    scroll-timeline: unset;
    scrollbar-color: unset;
    scrollbar-gutter: unset;
    scrollbar-width: unset;
    shape-image-threshold: unset;
    shape-margin: unset;
    shape-outside: unset;
    shape-rendering: unset;
    size: unset;
    speak: unset;
    stop-color: unset;
    stop-opacity: unset;
    stroke: unset;
    stroke-dasharray: unset;
    stroke-dashoffset: unset;
    stroke-linecap: unset;
    stroke-linejoin: unset;
    stroke-miterlimit: unset;
    stroke-opacity: unset;
    stroke-width: unset;
    tab-size: unset;
    table-layout: unset;
    text-align: unset;
    text-align-last: unset;
    text-anchor: unset;
    text-autospace: unset;
    text-box: unset;
    text-combine-upright: unset;
    text-decoration: unset;
    text-decoration-skip-ink: unset;
    text-emphasis: unset;
    text-emphasis-position: unset;
    text-indent: unset;
    text-justify: unset;
    text-overflow: unset;
    text-shadow: unset;
    text-transform: unset;
    text-underline-offset: unset;
    text-underline-position: unset;
    text-wrap: unset;
    timeline-scope: unset;
    timeline-trigger: unset;
    touch-action: unset;
    transform: unset;
    transform-box: unset;
    transform-origin: unset;
    transform-style: unset;
    transition: 0.35s;
    translate: unset;
    trigger-scope: unset;
    user-select: unset;
    vector-effect: unset;
    vertical-align: unset;
    view-timeline: unset;
    view-transition-class: unset;
    view-transition-group: unset;
    view-transition-name: unset;
    visibility: unset;
    border-spacing: unset;
    -webkit-box-align: unset;
    -webkit-box-decoration-break: unset;
    -webkit-box-direction: unset;
    -webkit-box-flex: unset;
    -webkit-box-ordinal-group: unset;
    -webkit-box-orient: unset;
    -webkit-box-pack: unset;
    -webkit-box-reflect: unset;
    -webkit-line-break: unset;
    -webkit-line-clamp: unset;
    -webkit-mask-box-image: unset;
    -webkit-rtl-ordering: unset;
    -webkit-ruby-position: unset;
    -webkit-tap-highlight-color: unset;
    -webkit-text-combine: unset;
    -webkit-text-decorations-in-effect: unset;
    -webkit-text-fill-color: unset;
    -webkit-text-security: unset;
    -webkit-text-stroke: unset;
    -webkit-user-drag: unset;
    white-space-collapse: unset;
    widows: unset;
    width: unset;
    will-change: unset;
    word-break: unset;
    word-spacing: unset;
    x: unset;
    y: unset;
    z-index: unset;
}

.ContactUs__button span {
    position: relative;
    z-index: 1;
    user-select: none;
}

.ContactUs__button::after, .ContactUs__button::before {
    content: "";
    inset: 0px;
    position: absolute;
    border-radius: 8px;
    transition: 0.35s;
}

.ContactUs__button::before {
    background: linear-gradient(90deg, rgb(255, 189, 57) 0px, rgb(250, 149, 49) 100%);
    opacity: 1;
}

.ContactUs__button::after {
    background: rgb(255, 255, 255);
    opacity: 0;
}

.ContactUs__button.active {
    color: rgb(250, 149, 49);
}

.ContactUs__button.active .ContactUs__button--icon__wrap img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(80%) saturate(1974%) hue-rotate(359deg) brightness(102%) contrast(103%);
}

.ContactUs__button.active::before {
    opacity: 0;
}

.ContactUs__button.active::after {
    opacity: 1;
}

.ContactUs__button.active .ContactUs__button--icon img {
    fill: rgb(250, 149, 49) !important;
}

.ContactUs__button--icon {
    width: 2.5em;
    height: 2.5em;
    position: relative;
    z-index: 2;
    transition: fill 0.35s;
    fill: rgb(255, 255, 255) !important;
}

.ContactUs__button--icon__wrap {
    width: 55px;
    position: relative;
    z-index: 1;
}

.ContactUs__button--icon__wrap::after {
    content: "";
    inset: 0px;
    border-radius: 8px;
    position: absolute;
    background: rgba(255, 255, 255, 0);
    transition: 0.35s;
}

.ContactUs__form {
    position: fixed;
    bottom: 1.125em;
    left: 50%;
    z-index: 999998;
    padding: 1.5em;
    background-color: rgb(255, 255, 255);
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 0.25em 1.375em;
    transform: translate(-50%, calc(100% + 1.125em));
    transition: transform 0.2s, -webkit-transform 0.2s;
    width: 100%;
}

.ContactUs__form.visible {
    transform: translate(-50%, 0px);
}

.ContactUs__form iframe {
    width: 100% !important;
    min-height: 35em;
}

.ContactUs__form .ContactUs__menu--close {
    opacity: 1;
    position: absolute;
    top: 0.75em;
    right: 0.75em;
}

.ContactUs__menu {
    min-width: 205px;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.ContactUs__menu--wrap {
    position: absolute;
    border-radius: 12px;
    bottom: calc(100% + 5px);
    right: 0px;
    text-align: right;
    padding: 10px;
    background-color: rgb(255, 255, 255);
    filter: drop-shadow(rgba(0, 0, 0, 0.12) 0px 0.25em 1.375em);
    overflow: hidden;
    transition: max-height 0.4s ease-out, visibility 0.4s ease-out, opacity 0.2s ease-out;
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    display: unset !important;
}

.ContactUs__menu--wrap::after, .ContactUs__menu--wrap::before {
    content: "";
    position: absolute;
    background-color: rgb(255, 255, 255);
}

.ContactUs__menu--wrap.visible {
    max-height: 800px;
    visibility: visible;
    opacity: 1;
}

.ContactUs__menu--wrap.visible .ContactUs__menu--close, .ContactUs__menu--wrap.visible .ContactUs__menu--text {
    opacity: 1;
}

.ContactUs__menu--wrap.visible .ContactUs__menu--link {
    opacity: 1;
}

.ContactUs__menu--item {
    margin-bottom: 5px;
    overflow: hidden;
}

.ContactUs__menu--item.top {
    position: relative;
    z-index: 2;
}

.ContactUs__menu--link[class] {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    width: 100%;
    height: auto;
    padding: 7px 10px;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
    text-decoration: none;
    opacity: 0;
    transform: translateZ(10px);
    transition: 0.25s 0.15s;
    z-index: 1;
    cursor: pointer;
}

.ContactUs__menu--link[class]::after {
    content: "";
    inset: 0px;
    position: absolute;
    transform: translateX(calc(100% + 0.75em));
    transition: transform 0.2s, -webkit-transform 0.2s;
    border-radius: 1rem;
    z-index: -1;
}

.ContactUs__menu--link[class]:hover {
    text-decoration: none !important;
    color: rgb(0, 0, 0) !important;
}

.ContactUs__menu--link[class]:hover::after {
    transform: translateX(0px);
}

.ContactUs__menu--link[class].green::after {
    background-color: rgb(218, 244, 231);
}

.ContactUs__menu--link[class].red::after {
    background-color: rgb(254, 224, 228);
}

.ContactUs__menu--link[class].violet::after {
    background-color: rgb(239, 230, 248);
}

.ContactUs__menu--link[class].orange::after {
    background-color: rgb(254, 239, 224);
}

.ContactUs__menu--link[class].blue::after {
    background-color: rgb(223, 234, 253);
}

.ContactUs__menu--link[class].chat[class] > div[id] > div {
    width: 3.5em;
    height: 3.5em;
    position: static !important;
}

.ContactUs__menu--link[class] .fakeChatButton__msg {
    width: 19.9462em;
}

.ContactUs__menu--link[class] .ContactUs__icon, .ContactUs__menu--link[class] > div:not(.fakeChatButton) {
    width: 2.5em;
    height: 2.5em;
    margin-left: 1em;
}

.ContactUs__menu--close {
    color-scheme: unset;
    forced-color-adjust: unset;
    math-depth: unset;
    position: unset;
    position-anchor: unset;
    text-size-adjust: unset;
    appearance: none;
    color: unset;
    font: unset;
    font-palette: unset;
    font-synthesis: unset;
    position-area: unset;
    text-orientation: unset;
    text-rendering: unset;
    text-spacing-trim: unset;
    -webkit-font-smoothing: unset;
    -webkit-locale: unset;
    -webkit-text-orientation: unset;
    -webkit-writing-mode: unset;
    writing-mode: unset;
    zoom: unset; accent-color: unset;
    place-content: unset;
    place-items: unset;
    place-self: unset;
    alignment-baseline: unset;
    anchor-name: unset;
    anchor-scope: unset;
    animation-composition: unset;
    animation: unset;
    animation-trigger: unset;
    app-region: unset;
    aspect-ratio: unset;
    backdrop-filter: unset;
    backface-visibility: unset;
    background: unset;
    background-blend-mode: unset;
    baseline-shift: unset;
    baseline-source: unset;
    block-size: unset;
    border-block: unset; border: unset;
    border-radius: unset;
    border-collapse: unset;
    border-end-end-radius: unset;
    border-end-start-radius: unset;
    border-inline: unset; border-start-end-radius: unset;
    border-start-start-radius: unset;
    inset: unset;
    box-decoration-break: unset;
    box-shadow: unset;
    box-sizing: unset;
    break-after: unset;
    break-before: unset;
    break-inside: unset;
    buffered-rendering: unset;
    caption-side: unset;
    caret-animation: unset;
    caret-color: unset;
    caret-shape: unset;
    clear: unset;
    clip: unset;
    clip-path: unset;
    clip-rule: unset;
    color-interpolation: unset;
    color-interpolation-filters: unset;
    color-rendering: unset;
    columns: unset;
    column-fill: unset;
    gap: unset;
    column-rule: unset;
    column-span: unset;
    contain: unset;
    contain-intrinsic-block-size: unset;
    contain-intrinsic-size: unset;
    contain-intrinsic-inline-size: unset;
    container: unset;
    content: unset;
    content-visibility: unset;
    corner-shape: unset;
    corner-block-end-shape: unset;
    corner-block-start-shape: unset;
    counter-increment: unset;
    counter-reset: unset;
    counter-set: unset;
    cursor: pointer;
    cx: unset;
    cy: unset;
    d: unset;
    display: unset;
    dominant-baseline: unset;
    dynamic-range-limit: unset;
    empty-cells: unset;
    field-sizing: unset;
    fill: unset;
    fill-opacity: unset;
    fill-rule: unset;
    filter: unset;
    flex: unset;
    flex-flow: unset;
    float: unset;
    flood-color: unset;
    flood-opacity: unset;
    grid: unset;
    grid-area: unset;
    height: unset;
    hyphenate-character: unset;
    hyphenate-limit-chars: unset;
    hyphens: unset;
    image-orientation: unset;
    image-rendering: unset;
    initial-letter: unset;
    inline-size: unset;
    inset-block: unset;
    inset-inline: unset;
    interactivity: unset;
    interest-delay: unset;
    interpolate-size: unset;
    isolation: unset;
    letter-spacing: unset;
    lighting-color: unset;
    line-break: unset;
    list-style: unset;
    margin-block: unset; margin-bottom: 10px;
    margin-inline: unset; margin-left: unset;
    margin-right: unset;
    margin-top: unset;
    marker: unset;
    mask: unset;
    mask-type: unset;
    math-shift: unset;
    math-style: unset;
    max-block-size: unset;
    max-height: unset;
    max-inline-size: unset;
    max-width: unset;
    min-block-size: unset;
    min-height: unset;
    min-inline-size: unset;
    min-width: unset;
    mix-blend-mode: unset;
    object-fit: unset;
    object-position: unset;
    object-view-box: unset;
    offset: unset;
    opacity: unset;
    order: unset;
    orphans: unset;
    outline: unset;
    outline-offset: unset;
    overflow-anchor: unset;
    overflow-block: unset;
    overflow-clip-margin: unset;
    overflow-inline: unset;
    overflow-wrap: unset;
    overflow: unset;
    overlay: unset;
    overscroll-behavior-block: unset;
    overscroll-behavior-inline: unset;
    overscroll-behavior: unset;
    padding-block: unset; padding: unset;
    padding-inline: unset; page: unset;
    page-orientation: unset;
    paint-order: unset;
    perspective: unset;
    perspective-origin: unset;
    pointer-events: unset;
    position-try: unset;
    position-visibility: unset;
    print-color-adjust: unset;
    quotes: unset;
    r: unset;
    reading-flow: unset;
    reading-order: unset;
    resize: unset;
    rotate: unset;
    ruby-align: unset;
    ruby-position: unset;
    rx: unset;
    ry: unset;
    scale: unset;
    scroll-behavior: unset;
    scroll-initial-target: unset;
    scroll-margin-block: unset;
    scroll-margin: unset;
    scroll-margin-inline: unset;
    scroll-marker-group: unset;
    scroll-padding-block: unset;
    scroll-padding: unset;
    scroll-padding-inline: unset;
    scroll-snap-align: unset;
    scroll-snap-stop: unset; scroll-snap-type: unset;
    scroll-target-group: unset;
    scroll-timeline: unset;
    scrollbar-color: unset;
    scrollbar-gutter: unset;
    scrollbar-width: unset;
    shape-image-threshold: unset;
    shape-margin: unset;
    shape-outside: unset;
    shape-rendering: unset;
    size: unset;
    speak: unset;
    stop-color: unset;
    stop-opacity: unset;
    stroke: unset;
    stroke-dasharray: unset;
    stroke-dashoffset: unset;
    stroke-linecap: unset;
    stroke-linejoin: unset;
    stroke-miterlimit: unset;
    stroke-opacity: unset;
    stroke-width: unset;
    tab-size: unset;
    table-layout: unset;
    text-align: unset;
    text-align-last: unset;
    text-anchor: unset;
    text-autospace: unset;
    text-box: unset;
    text-combine-upright: unset;
    text-decoration: unset;
    text-decoration-skip-ink: unset;
    text-emphasis: unset;
    text-emphasis-position: unset;
    text-indent: unset;
    text-justify: unset;
    text-overflow: unset;
    text-shadow: unset;
    text-transform: unset;
    text-underline-offset: unset;
    text-underline-position: unset;
    text-wrap: unset;
    timeline-scope: unset;
    timeline-trigger: unset;
    touch-action: unset;
    transform: unset;
    transform-box: unset;
    transform-origin: unset;
    transform-style: unset;
    transition: unset;
    translate: unset;
    trigger-scope: unset;
    user-select: unset;
    vector-effect: unset;
    vertical-align: unset;
    view-timeline: unset;
    view-transition-class: unset;
    view-transition-group: unset;
    view-transition-name: unset;
    visibility: unset;
    border-spacing: unset;
    -webkit-box-align: unset;
    -webkit-box-decoration-break: unset;
    -webkit-box-direction: unset;
    -webkit-box-flex: unset;
    -webkit-box-ordinal-group: unset;
    -webkit-box-orient: unset;
    -webkit-box-pack: unset;
    -webkit-box-reflect: unset;
    -webkit-line-break: unset;
    -webkit-line-clamp: unset;
    -webkit-mask-box-image: unset;
    -webkit-rtl-ordering: unset;
    -webkit-ruby-position: unset;
    -webkit-tap-highlight-color: unset;
    -webkit-text-combine: unset;
    -webkit-text-decorations-in-effect: unset;
    -webkit-text-fill-color: unset;
    -webkit-text-security: unset;
    -webkit-text-stroke: unset;
    -webkit-user-drag: unset;
    white-space-collapse: unset;
    widows: unset;
    width: unset;
    will-change: unset;
    word-break: unset;
    word-spacing: unset;
    x: unset;
    y: unset;
    z-index: unset;
}

.ContactUs__menu--close svg {
    width: 1em;
    height: 1em;
}

.ContactUs__menu--close {
    opacity: 0;
    transition-delay: 0s;
}

#popup-cart .modal-title {
    text-transform: uppercase;
}

#popup-cart .modal-body .wrap-cart {
    padding: 0px;
    box-shadow: none;
    border: 0px;
}

#popup-cart .modal-footer {
    padding: 0.75rem 0px 0px;
    border-top: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.buymore-cart {
    color: rgb(236, 45, 63);
    cursor: pointer;
    margin: 0px;
}

.buymore-cart i {
    margin-right: 2px;
    margin-top: 5px;
    vertical-align: top;
    font-size: 12px;
}

.wrap-cart {
    padding: 20px 15px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(216, 216, 216);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 20px;
}

.top-cart {
    border-right: 1px solid rgb(238, 238, 238);
}

@media only screen and (max-width: 991px) {
    .top-cart {
        margin-bottom: 2rem;
    }
}

.procart {
    padding: 20px 10px;
    border-width: 0px 1px 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: rgb(238, 238, 238);
    border-bottom-color: rgb(238, 238, 238);
    border-left-color: rgb(238, 238, 238);
    border-image: initial;
    border-top-style: initial;
    border-top-color: initial;
}

.pic-procart {
    text-align: center;
}

.pic-procart img {
    max-height: 100px;
    height: inherit;
}

.pic-procart .del-procart {
    color: rgb(153, 153, 153);
    font-size: 12px;
    display: block;
    margin-top: 5px;
    cursor: pointer;
}

.pic-procart .del-procart:hover {
    color: red;
}

.name-procart a {
    font-size: 14px;
    color: rgb(0, 0, 0);
    display: block;
}

@media only screen and (max-width: 575px) {
    .name-procart a {
        font-size: 13px;
    }
}

.name-procart a:hover {
    color: rgb(236, 45, 63);
}

.properties-procart {
    display: block;
}

.properties-procart p {
    display: inline-block;
    margin-bottom: 0px;
}

.properties-procart p:first-child {
    margin-right: 10px;
}

.properties-procart p strong {
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .quantity-procart {
        text-align: right;
    }
}

.quantity-procart p {
    margin-bottom: 0px;
}

.quantity-counter-procart {
    border: 1px solid rgb(223, 223, 223);
    width: 100%;
    height: 30px;
    line-height: normal;
    text-align: center;
    border-radius: 3px;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.counter-procart {
    background-color: transparent;
    border: 0px;
    width: 30%;
    color: rgb(51, 51, 51);
    outline: 0px;
    cursor: pointer;
    font-size: 23px;
}

.counter-procart:focus, .counter-procart:hover {
    color: rgb(236, 45, 63);
}

.counter-procart:disabled {
    color: rgb(204, 204, 204);
    cursor: not-allowed;
}

.counter-procart:disabled:hover {
    color: rgb(204, 204, 204);
    cursor: not-allowed;
}

.counter-procart-minus {
    line-height: 26px;
}

.counter-procart-plus {
    line-height: 24px;
}

.quantity-counter-procart .quantity-procart {
    width: 40%;
    box-sizing: border-box;
    border-width: 0px 1px;
    border-top-style: initial;
    border-bottom-style: initial;
    border-top-color: initial;
    border-bottom-color: initial;
    border-image: initial;
    border-right-style: solid;
    border-right-color: rgb(223, 223, 223);
    border-left-style: solid;
    border-left-color: rgb(223, 223, 223);
    outline: 0px;
    box-shadow: none;
    padding: 0px;
    color: rgb(51, 51, 51);
    text-align: center;
}

.price-procart {
    width: 20%;
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .price-procart {
        display: none;
    }
}

.price-procart-rp {
    display: none;
    width: 100%;
    margin-bottom: 10px;
    font-size: 13.5px;
}

@media only screen and (max-width: 767px) {
    .price-procart-rp {
        display: block;
    }
}

.price-new-cart {
    color: rgb(236, 45, 63);
    margin-bottom: 0px;
}

.price-old-cart {
    color: rgb(153, 153, 153);
    text-decoration: line-through;
}

.procart-label {
    border: 0px;
    background: rgb(238, 238, 238);
    padding: 10px;
    margin: 0px;
    text-transform: capitalize;
}

@media only screen and (max-width: 575px) {
    .procart-label {
        font-size: 13px;
    }
}

@media only screen and (min-width: 768px) {
    .procart-label .quantity-procart p:first-child {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .procart-label .quantity-procart p:first-child {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .procart-label .quantity-procart p:last-child {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .procart-label .quantity-procart p:last-child {
        display: block;
    }
}

.money-procart {
    margin-top: 15px;
}

.total-procart {
    background: rgb(238, 238, 238);
    padding: 7px 10px;
    border: 1px solid rgb(221, 223, 226);
    margin-bottom: -1px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.total-procart p {
    margin-bottom: 0px;
    font-size: 15px;
}

.total-procart p:last-child {
    color: rgb(236, 45, 63);
}

.section-cart {
    position: sticky;
    top: 15px;
}

.title-cart {
    font-size: 15px;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    border-bottom: 1px solid rgb(238, 238, 238);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.information-cart {
    margin-bottom: 1.5rem;
}

.input-cart {
    margin-bottom: 0.5rem;
    position: relative;
}

.input-cart textarea {
    resize: none;
    height: 100px;
}

.input-cart select {
    cursor: pointer;
}

.payments-cart {
    text-align: left;
    margin-bottom: 5px;
    min-height: auto;
    padding-left: 0px;
    margin-left: 20px;
    position: relative;
}

.payments-cart:last-child {
    margin-bottom: 0px;
}

.payments-cart input {
    top: 10px;
    position: absolute;
}

.payments-label {
    cursor: pointer;
    background: rgb(238, 238, 238);
    display: block;
    padding: 10px 15px;
    border-radius: 3px;
    margin-bottom: 0px;
    color: rgb(49, 49, 49) !important;
}

.payments-label::after, .payments-label::before {
    top: calc(50% - 0.5rem);
}

.payments-label.active {
    background: var(--background-static);
    color: rgb(255, 255, 255) !important;
}

.payments-info {
    opacity: 0;
    visibility: hidden;
    height: 0px;
    overflow: hidden;
    background: rgb(245, 239, 239);
    border-radius: 5px;
}

.payments-info p {
    margin-bottom: 1em;
}

.payments-info.active {
    padding: 10px 15px;
    margin-top: 5px;
    opacity: 1;
    visibility: visible;
    height: auto;
}

.btn-cart {
    text-transform: capitalize;
}

.empty-cart {
    padding: 25px 30px;
    text-align: center;
}

.empty-cart i {
    color: red;
    font-size: 70px;
}

.empty-cart p {
    margin: 15px 0px;
    color: rgb(51, 51, 51);
    font-size: 18px;
}

.comment-title {
    font-size: 18px;
}

.comment-show {
    display: block !important;
}

.comment-point {
    font-size: 47px;
    color: rgb(254, 48, 46);
}

.comment-star {
    font-size: 0px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0.5rem;
}

.comment-star span {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 1;
    overflow: hidden;
    text-align: left;
    white-space: nowrap;
}

.comment-star i {
    display: inline-block;
    margin: 0.1rem;
    color: rgb(184, 184, 184);
    text-rendering: auto;
    font-size: 20px;
}

.comment-star i:nth-child(1) {
    margin-left: 0px;
}

.comment-star span i {
    color: rgb(255, 193, 32);
}

.comment-progress {
    width: 100%;
    margin-bottom: 0.375rem;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.comment-progress:last-child {
    margin-bottom: 0px;
}

.comment-progress .progress {
    height: 12px;
    margin-right: 10px;
    margin-left: 5px;
    width: calc(100% - 90px);
    border-radius: 10px;
}

.comment-progress .progress-bar#has-rate {
    background-color: rgb(35, 180, 69);
}

.comment-progress .progress-num {
    font-size: 15px;
    width: 25px;
    text-align: center;
    color: rgb(120, 120, 120);
}

.comment-progress .progress-total {
    font-weight: 600;
    text-align: left;
    color: rgb(120, 120, 120);
    width: 50px;
}

.comment-write {
    display: none;
}

.review-rating-star {
    font-size: 0px;
}

.review-rating-star-icon .fa {
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    margin: 0.1rem;
    font-size: 21px;
    cursor: pointer;
    color: rgb(240, 200, 8);
}

.review-rating-star-icon .fa.star-empty {
    color: rgb(222, 221, 220);
}

.review-rating-star-icon .fa.star-not-empty {
    color: rgb(240, 200, 8);
}

.review-rating-star-icon .fa:nth-child(1) {
    margin-left: 0px;
}

.review-fileuploader {
    padding: 20px 15px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    border: 2px dashed rgb(194, 205, 218);
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.review-fileuploader .review-fileuploader-text {
    color: rgb(144, 160, 188);
}

.review-file-uploader .fileuploader {
    padding: 0px;
    margin: 0px;
    background: 0px 0px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list {
    margin: 1rem -5px 0px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list::after {
    display: block;
    content: "";
    clear: both;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item {
    padding: 0px;
    width: calc(14.2857% - 10px);
    float: left;
    margin: 0px 5px 5px;
    border-bottom: 0px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .columns {
    display: block;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail {
    width: auto;
    height: auto;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail .fileuploader-item-image {
    height: auto;
    padding: 50% 0px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail .fileuploader-item-image img {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-title {
    padding: 0px;
    margin-top: 0.5rem;
    text-align: center;
    display: none;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-actions {
    margin: 0px;
    position: absolute;
    top: 0px;
    right: -5px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-infos input {
    border: 1px solid rgb(221, 221, 221);
    border-radius: 0.25rem;
}

.review-poster-video-avatar {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.review-poster-video-avatar .avatar-detail {
    width: 95px;
    height: 95px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.review-poster-video-avatar .avatar-detail img {
    max-width: 95px;
    max-height: 95px;
}

#review-content {
    height: 100px;
}

.carousel-comment-media .carousel-control a {
    opacity: 1;
    width: 45px;
    height: 45px;
    top: calc(50% - 22.5px);
    bottom: inherit;
}

.carousel-comment-media .carousel-control a span {
    cursor: pointer;
    color: rgb(34, 34, 34);
    width: 45px;
    height: 45px;
    padding: 5px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 12px 0px;
    border-radius: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.carousel-comment-media .carousel-control a.carousel-control-prev {
    left: 20px;
}

.carousel-comment-media .carousel-control a.carousel-control-prev span {
    padding-right: 9px;
}

.carousel-comment-media .carousel-control a.carousel-control-next {
    right: 20px;
}

.carousel-comment-media .carousel-control a.carousel-control-next span {
    padding-left: 8px;
}

.carousel-comment-media .carousel-indicators {
    position: static;
    margin: 0px 0px 1rem;
}

.carousel-comment-media .carousel-indicators li {
    width: auto;
    max-width: 60px;
    height: auto;
    text-indent: inherit;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    margin: 0px 0px 3px;
    border: 2px solid transparent;
    opacity: 1;
    cursor: zoom-in;
}

.carousel-comment-media .carousel-indicators li.active {
    border-color: rgb(255, 193, 32);
    cursor: zoom-out;
    transform: scale(1.05);
}

.carousel-comment-media .carousel-inner {
    max-width: 550px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 12px 0px;
    margin: auto;
}

.carousel-comment-media .carousel-inner .carousel-lists .carousel-comment-media-item-video #file-video {
    max-width: 100%;
    width: 100%;
    height: 500px;
    vertical-align: top;
    display: inline-block;
    background-color: rgb(0, 0, 0);
}

#form-reply {
    display: none;
}

.comment-item {
    margin-bottom: 3rem;
}

@media only screen and (min-width: 992px) {
    .comment-item {
        display: flex;
        -webkit-box-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}

.comment-item-poster {
    width: 200px;
    margin-right: 30px;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .comment-item-poster {
        width: auto;
        margin-right: 0px;
        margin-bottom: 0.5rem;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}

.comment-item-letter {
    border-radius: 50%;
    background-color: rgb(211, 210, 211);
    color: rgb(145, 144, 144);
    width: 65px;
    height: 65px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    line-height: 67px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media only screen and (max-width: 991px) {
    .comment-item-letter {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 13px;
        margin-bottom: 0px;
    }
}

.comment-item-name {
    margin-bottom: 0.25rem;
    text-transform: capitalize;
}

@media only screen and (max-width: 991px) {
    .comment-item-name {
        margin-bottom: 0px;
        margin-left: 10px;
        margin-right: 10px;
    }
}

.comment-item-posttime {
    font-size: 12px;
    color: rgb(153, 153, 153);
}

.comment-item-information {
    width: calc(100% - 230px);
}

@media only screen and (max-width: 991px) {
    .comment-item-information {
        width: 100%;
    }
}

.comment-item-star {
    float: left;
    margin-right: 10px;
}

.comment-item-star i {
    font-size: 17px;
}

.comment-item-title {
    font-size: 15px;
    font-weight: 500;
}

.comment-replies {
    position: relative;
    background: rgb(248, 249, 250);
    border: 1px solid rgb(223, 223, 223);
    padding: 1.75rem 1.5rem;
}

.comment-replies::after {
    content: "";
    position: absolute;
}

.comment-replies::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -13px;
    left: 10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 13px solid rgb(248, 249, 250);
}

.comment-replies::after {
    top: -14px;
    left: 9px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 14px solid rgb(223, 223, 223);
}

.comment-replies-item {
    margin-bottom: 1.5rem;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.comment-replies-item:last-child {
    margin-bottom: 0px;
}

.comment-replies-letter {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    line-height: 45px;
    padding-left: 1px;
    font-size: 14px;
    border-radius: 50%;
    background-color: rgb(229, 227, 229);
    color: rgb(145, 144, 144);
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    font-weight: 500;
    text-align: center;
    margin-top: 0.125rem;
}

.comment-replies-letter.admin {
    position: relative;
    background-color: rgb(24, 158, 255);
    text-indent: 9999px;
    overflow: hidden;
}

.comment-replies-letter.admin::before {
    content: "QTV";
    text-indent: 0px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.comment-replies-info {
    width: calc(100% - 55px);
}

.comment-replies-name {
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.comment-replies [class*="btn-load-more-"] {
    border: 0px;
    outline: 0px;
    padding: 0px;
    background: 0px 0px;
}

.comment-media-play {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.comment-media-play svg {
    box-shadow: rgba(0, 0, 0, 0.3) 1px 1px 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
}

.comment-media-play svg .comment-media-play-stroke-dotted {
    opacity: 0;
    stroke-dasharray: 4, 5;
    stroke-width: 1px;
    transform-origin: 50% 50%;
    animation: 4s linear 0s infinite normal none running spin;
    transition: opacity 1s, stroke-width 1s;
}

.comment-media-play svg .comment-media-play-stroke-solid {
    stroke-dashoffset: 0;
    stroke-dasharray: 300;
    stroke-width: 4px;
    transition: stroke-dashoffset 1s, opacity 1s;
}

.comment-media-play svg .comment-media-play-icon {
    transform-origin: 50% 50%;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.comment-media-play:hover svg .comment-media-play-stroke-dotted {
    stroke-width: 4px;
    opacity: 1;
}

.comment-media-play:hover svg .comment-media-play-stroke-solid {
    opacity: 0;
    stroke-dashoffset: 300;
}

.comment-media-play:hover svg .comment-media-play-icon {
    transform: scale(1.05);
}

.head {
    background-color: rgb(0, 62, 41);
    padding: 12px 0px;
}
.d-chinhanh{position:relative;}
.flex-chinhanh{position:absolute;top:120px;z-index:1;right:0;left:0;}
.flex-chinhanh a{margin:0 10px 0 0;padding: 10px 24px;min-width:100px;transition:.3s all;display:block;box-shadow: 0px 2px 0px 0px #04508A;border-radius: 15px;border: 1px solid #04508A;border-top: 0;background: #FFF;color: #39A6F9;text-align: center;font-family: "Baloo 2";font-size: 16px;font-style: normal;font-weight: 600;line-height: normal;text-transform: capitalize;}
.flex-chinhanh a:hover,.flex-chinhanh a.active{color: #fff;transition:.3s all;background: linear-gradient(180deg, #39A6F9 -14.36%, #226293 99.93%);}
.d-bando{}
.box-bando{display:none;}
.box-bando iframe{width:100%;height: 400px;display:inline-block;vertical-align:middle;}
.box-bando.active{display:block;}
.flex-chinhanh a i{margin-right:10px;}
@media (max-width: 1024px) {
    .head {
        display: none;
    }
}

.head .wrap-content {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 24px;
}

.logo-head {
    width: 339px;
    min-width: 339px;
    display: block;
}

.logo-head img {
    width: 100%;
    height: 68px;
    object-fit: contain;
    display: block;
}

.head-search {
    width: 575px;
    height: 55px;
    border-radius: 1212px;
    background-color: rgb(255, 255, 255);
    padding: 7px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    max-width: 575px;
    margin-left: auto;
}

.head-search input {
    width: calc(100% - 41px);
    border: 0px;
    height: 100%;
    padding: 0px 14px;
    font-size: 14px;
    color: rgb(137, 137, 137);
    background: transparent;
    outline: 0px;
}

.head-search input::placeholder {
    color: rgb(137, 137, 137);
}

.head-search button {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    border: 0px;
    background-color: rgb(7, 105, 58);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 0px;
    cursor: pointer;
}

.head-search button img {
    width: 16px;
    height: 16px;
    display: block;
}

.head-hotline {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    white-space: nowrap;
}

.head-hotline .hotline-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    flex: 0 0 55px;
}

.head-hotline .hotline-icon img {
    width: 23px;
    height: 23px;
    display: block;
}

.head-hotline .hotline-text {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.head-hotline .hotline-text .label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    line-height: 1.3;
}

.head-hotline .hotline-text .number {
    font-size: 20px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    line-height: 1.2;
}

@media only screen and (max-width: 1200px) {
    .logo-head {
        width: 290px;
        min-width: 290px;
    }

    .logo-head img {
        height: auto;
    }

    .head-search {
        max-width: 520px;
    }
}

@media only screen and (max-width: 991px) {
    .head .wrap-content {
        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
        gap: 14px;
    }

    .logo-head {
        min-width: 0px;
        width: 260px;
    }

    .head-search {
        width: 100%;
        max-width: 100%;
    }

    .head-hotline {
        width: 100%;
        -webkit-box-pack: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 575px) {
    .head {
        padding: 10px 0px;
    }

    .head-hotline .hotline-icon {
        width: 48px;
        height: 48px;
        -webkit-box-flex: 0;
        flex: 0 0 48px;
    }

    .head-hotline .hotline-text .number {
        font-size: 18px;
    }
}

.head .head-top {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 62, 41);
}

.slogan-head {
    height: 40px;
    display: flex;
    align-items: center;
    width: 40%;
}

.info-head {
    margin-bottom: 0px;
}

.info-head i {
    vertical-align: top;
    margin: 3px 5px 0px 0px;
    font-size: 16px;
}

.head .head-bottom .wrap-content {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.social-head li {
    width: 30px;
}

.head-bottom .wrap-content {
    padding: 10px 0px;
}

.user-head a {
    color: rgb(255, 255, 255);
    padding-right: 9px;
    margin-right: 7px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
}

.user-head a::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 8px;
    background-color: rgb(255, 255, 255);
    top: calc(50% - 3.5px);
    right: 0px;
    opacity: 0.7;
}

.user-head a:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.user-head a:last-child::after {
    display: none;
}

.menu {
    background-color: rgb(7, 105, 58);
    position: relative;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px 0px;
}

.menu-wrap {
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
}

.menu-category {
    width: 270px;
    position: relative;
    z-index: 5;
    flex-shrink: 0;
    overflow: visible;
}

.menu-category-toggle {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    min-height: 52px;
    color: rgb(255, 255, 255);
    background-color: rgb(7, 105, 58);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 20px;
    text-decoration: none;
}

.menu-category-toggle:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 80, 48);
}

.menu-category.collapsed:hover .menu-category-toggle, .menu-category.collapsed:focus-within .menu-category-toggle, .menu-category.active .menu-category-toggle, .menu-category.show-panel .menu-category-toggle {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 80, 48);
}

.menu-category-toggle i {
    font-size: 16px;
}

.menu-category-list {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 440px;
    background-color: rgb(255, 255, 255);
    border-top: 0px;
    max-height: 440px;
    overflow-y: auto;
    scrollbar-width: thin;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s, visibility 0.2s;
}

.menu-category.menu-category-hidden-scroll .menu-category-list {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.menu-category-list > li > a {
    display: block;
    position: relative;
    color: rgb(51, 51, 51);
    font-size: 14px;
    font-weight: 500;
    line-height: 37px;
    letter-spacing: 0px;
    padding: 12px 22px 12px 24px;
    border-bottom: 1px solid rgb(236, 236, 236);
    text-decoration: none;
    text-transform: uppercase;
}

.menu-category-list > li > a::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgb(51, 51, 51);
    left: 10px;
    top: calc(50% - 2px);
}

.menu-category-list > li > a.has-child {
    position: relative;
    padding-right: 32px;
}

.menu-category-list > li > a .menu-category-arrow {
    position: absolute;
    right: 16px;
    top: calc(50% - 4px);
    line-height: 0;
}

.menu-category-list > li > a .menu-category-arrow svg {
    display: block;
}

.menu-category-list > li:hover > a .menu-category-arrow path, .menu-category-item.active > a .menu-category-arrow path {
    fill: rgb(0, 80, 48);
}

.menu-category-list > li:hover > a {
    color: rgb(255, 255, 255);
    background-color: rgb(7, 105, 58);
}

.menu-category-item.active > a {
    color: rgb(0, 80, 48);
    background-color: rgb(255, 255, 255);
}

.menu-category-panels {
    position: absolute;
    top: 100%;
    left: 100%;
    width: 290px;
    min-height: var(--menu-category-list-height, 460px);
    height: var(--menu-category-list-height, 460px);
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(236, 236, 236);
    box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: 0.25s;
    z-index: 6;
}

.menu-category.menu-category-hidden-scroll .menu-category-panels {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(10px);
}

.menu-category.show-panel .menu-category-panels {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0px);
}

.menu-category-panel {
    display: none;
    padding: 10px 14px;
    height: 100%;
}

.menu-category-panel.active {
    display: block;
}

.menu-category-panel-title {
    font-size: 14px;
    font-weight: 700;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.menu-category-panel ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.menu-category-panel li a {
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 37px;
    color: rgb(51, 51, 51);
    border-bottom: 0px;
    padding: 0px 0px 0px 14px;
    text-transform: uppercase;
    text-decoration: none;
}

.menu-category-panel li a::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgb(51, 51, 51);
    left: 0px;
    top: calc(50% - 2px);
}

.menu-category-panel li:last-child > a {
    border-bottom: 0px;
}

.menu-category-panel li a:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 80, 48);
}

.menu-main {
    width: calc(100% - 285px) !important;
}

@media only screen and (max-width: 991px) {
    .menu {
        display: none;
    }
}

.menu ul {
    width: 100%;
    padding: 0px;
    margin: auto;
    list-style: none;
}

.menu ul.menu-main {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(16px, 4vw, 69px);
    padding: 23px 36px;
}

.menu ul li {
    position: relative;
    z-index: 1;
}

.menu ul li.menu-line {
    width: 1px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.1);
}

.menu ul.menu-main > li > a {
    display: block;
    position: relative;
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.menu ul.menu-main > li > a.active, .menu ul.menu-main > li > a:hover {
    color: rgb(255, 204, 0);
}

.menu ul.menu-main li a.has-child {
    padding-right: 16px;
    margin-right: 8px;
}

.menu ul.menu-main li a.has-child::after {
    content: "";
    position: absolute;
    bottom: calc(50% - 2px);
    right: 5px;
    width: 5px;
    height: 5px;
    border-width: 0px 1px 1px 0px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-right-color: rgb(250, 250, 250);
    border-bottom-color: rgb(250, 250, 250);
    border-image: initial;
    border-top-style: initial;
    border-top-color: initial;
    border-left-style: initial;
    border-left-color: initial;
    transform: rotate(45deg);
}

.menu ul.menu-main li ul {
    position: absolute;
    min-width: 250px;
    background-color: rgb(250, 250, 250);
    border-radius: 0.25rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 15px;
    transform: perspective(600px) rotateX(-90deg);
    transform-origin: 0px 0px 0px;
    opacity: 0;
    visibility: hidden;
}

.menu ul.menu-main li:hover > ul {
    transform: perspective(600px) rotateX(0deg);
    transform-origin: 0px 0px 0px;
    opacity: 1;
    visibility: visible;
}

.menu ul.menu-main li ul li {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.menu ul.menu-main li ul li a {
    font-size: 14px;
    color: rgb(49, 49, 49);
    border-bottom: 1px solid rgb(236, 236, 236);
    padding: 10px 0px 9px;
    text-transform: capitalize;
}

.menu ul.menu-main li ul li a.has-child {
    margin-right: 0px;
}

.menu ul.menu-main li ul li a.has-child::after {
    border-color: rgb(49, 49, 49);
    transform: rotate(-45deg);
}

.menu ul.menu-main li ul li a.active {
    color: rgb(236, 45, 63);
}

.menu ul.menu-main li ul li a.active.has-child::after {
    border-color: rgb(236, 45, 63);
}

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

.menu ul.menu-main li ul li:hover > a {
    color: rgb(236, 45, 63);
}

.menu ul.menu-main li ul li:hover > a.has-child::after {
    border-color: rgb(236, 45, 63);
}

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

.active-menu-mobile {
    position: fixed;
    z-index: 999;
    width: 100%;
    background-color: rgb(255, 255, 255);
    top: 0px;
    left: 0px;
    animation: 3s linear 0s 1 normal none running menu-shadow;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.menu-active {
    animation: 0.2s linear 0s 1 normal none running menu-padding;
}

@keyframes menu-padding {
    0% {
        padding: 20px 0px;
        opacity: 0;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    }

    100% {
        padding: 0px;
        opacity: 1;
        box-shadow: none;
    }
}

@keyframes menu-shadow {
    0% {
        box-shadow: none;
    }

    100% {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    }
}

.menu-main-active {
    justify-self: center !important;
}

.search {
    width: 230px;
    background: rgb(255, 255, 255);
}

.search p {
    float: left;
    width: 35px;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
    text-align: center;
    margin: 0px;
    color: rgb(108, 117, 125);
    font-size: 16px;
}

.search input {
    width: calc(100% - 35px);
    height: 35px;
    float: left;
    outline: 0px;
    padding: 0px;
    border: 0px;
    background: 0px 0px;
    text-indent: 10px;
    font-size: 12px;
}

.search input::-webkit-input-placeholder {
    color: rgb(49, 49, 49);
}

.menu-res {
    z-index: 100;
    background: rgb(7, 105, 58);
    position: relative;
    display: none;
}

@media only screen and (max-width: 991px) {
    .menu-res {
        display: block;
    }
}

.menu-bar-res {
    height: 70px;
    padding: 0px 15px;
}

#menu {
    display: none;
}

#hamburger {
    display: block;
    width: 30px;
    height: 23px;
    position: relative;
}

#hamburger span, #hamburger::after, #hamburger::before {
    background: rgb(255, 255, 255);
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0px;
}

#hamburger::before {
    top: 0px;
}

#hamburger span {
    top: 10px;
}

#hamburger::after {
    top: 20px;
}

#hamburger span, #hamburger::after, #hamburger::before {
    transition: transform 0.5s 0.5s, top, bottom, left, opacity;
}

.mm-wrapper_opening #hamburger::after, .mm-wrapper_opening #hamburger::before {
    top: 10px;
}

.mm-wrapper_opening #hamburger span {
    left: -50px;
    opacity: 0;
}

.mm-wrapper_opening #hamburger::before {
    transform: rotate(45deg);
}

.mm-wrapper_opening #hamburger::after {
    transform: rotate(-45deg);
}

.mm-menu_opened {
    display: block !important;
}

.search-res {
    position: relative;
}

.search-res .icon-search {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 42px;
    color: rgb(255, 255, 255);
    font-size: 17px;
    margin: 0px;
}

.search-res .icon-search.active {
    color: rgb(236, 45, 63);
    background: rgb(255, 255, 255);
    border-radius: 100%;
}

.search-res .search-grid {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 0px;
    height: 40px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(236, 45, 63);
    z-index: 2;
    opacity: 0;
    border-radius: 25px;
    line-height: normal;
}

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

.search-res .search-grid input {
    width: calc(100% - 35px);
    float: right;
    line-height: 38px;
    outline: 0px;
    border: none;
    color: rgb(236, 45, 63);
}

.search-res .search-grid input::-webkit-input-placeholder {
    color: rgb(49, 49, 49);
}

.slideshow {
    position: relative;
}

.slideshow-fixed {
    width: 930px;
    max-width: 100%;
    height: 440px;
    margin: 0px 0px 0px auto;
    overflow: hidden;
}

.slideshow-fixed .owl-carousel, .slideshow-fixed .owl-stage-outer, .slideshow-fixed .owl-stage, .slideshow-fixed .owl-item, .slideshow-fixed .slideshow-item, .slideshow-fixed .slideshow-image, .slideshow-fixed .slideshow-image picture, .slideshow-fixed .slideshow-image img {
    width: 100%;
    height: 100%;
}

.slideshow-fixed .slideshow-image img {
    object-fit: cover;
}

@media only screen and (max-width: 930px) {
    .slideshow-fixed {
        height: auto;
        aspect-ratio: 930 / 440;
    }
}

@media only screen and (max-width: 1024px) {
    .slide-home .wrap-content {
        max-width: 100% !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .slideshow-fixed {
        height: auto;
        aspect-ratio: auto;
        width: 100vw !important;
        max-width: 100% !important;
        margin: 0px !important;
    }

    .slideshow-fixed .owl-stage-outer {
        overflow: hidden;
    }

    .slideshow-fixed .slideshow-image img, .slideshow-fixed .slideshow-image picture {
        object-fit: cover;
        width: 100vw !important;
        height: auto !important;
    }

    .slide-home {
        overflow-x: hidden;
    }
}

.slideshow-item {
    display: block;
    cursor: pointer;
}

.slideshow:hover .control-slideshow {
    opacity: 1;
}

.control-slideshow {
    opacity: 0;
}

.info-slide {
    position: absolute;
    inset: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.name-slide {
    font-size: 30px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.desc-slide {
    font-size: 15px;
    color: rgb(255, 255, 255);
    width: 500px;
    margin: 20px 0px;
}

.views-more-slide {
    background-color: var(--background-static);
    width: 120px;
    height: 40px;
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.box-slide.slick-current.slick-active .name-slide {
    animation: 1s ease 0.5s 1 normal forwards running fadeInUp;
}

.box-slide.slick-current.slick-active .desc-slide {
    animation: 1s ease 1s 1 normal forwards running fadeInUp;
}

.box-slide.slick-current.slick-active .views-more-slide {
    animation: 1s ease 1.5s 1 normal forwards running scaleLarge;
}

.slide-text .slick-next, .slide-text .slick-prev {
    width: 40px;
    height: 50px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
}

.slide-text .slick-prev {
    left: 5px;
}

.slide-text .slick-next {
    right: 5px;
}

.slide-text .slick-prev::before {
    font-family: FontAwesome;
    font-weight: 400;
    content: "";
}

.slide-text .slick-next::before {
    font-family: FontAwesome;
    font-weight: 400;
    content: "";
}

.slide-text .slick-dots {
    bottom: 20px;
}

.slide-text .slick-dots li {
    margin: 0px;
}

.slide-text .slick-dots li button::before {
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.control-partner button {
    background-color: transparent;
    color: rgb(34, 34, 34);
    opacity: 1;
    width: 25px;
    font-size: 23px;
}

.control-partner button:hover {
    opacity: 0.7;
}

.control-partner button.owl-prev {
    left: 0px;
}

.control-partner button.owl-next {
    right: 0px;
}

.wrap-partner {
    margin-bottom: 2rem;
}

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

.partner {
    display: block;
    border: 1px solid rgb(238, 238, 238);
    max-width: 175px;
    margin: 0px auto;
}

.breadCrumbs {
    background-color: rgb(238, 238, 238);
}

.breadCrumbs .wrap-content {
    padding: 0.75rem 0px;
}

.breadCrumbs .wrap-content .breadcrumb {
    padding: 0px;
    margin-bottom: 0px;
    background-color: transparent;
    border-radius: 0px;
}

.breadCrumbs .wrap-content .breadcrumb-item a {
    color: rgb(33, 37, 41);
}

.breadCrumbs .wrap-content .breadcrumb-item.active a {
    color: rgb(108, 117, 125);
}

.wrap-intro {
    background-color: rgb(238, 238, 238);
}

.news-intro::before {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% - 50px);
    top: 10px;
    left: 90px;
    background-color: rgb(202, 202, 202);
}

.news-scroll::after, .news-scroll::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    left: 85px;
    border-radius: 100%;
    background-color: rgb(202, 202, 202);
}

.news-scroll::before {
    top: 10px;
}

.news-scroll::after {
    bottom: 40px;
}

.news-control {
    left: 85px;
    font-size: 13px;
    opacity: 0.5;
    z-index: 1;
    cursor: pointer;
}

.news-control:hover {
    opacity: 1;
    color: rgb(236, 45, 63);
}

.news-control#up {
    top: -10px;
}

.news-control#down {
    bottom: 20px;
}

.news-shadow {
    padding-bottom: 30px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.news-shadow .news-shadow-time {
    font-size: 13px;
    width: 75px;
    margin-right: 45px;
}

.news-shadow .news-shadow-time::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    right: -26px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../images/pattern-news.png");
}

.news-shadow .news-shadow-article {
    width: calc(100% - 120px);
    padding: 14px 15px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(206, 202, 187);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.news-shadow .news-shadow-article::before {
    content: "";
    position: absolute;
    top: calc(50% - 13px);
    left: -13px;
    z-index: 0;
    border-top: 13px solid transparent;
    border-right: 13px solid rgb(206, 202, 187);
    border-bottom: 13px solid transparent;
}

.news-shadow .news-shadow-article::after {
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    left: -11px;
    z-index: 1;
    border-top: 12px solid transparent;
    border-right: 11px solid rgb(255, 255, 255);
    border-bottom: 12px solid transparent;
}

.news-shadow .news-shadow-article .news-shadow-image {
    margin-right: 10px;
    width: 90px;
}

.news-shadow .news-shadow-article .news-shadow-info {
    width: calc(100% - 100px);
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name {
    height: 36px;
    font-size: 15px;
    font-weight: 700;
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name a {
    color: rgb(34, 34, 34);
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name a:hover {
    color: rgb(236, 45, 63);
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name a .text-split {
    -webkit-line-clamp: 2;
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-desc {
    height: 38px;
    font-size: 13px;
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-desc.text-split {
    -webkit-line-clamp: 2;
}

.video {
    cursor: pointer;
    margin-bottom: 1rem;
}

.video .video-image {
    position: relative;
    margin-bottom: 0.75rem;
}

.video .video-image::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 35px;
    top: calc(50% - 25px);
    left: calc(50% - 17.5px);
    z-index: 1;
    background-repeat: no-repeat;
    background-image: url("../images/play.png");
}

.video .video-name {
    text-align: center;
    font-size: 16px;
    color: rgb(33, 37, 41);
    margin-bottom: 0px;
}

.album {
    cursor: pointer;
}

.album .album-image {
    margin-bottom: 0.75rem;
}

.album .album-name {
    margin-bottom: 0px;
    text-align: center;
}

.album .album-name a {
    display: block;
    font-size: 16px;
    color: rgb(33, 37, 41);
    margin-bottom: 0px;
}

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

.brand {
    display: block;
    border: 1px solid rgb(238, 238, 238);
    max-width: 160px;
    margin: 0px auto;
}

.wrap-product {
    margin-bottom: 50px;
}

.cart-product {
    margin-bottom: 0px;
}

.cart-product span {
    cursor: pointer;
    color: rgb(255, 255, 255);
    text-transform: capitalize;
    text-align: center;
}

.grid-pro-detail {
    margin-bottom: 3rem;
}

.left-pro-detail {
    position: relative;
    text-align: center;
    width: 45%;
}

.right-pro-detail {
    width: calc(55% - 40px);
}

.left-pro-detail .MagicZoom {
    border: 1px solid rgb(238, 238, 238);
    padding: 7px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
}

.gallery-thumb-pro {
    position: relative;
    margin-top: 10px;
}

.owl-pro-detail {
    padding: 0px;
}

.control-pro-detail button {
    background-color: transparent;
    color: rgb(34, 34, 34);
    opacity: 1;
    width: 25px;
    font-size: 23px;
}

.control-pro-detail button:hover {
    opacity: 0.7;
}

.control-pro-detail button.owl-prev {
    left: 0px;
}

.control-pro-detail button.owl-next {
    right: 0px;
}

.thumb-pro-detail {
    border: 1px solid rgb(238, 238, 238);
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    display: block !important;
}

.thumb-pro-detail.mz-thumb.mz-thumb-selected {
    border-color: rgb(206, 207, 210);
}

.thumb-pro-detail img {
    box-shadow: none !important;
    filter: brightness(100%) !important;
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.title-pro-detail {
    text-transform: capitalize;
    font-size: 20px;
    display: block;
    font-weight: 700;
}

.comment-pro-detail {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.social-plugin-pro-detail {
    margin-bottom: 1rem;
    margin-top: 0px !important;
}

.desc-pro-detail {
    margin-bottom: 1rem;
}

.attr-pro-detail {
    list-style: none;
    padding: 0px;
}

.attr-pro-detail li {
    margin-bottom: 0.5rem;
}

.attr-label-pro-detail {
    margin: 0px 5px 0px 0px;
}

.attr-content-pro-detail {
    display: inline-block;
    margin-bottom: 0px;
}

.brand-pro-detail a {
    background: var(--color-red);
    color: rgb(255, 255, 255);
    border-radius: 2px;
    padding: 2px 5px;
}

.price-new-pro-detail {
    font-weight: 700;
    font-size: 23px;
    color: var(--color-black);
}

.price-old-pro-detail {
    font-weight: 400;
    color: var(--color-gray);
    text-decoration: line-through;
    padding-left: 10px;
}

.color-pro-detail {
    cursor: pointer;
    vertical-align: top;
    position: relative;
    width: 48px;
    height: 32px;
    margin: 0px 8px 5px 0px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    border: 1px solid rgb(218, 218, 218);
    transition: 0.3s;
    border-radius: 2px;
}

.size-pro-detail {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 48px;
    position: relative;
    margin: 0px 8px 0px 0px;
    border: 1px solid rgb(218, 218, 218);
    border-radius: 2px;
    font-size: 12px;
    transition: 0.3s;
}

.color-pro-detail.active, .size-pro-detail.active {
    border-color: var(--color-dark-red);
}

.color-pro-detail.active::after, .size-pro-detail.active::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 13px;
    height: 13px;
    background-repeat: no-repeat;
    background-image: url("../images/check-cart.png");
}

.color-pro-detail input[type="radio"], .size-pro-detail input[type="radio"] {
    display: none;
}

.quantity-pro-detail {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 45px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(223, 223, 223);
}

.quantity-pro-detail span {
    line-height: 25px;
    padding: 0px;
    width: 45px;
    height: 100%;
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
    border-left: 0px;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
    border-right: 0px;
}

.quantity-pro-detail input {
    height: 100%;
    border: none;
    width: calc(100% - 90px);
    text-align: center;
    font-size: 15px;
}

.cart-pro-detail {
    max-width: 400px;
}

.cart-pro-detail a {
    text-align: center;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    cursor: pointer;
    width: calc(50% - 5px);
    height: 45px;
    border-radius: 5px;
}

.cart-pro-detail a.addnow {
    background: rgb(255, 255, 255);
    color: var(--color-red);
}

.cart-pro-detail a.addnow:hover {
    color: rgb(255, 255, 255);
    background: var(--color-red);
}

.cart-pro-detail a.buynow {
    background-color: rgb(51, 51, 51);
}

.cart-pro-detail a.buynow:hover {
    background-color: var(--color-dark-red);
    color: rgb(255, 255, 255);
}

.cart-pro-detail a i {
    vertical-align: top;
    margin-right: 8px;
    font-size: 24px;
    position: relative;
    top: -2px;
}

.tags-pro-detail a {
    float: left;
    font-size: 13px;
    padding-bottom: 0.375rem;
    margin: 0px 5px 5px 0px;
}

.tags-pro-detail a i {
    font-size: 11px;
    margin: 5px 5px 0px 0px;
}

.tabs-pro-detail {
    margin-top: 2rem;
}

.tabs-pro-detail .nav-tabs .nav-link {
    border-top-width: 3px;
    font-size: 13px;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
    font-weight: 500;
}

.tabs-pro-detail .nav-tabs .nav-item.show .nav-link, .tabs-pro-detail .nav-tabs .nav-link.active {
    border-top-color: rgb(85, 85, 85);
}

.pic-news {
    width: 210px;
}

.pic-news img {
    width: 100%;
}

.info-news {
    width: calc(100% - 210px);
    padding-left: 20px;
}

.name-news {
    color: rgb(37, 37, 37);
    font-size: 17px;
    line-height: normal;
    font-weight: 600;
    text-transform: capitalize;
}

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

.name-news:hover {
    color: var(--background-static);
}

.time-news {
    color: var(--color-gray);
    margin-bottom: 10px;
}

.desc-news {
    color: rgb(103, 103, 103);
    margin-top: 5px;
    line-height: 22px;
}

.news .news-name {
    margin-bottom: 0.5rem;
}

.news .news-name a {
    color: rgb(51, 51, 51);
    font-size: 16px;
}

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

.news .news-name a:hover {
    color: rgb(236, 45, 63);
}

.news .news-time {
    color: rgb(132, 135, 138);
    margin-bottom: 0.25rem;
}

.news .news-desc {
    color: rgb(51, 51, 51);
    margin-top: 5px;
    line-height: 22px;
}

.row-news.row-news-knowledge .news-knowledge {
    display: block;
}

.row-news.row-news-knowledge .knowledge-home-card {
    width: 100%;
}

.row-news.row-news-knowledge .knowledge-home-left {
    display: block;
    width: 250px;
    flex: 0 0 250px;
}

.row-news.row-news-knowledge .knowledge-home-left img {
    width: 250px;
    height: 300px;
}

.row-news.row-news-knowledge .knowledge-home-name a {
    color: rgb(51, 51, 51);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.row-news.row-news-knowledge .knowledge-home-name a:hover {
    color: var(--background-static);
}

@media (max-width: 991px) {
    .row-news.row-news-knowledge .knowledge-home-left, .row-news.row-news-knowledge .knowledge-home-left img {
        width: 100%;
    }
}

.othernews b {
    margin-bottom: 10px;
    font-size: 15px;
}

.othernews {
    position: sticky;
    top: 60px;
    z-index: 11;
}

.news-other {
    margin-bottom: 15px;
}

.pic-news-other {
    width: 40%;
}

.info-news-other {
    width: 60%;
    padding-left: 10px;
}

.name-news-other {
    color: rgb(37, 37, 37);
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
}

.name-news-other:hover {
    color: var(--background-static);
}

.customer-feedback-card {
    position: relative;
}

.customer-feedback-pin {
    position: absolute;
    top: 0px;
    left: -5px;
    width: 44px;
    height: auto;
    z-index: 30;
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .customer-feedback-pin {
        position: static;
        width: 36px;
        margin-bottom: 8px;
    }
}

.form-floating-cus > select, .form-floating.form-floating-cus > input {
    height: 45px;
}

.form-floating.form-floating-cus > textarea {
    height: 100px;
}

.form-floating.form-floating-cus > label {
    padding: 10px;
    color: var(--color-gray);
}

.contact-article {
    margin-bottom: 3rem;
}

.contact-input {
    position: relative;
    margin-bottom: 20px;
}

.contact-input input, .contact-input textarea {
    border-radius: 0px;
    border-top: none;
    border-left: none;
    border-right: none;
}

.contact-input input:focus, .contact-input textarea:focus {
    box-shadow: none;
    outline: 0px;
}

.contact-input textarea {
    resize: none;
    height: 150px;
}

.contact-input .custom-file-label::after {
    content: attr(title);
}

.contact-map {
    position: relative;
    height: 500px;
}

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

.newsletter-slogan {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
}

.form-newsletter {
    height: 45px;
    display: flex;
}

.newsletter-input {
    position: relative;
    height: 100%;
    width: calc(100% - 60px);
}

.newsletter-input input {
    border-radius: 0px;
    height: 100%;
    width: 100%;
}

.newsletter-button {
    width: 60px;
}

.newsletter-button input[type="submit"] {
    border: 0px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    height: 100%;
    border-radius: 0px;
    background: var(--background-static);
    width: 100%;
}

.name-company {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-plugin {
    margin-top: 10px;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.social-plugin .at-share-btn {
    margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
    margin-left: 3px;
}

.pagination-home .pagination .page-item .page-link {
    color: rgb(85, 85, 85);
    font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
    color: rgb(255, 255, 255);
    background-color: rgb(85, 85, 85);
    border-color: rgb(85, 85, 85);
}

.pagination-ajax {
    text-align: center;
}

.pagination-ajax a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 3px 3px;
    width: 35px;
    height: 35px;
    line-height: 33px;
    border: 1px solid rgb(230, 230, 230);
    font-size: 13px;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    color: rgb(102, 102, 102) !important;
    text-decoration: none !important;
}

.pagination-ajax a.current, .pagination-ajax a:hover {
    border-color: rgb(236, 45, 63);
    background-color: rgb(236, 45, 63);
    color: rgb(255, 255, 255) !important;
}

.pagination-ajax a.first, .pagination-ajax a.last, .pagination-ajax a.next, .pagination-ajax a.prev {
    text-indent: -9999px;
    position: relative;
    background-color: rgb(255, 255, 255) !important;
}

.pagination-ajax a.first::before, .pagination-ajax a.last::before, .pagination-ajax a.next::before, .pagination-ajax a.prev::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
}

.pagination-ajax a.first::before {
    background-image: url("../images/page-first.png");
}

.pagination-ajax a.last::before {
    background-image: url("../images/page-last.png");
}

.pagination-ajax a.prev::before {
    background-image: url("../images/page-prev.png");
}

.pagination-ajax a.next::before {
    background-image: url("../images/page-next.png");
}

#popup .modal-body {
    padding: 0px;
}

.grecaptcha-badge {
    overflow: hidden;
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    visibility: hidden !important;
}

coccocgrammar {
    display: none;
}

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

.btn-frame .kenit-alo-circle-fill, .carousel-comment-media .carousel-control a span, .control-owl button, .menu ul li a.has-child::after, .menu ul li ul, .menu ul li:hover > ul, .scale-img img, .scale-img:hover > img, .support-online .kenit-alo-circle-fill, .transition {
    transition: 0.3s;
}

.scale-img {
    overflow: hidden;
    display: block;
}

.scale-img img {
    transform: scale(1, 1);
}

.scale-img:hover > img {
    transform: scale(1.1, 1.1);
}

.blink {
    animation-name: blink;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.btn-frame {
    width: 44px;
    height: 44px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-frame i img {
    max-width: 100%;
    height: 100%;
}

.btn-frame i img {
    filter: brightness(0) saturate(100%) invert(29%) sepia(50%) saturate(530%) hue-rotate(117deg) brightness(90%) contrast(95%);
}

.btn-frame i {
    position: relative;
    text-align: center;
    width: 44px;
    height: 44px;
    line-height: 44px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 2px 5px 0px;
    border-radius: 500px;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.btn-frame .kenit-alo-circle {
    width: 60px;
    height: 60px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgb(43, 210, 187);
    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;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    background-color: rgba(0, 255, 64, 0.52);
    opacity: 0.4;
}

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

.ContactUs ul li {
    margin-bottom: 35px;
}

.ContactUs {
    position: fixed;
    bottom: 50px;
    z-index: 999;
    right: 20px;
    top: auto !important;
}

.ContactUs ul.list-unstyled {
    display: flex;
    flex-direction: column-reverse;
}

.ContactUs__chatBotOnly {
    position: fixed;
    bottom: 1.5em;
    right: 1.5em;
    padding: 0px;
    z-index: 999997;
    background: 0px 0px;
}

.ContactUs__chatBotOnly .ContactUs__icon {
    width: 4.5em;
    height: 4.5em;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 10px;
}

.ContactUs__button {
    color-scheme: unset;
    forced-color-adjust: unset;
    math-depth: unset;
    position: relative;
    position-anchor: unset;
    text-size-adjust: unset;
    appearance: unset;
    color: rgb(0, 0, 0);
    font-family: unset;
    font-feature-settings: unset;
    font-kerning: unset;
    font-language-override: unset;
    font-optical-sizing: unset;
    font-palette: unset;
    font-size: unset;
    font-size-adjust: unset;
    font-stretch: unset;
    font-style: unset;
    font-synthesis: unset;
    font-variant: unset;
    font-variation-settings: unset;
    font-weight: 600;
    position-area: unset;
    text-orientation: unset;
    text-rendering: unset;
    text-spacing-trim: unset;
    -webkit-font-smoothing: unset;
    -webkit-locale: unset;
    -webkit-text-orientation: unset;
    -webkit-writing-mode: unset;
    writing-mode: unset;
    zoom: unset; accent-color: unset;
    align-content: unset;
    align-items: center;
    place-self: unset;
    alignment-baseline: unset;
    anchor-name: unset;
    anchor-scope: unset;
    animation-composition: unset;
    animation: unset;
    animation-trigger: unset;
    app-region: unset;
    aspect-ratio: unset;
    backdrop-filter: unset;
    backface-visibility: unset;
    background: rgb(255, 189, 57);
    background-blend-mode: unset;
    baseline-shift: unset;
    baseline-source: unset;
    block-size: unset;
    border-block: unset; border: 2px solid rgb(255, 189, 57);
    border-radius: 10px;
    border-collapse: unset;
    border-end-end-radius: unset;
    border-end-start-radius: unset;
    border-inline: unset; border-start-end-radius: unset;
    border-start-start-radius: unset;
    inset: unset;
    box-decoration-break: unset;
    box-shadow: unset;
    box-sizing: unset;
    break-after: unset;
    break-before: unset;
    break-inside: unset;
    buffered-rendering: unset;
    caption-side: unset;
    caret-animation: unset;
    caret-color: unset;
    caret-shape: unset;
    clear: unset;
    clip: unset;
    clip-path: unset;
    clip-rule: unset;
    color-interpolation: unset;
    color-interpolation-filters: unset;
    color-rendering: unset;
    columns: unset;
    column-fill: unset;
    gap: unset;
    column-rule: unset;
    column-span: unset;
    contain: unset;
    contain-intrinsic-block-size: unset;
    contain-intrinsic-size: unset;
    contain-intrinsic-inline-size: unset;
    container: unset;
    content: unset;
    content-visibility: unset;
    corner-shape: unset;
    corner-block-end-shape: unset;
    corner-block-start-shape: unset;
    counter-increment: unset;
    counter-reset: unset;
    counter-set: unset;
    cursor: unset;
    cx: unset;
    cy: unset;
    d: unset;
    display: flex;
    dominant-baseline: unset;
    dynamic-range-limit: unset;
    empty-cells: unset;
    field-sizing: unset;
    fill: unset;
    fill-opacity: unset;
    fill-rule: unset;
    filter: unset;
    flex: unset;
    flex-flow: unset;
    float: unset;
    flood-color: unset;
    flood-opacity: unset;
    grid: unset;
    grid-area: unset;
    height: unset;
    hyphenate-character: unset;
    hyphenate-limit-chars: unset;
    hyphens: unset;
    image-orientation: unset;
    image-rendering: unset;
    initial-letter: unset;
    inline-size: unset;
    inset-block: unset;
    inset-inline: unset;
    interactivity: unset;
    interest-delay: unset;
    interpolate-size: unset;
    isolation: unset;
    justify-content: space-between;
    justify-items: unset;
    letter-spacing: unset;
    lighting-color: unset;
    line-break: unset;
    line-height: unset;
    list-style: unset;
    margin-block: unset; margin: unset;
    margin-inline: unset; marker: unset;
    mask: unset;
    mask-type: unset;
    math-shift: unset;
    math-style: unset;
    max-block-size: unset;
    max-height: unset;
    max-inline-size: unset;
    max-width: unset;
    min-block-size: unset;
    min-height: unset;
    min-inline-size: unset;
    min-width: unset;
    mix-blend-mode: unset;
    object-fit: unset;
    object-position: unset;
    object-view-box: unset;
    offset: unset;
    opacity: unset;
    order: unset;
    orphans: unset;
    outline: unset;
    outline-offset: unset;
    overflow-anchor: unset;
    overflow-block: unset;
    overflow-clip-margin: unset;
    overflow-inline: unset;
    overflow-wrap: unset;
    overflow: unset;
    overlay: unset;
    overscroll-behavior-block: unset;
    overscroll-behavior-inline: unset;
    overscroll-behavior: unset;
    padding-block: unset; padding: 6px;
    padding-inline: unset; page: unset;
    page-orientation: unset;
    paint-order: unset;
    perspective: unset;
    perspective-origin: unset;
    pointer-events: unset;
    position-try: unset;
    position-visibility: unset;
    print-color-adjust: unset;
    quotes: unset;
    r: unset;
    reading-flow: unset;
    reading-order: unset;
    resize: unset;
    rotate: unset;
    ruby-align: unset;
    ruby-position: unset;
    rx: unset;
    ry: unset;
    scale: unset;
    scroll-behavior: unset;
    scroll-initial-target: unset;
    scroll-margin-block: unset;
    scroll-margin: unset;
    scroll-margin-inline: unset;
    scroll-marker-group: unset;
    scroll-padding-block: unset;
    scroll-padding: unset;
    scroll-padding-inline: unset;
    scroll-snap-align: unset;
    scroll-snap-stop: unset; scroll-snap-type: unset;
    scroll-target-group: unset;
    scroll-timeline: unset;
    scrollbar-color: unset;
    scrollbar-gutter: unset;
    scrollbar-width: unset;
    shape-image-threshold: unset;
    shape-margin: unset;
    shape-outside: unset;
    shape-rendering: unset;
    size: unset;
    speak: unset;
    stop-color: unset;
    stop-opacity: unset;
    stroke: unset;
    stroke-dasharray: unset;
    stroke-dashoffset: unset;
    stroke-linecap: unset;
    stroke-linejoin: unset;
    stroke-miterlimit: unset;
    stroke-opacity: unset;
    stroke-width: unset;
    tab-size: unset;
    table-layout: unset;
    text-align: unset;
    text-align-last: unset;
    text-anchor: unset;
    text-autospace: unset;
    text-box: unset;
    text-combine-upright: unset;
    text-decoration: unset;
    text-decoration-skip-ink: unset;
    text-emphasis: unset;
    text-emphasis-position: unset;
    text-indent: unset;
    text-justify: unset;
    text-overflow: unset;
    text-shadow: unset;
    text-transform: unset;
    text-underline-offset: unset;
    text-underline-position: unset;
    text-wrap: unset;
    timeline-scope: unset;
    timeline-trigger: unset;
    touch-action: unset;
    transform: unset;
    transform-box: unset;
    transform-origin: unset;
    transform-style: unset;
    transition: 0.35s;
    translate: unset;
    trigger-scope: unset;
    user-select: unset;
    vector-effect: unset;
    vertical-align: unset;
    view-timeline: unset;
    view-transition-class: unset;
    view-transition-group: unset;
    view-transition-name: unset;
    visibility: unset;
    border-spacing: unset;
    -webkit-box-align: unset;
    -webkit-box-decoration-break: unset;
    -webkit-box-direction: unset;
    -webkit-box-flex: unset;
    -webkit-box-ordinal-group: unset;
    -webkit-box-orient: unset;
    -webkit-box-pack: unset;
    -webkit-box-reflect: unset;
    -webkit-line-break: unset;
    -webkit-line-clamp: unset;
    -webkit-mask-box-image: unset;
    -webkit-rtl-ordering: unset;
    -webkit-ruby-position: unset;
    -webkit-tap-highlight-color: unset;
    -webkit-text-combine: unset;
    -webkit-text-decorations-in-effect: unset;
    -webkit-text-fill-color: unset;
    -webkit-text-security: unset;
    -webkit-text-stroke: unset;
    -webkit-user-drag: unset;
    white-space-collapse: unset;
    widows: unset;
    width: unset;
    will-change: unset;
    word-break: unset;
    word-spacing: unset;
    x: unset;
    y: unset;
    z-index: unset;
}

.ContactUs__button span {
    position: relative;
    z-index: 1;
    user-select: none;
}

.scrollToTop i {
    transform: rotate(-90deg);
    font-size: 20px;
}

.scrollToTop {
    right: 12px;
    bottom: 196px;
    cursor: pointer;
    height: 44px;
    width: 44px;
    background-color: rgb(0, 0, 0);
    line-height: 36px;
    border-radius: 100%;
    font-size: 30px;
    transition: 0.3s ease-out;
    transform: translateY(-120px);
    opacity: 0;
    visibility: hidden;
    text-align: center;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: auto !important;
    color: rgb(255, 255, 255) !important;
}

.scrollToTop:hover {
    filter: brightness(1.3);
}

.scrollToTop.show {
    z-index: 999;
    transition: transform 0.3s ease-out;
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.btn-zalo {
    bottom: 315px;
}

.btn-phone {
    bottom: 230px;
}

.js-facebook-messenger-top-header {
    background: rgb(72, 125, 252);
    color: rgb(255, 255, 255);
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
}

.js-facebook-messenger-container.closed {
    display: none !important;
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px;
    color: rgb(64, 64, 64);
    background: rgb(255, 255, 255);
}

.js-facebook-messenger-tooltip.closed {
    display: none !important;
}

.js-facebook-messenger-box, .js-facebook-messenger-button {
    z-index: 999;
}

.js-facebook-messenger-tooltip {
    display: none;
    position: fixed;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2pt 10pt;
    z-index: 2147483647;
}

.js-facebook-messenger-close-tooltip {
    width: 10px;
    height: 10px;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
}

.js-facebook-messenger-box {
    z-index: 999;
}

.js-facebook-messenger-box.rubberBand {
    animation-name: rubberBand;
}

.js-facebook-messenger-box.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999;
}

.js-facebook-messenger-box {
    display: block;
    position: fixed;
    cursor: pointer;
    bottom: 150px;
    right: 17px;
    width: 56px;
    height: 56px;
    text-align: center;
    background: rgb(17, 130, 252);
    border-radius: 100%;
    overflow: hidden;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.3) 1px 1px 4px 0px;
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
    transform: rotate(0deg);
}

.js-facebook-messenger-box svg#fb-msng-icon {
    width: 32px;
    height: 33px;
    position: absolute;
    top: 13px;
    left: 12px;
    opacity: 1;
    overflow: hidden;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
    transform: rotate(-45deg);
}

.js-facebook-messenger-box svg#close-icon {
    opacity: 0;
    width: 19px;
    height: 20px;
    position: absolute;
    top: 19px;
    left: 19px;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000;
}

.js-facebook-messenger-container {
    width: 250px;
    position: fixed;
    opacity: 0;
    transform: translateY(50px);
    bottom: 110px;
    right: 90px;
    border-radius: 10px;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 6px, rgba(0, 0, 0, 0.16) 0px 2px 32px;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-top-head {
    display: block;
    position: relative;
    width: 220px;
    background: rgb(17, 130, 252);
    color: rgb(255, 255, 255);
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.js-facebook-messenger-container iframe, .js-facebook-messenger-container-button iframe {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999;
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000;
}

.js-facebook-messenger-top-head {
    color: rgb(255, 255, 255);
    background: rgb(17, 130, 252);
    width: 220px;
}

.js-facebook-messenger-tooltip {
    color: rgb(64, 64, 64);
    background: rgb(255, 255, 255);
}

.js-facebook-messenger-container.open {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px;
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
    opacity: 0;
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
    transform: rotate(0deg);
}

.js-facebook-messenger-box.open svg#close-icon {
    opacity: 1;
}

.cart-fixed {
    position: fixed;
    right: 20px;
    bottom: 390px;
    z-index: 10;
    background: rgb(75, 79, 86);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: rgb(255, 255, 255) !important;
}

.cart-fixed i {
    font-size: 20px;
}

.cart-fixed span {
    position: absolute;
    top: 0px;
    right: -5px;
    color: rgb(255, 255, 255);
    width: 25px;
    height: 25px;
    background: rgb(236, 45, 63);
    text-align: center;
    line-height: 25px;
    font-size: 11px;
    border-radius: 100%;
}

@keyframes tada {
    0% {
        transform: scaleX(1);
    }

    10%, 20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        transform: scale3d(1.3, 1.3, 1.3) rotate(3deg);
    }

    40%, 60%, 80% {
        transform: scale3d(1.3, 1.3, 1.3) rotate(-3deg);
    }

    100% {
        transform: scaleX(1);
    }
}

.toolbar {
    background: var(--background-static);
    width: 100%;
    padding: 3vw;
    bottom: 0px;
    position: fixed;
    z-index: 500;
    height: auto;
    left: 0px;
    max-height: 65px;
}

.toolbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
}

.toolbar ul li {
    text-align: center;
    width: 25%;
}

.toolbar ul li a {
    display: block;
    width: 100%;
    cursor: pointer;
}

.toolbar ul li a img {
    height: 20px;
    width: 20px;
    animation: 1.2s ease 0s infinite normal none running tada;
}

.toolbar ul li a span {
    color: rgb(255, 255, 255);
    font-size: 10px;
}

.fixbar {
    bottom: 0px;
    display: block;
    background: rgb(240, 239, 244);
    border-top: 1px solid rgb(221, 221, 221);
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    margin: 0px;
    z-index: 500;
    backface-visibility: hidden;
    height: 50px;
}

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

.fixbar ul li {
    margin: 0px auto 10px;
    text-align: center;
    width: 25%;
    float: left;
}

.fixbar .icon-cart-mobile, .fixbar .icon-cart-new, .fixbar .icon-home-new, .fixbar .icon-hotdeal-new {
    width: 20px;
    height: 20px;
    display: block;
    margin: 8px auto 0px;
}

.fixbar .icon-cart-mobile {
    background: url("../images/cart-mobile.png") no-repeat;
}

.cart-total-head-mobile {
    font-size: 10px;
    position: absolute;
    background: red;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    line-height: 15px;
    top: 5px;
    margin-left: 5px;
    color: rgb(255, 255, 255) !important;
}

.fixbar ul li a {
    font-size: 11px;
    text-decoration: none;
    color: rgb(51, 51, 51);
}

.fixbar ul li a i {
    font-size: 20px;
}

.plugbar {
    position: fixed;
    bottom: 0px;
    left: 0px;
    border-top: 1px solid rgb(234, 230, 230);
    width: 100%;
    right: 0px;
    max-width: 767px;
    margin: 0px auto;
    background: rgb(255, 255, 255);
    padding: 9px 10px 10px 7px;
    z-index: 10;
}

.plugbar ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.plugbar ul li {
    width: 20%;
    float: left;
}

.plugbar ul li a {
    display: block;
    color: rgb(105, 105, 105);
    font-size: 12px;
    text-align: center;
    position: relative;
}

.plugbar ul li a i {
    font-size: 20px;
    color: rgb(105, 105, 105);
}

.plugbar ul li a span {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -40px;
    left: calc(50% - 25px);
    font-size: 14px;
    display: block;
    border: 1px solid rgba(234, 230, 230, 0.5);
    border-radius: 100%;
}

.support-online {
    position: fixed;
    z-index: 999;
    left: 10px;
    bottom: 0px;
}

.support-online a {
    position: relative;
    margin: 20px 10px;
    text-align: left;
    width: 40px;
    height: 40px;
}

.support-online i {
    width: 40px;
    height: 40px;
    background: rgb(67, 161, 243);
    color: rgb(255, 255, 255);
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    line-height: 1.9;
    position: relative;
    z-index: 999;
}

.support-online a {
    display: block;
}

.support-online a span {
    border-radius: 2px;
    text-align: center;
    background: rgb(103, 182, 52);
    padding: 9px;
    display: none;
    width: 180px;
    margin-left: 10px;
    position: absolute;
    color: rgb(255, 255, 255);
    z-index: 999;
    top: 0px;
    left: 40px;
    transition: 0.2s ease-in-out;
    animation: 0.7s ease 0s 1 normal none running headAnimation;
}

.support-online a:hover span {
    display: block;
}

.support-online a span::before {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px 10px 10px 0px;
    border-color: transparent rgb(103, 182, 52) transparent transparent;
    position: absolute;
    left: -10px;
    top: 10px;
}

.support-online .kenit-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -10px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    background-color: rgba(0, 175, 242, 0.5);
    opacity: 0.75;
    right: -10px;
}

.support-online .kenit-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgb(0, 137, 185);
    opacity: 0.5;
}

.support-online .support-online .btn-support {
    cursor: pointer;
}

.support-online .mes i {
    background: orange;
}

.support-online .sms i {
    background: red;
}

.support-online .call-now i {
    background: green;
}

.widget-mobile {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    z-index: 9999999;
}

#my-phone-circle {
    position: relative;
    width: 50px !important;
    height: 50px !important;
}

.wcircle-open .wcircle-icon i::before {
    content: "";
}

.wcircle-icon {
    background: rgb(18, 130, 252);
    border-radius: 50%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative !important;
}

.wcircle-icon::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    background: rgba(18, 130, 252, 0.5);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
    left: -5px;
    top: -5px;
    animation: 1s ease-in-out 0s infinite normal none running pulse;
}

.wcircle-icon::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    background: rgba(18, 130, 252, 0.5);
    border-radius: 50%;
    left: -15px;
    top: -15px;
    animation: 2s ease-in-out 0s infinite normal none running zoomIn;
}

.wcircle-menu {
    left: 0px;
    top: 0px;
    display: none;
    position: absolute !important;
}

.wcircle-menu-item {
    width: 50px;
    height: 50px;
    background: rgb(18, 130, 252);
    border-radius: 50%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.wcircle-menu-item img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
}

.wcircle-menu-item i {
    font-size: 25px;
    color: rgb(255, 255, 255);
    position: relative;
    z-index: 9999;
}

.wcircle-icon i {
    font-size: 25px;
    color: rgb(255, 255, 255);
    position: relative;
    z-index: 9999;
}

.shake-anim {
    animation: 1s ease-in-out 0s infinite normal none running shake-anim;
    transform-origin: 50% 50%;
}

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

a.name-newsnb {
    color: rgb(0, 0, 0);
    font-size: 14px;
    margin: 0px 0px 10px;
    line-height: normal;
}

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

a.name-newsnb:hover {
    color: var(--color-dark-red);
}

.desc-newsnb {
    color: rgb(51, 51, 51);
}

.video-main {
    position: relative;
    height: 400px;
}

.video-main iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.listvideos {
    width: 100%;
    height: 40px;
    padding: 0px 10px;
    border: 1px solid rgb(204, 204, 204);
    color: var(--color-black);
    margin-top: 10px;
    cursor: pointer;
}

.item-video1 img {
    max-height: 292px;
}

.item-video2 img {
    height: 102px;
}

.pic-video {
    position: relative;
    cursor: pointer;
}

.pic-video::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 35px;
    top: calc(50% - 25px);
    left: calc(50% - 17.5px);
    z-index: 1;
    background: url("../images/play.png") center center / cover no-repeat;
    cursor: pointer;
}

.pic-video img {
    width: 100%;
}

.pic-video-2 {
    position: relative;
    cursor: pointer;
}

.pic-video-2::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 35px;
    top: calc(50% - 25px);
    left: calc(50% - 17.5px);
    z-index: 1;
    background: url("../images/play.png") center center / cover no-repeat;
    cursor: pointer;
}

.pic-video-2 img {
    width: 100%;
}

.name-video {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 0px;
}

.owl-video {
    margin-top: 10px;
}

.newshome-intro .name-newshome {
    margin: 10px 0px;
}

.newshome-intro .view-newshome {
    margin-top: 10px;
}

.newshome-scroll {
    width: 50%;
    overflow: hidden;
    max-height: 406px;
}

.news-slick {
    display: flex;
    margin-bottom: 20px;
}

.news-slick h3 {
    margin: 0px;
}

.news-slick h3 a.name-newshome {
    margin-bottom: 10px;
}

.news-slick .img {
    width: 150px;
}

.news-slick .info {
    width: calc(100% - 150px);
    padding-left: 15px;
}

.flex_ttnb {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.newshome-intro {
    width: calc(50% - 20px);
}

.pic-newshome-normal {
    float: left;
    width: 34%;
    margin-right: 3%;
    margin-bottom: 0px;
}

.pic-newshome-normal img {
    width: 100%;
}

.info-newshome-normal {
    float: left;
    width: calc(63%);
}

.name-newshome {
    color: var(--color-black);
    font-size: 14px;
    line-height: normal;
}

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

.name-newshome.text-split a {
    color: rgb(0, 0, 0);
}

.time-newshome {
    color: var(--color-gray);
    margin-bottom: 10px;
}

.desc-newshome {
    color: var(--color-black);
    margin-bottom: 0px;
    text-align: justify;
}

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

.view-newshome {
    width: 140px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(204, 204, 204);
    color: rgb(0, 0, 0);
}

.view-newshome:hover {
    color: rgb(0, 0, 0);
}

.box-product {
    position: relative;
    margin-bottom: 20px;
}

.pic-product {
    background: rgb(255, 255, 255);
    position: relative;
    margin-bottom: 1rem;
}

.pic-product img {
    width: 100%;
}

.product-tool {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 0px;
    z-index: 1;
}

.product-tool a {
    cursor: pointer;
    width: 50%;
    padding: 10px;
    text-align: center;
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.6);
}

.product-tool a:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.product-tool a svg {
    margin-right: 5px;
}

.product-tool a span {
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 300;
}

.box-product:hover .product-tool {
    opacity: 1;
    visibility: visible;
}

.name-product {
    font-size: 14px;
    color: var(--color-black);
    margin-bottom: 10px;
}

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

.price-product {
    margin-bottom: 10px;
}

.price-new {
    font-size: 15px;
    color: var(--color-red);
    font-weight: 700;
}

.price-old {
    padding-left: 10px;
    color: var(--color-gray);
    text-decoration: line-through;
}

.price-per {
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgb(255, 255, 255);
    background: var(--color-red);
    font-size: 11px;
    border-radius: 2px;
    width: 45px;
    height: 25px;
    text-align: center;
    line-height: 25px;
}

.cart-product {
    margin-bottom: 0px;
}

.cart-product span {
    cursor: pointer;
    width: calc(50% - 3px);
    color: rgb(255, 255, 255);
    text-transform: capitalize;
    text-align: center;
    padding: 7px 5px;
    border-radius: 3px;
}

.cart-add {
    background-color: var(--color-red);
}

.cart-add:hover {
    background-color: var(--color-dark-red);
}

.cart-buy {
    background-color: var(--color-green);
}

.cart-buy:hover {
    background-color: var(--color-dark-green);
}

.dm-noibat {
    max-width: 1000px;
    position: relative;
    margin: auto auto 40px;
}

.dm-noibat a {
    cursor: pointer;
    color: rgb(51, 51, 51);
    transition: 0.4s;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    position: relative;
    display: block;
    background: rgb(247, 247, 247);
    border-radius: 5px;
    border: 1px solid rgb(234, 234, 234);
    height: 100%;
    padding: 10px;
}

.dm-noibat a.active, .dm-noibat a:hover {
    background: var(--background-static);
    color: rgb(255, 255, 255);
}

.cats-bar {
    width: 50px;
    padding-top: 3px;
    position: relative;
}

.cats-bar-icon {
    width: 30px;
    cursor: pointer;
}

.cats-bar-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgb(80, 80, 80);
    transition: 0.3s;
    position: relative;
}

.cats-bar-icon span + span {
    margin-top: 5px;
}

.cats-bar-icon.active span:nth-child(1) {
    animation: 0.7s ease 0s 1 normal forwards running top;
}

.cats-bar-icon.not-active span:nth-child(1) {
    animation: 0.7s ease 0s 1 normal forwards running top-2;
}

.cats-bar-icon.active span:nth-child(2) {
    animation: 0.7s ease 0s 1 normal forwards running scaled;
}

.cats-bar-icon.not-active span:nth-child(2) {
    animation: 0.7s ease 0s 1 normal forwards running scaled-2;
}

.cats-bar-icon.active span:nth-child(3) {
    animation: 0.7s ease 0s 1 normal forwards running bottom;
}

.cats-bar-icon.not-active span:nth-child(3) {
    animation: 0.7s ease 0s 1 normal forwards running bottom-2;
}

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

    50% {
        top: 6px;
        transform: rotate(0deg);
    }

    100% {
        top: 6px;
        transform: rotate(45deg);
    }
}

@keyframes top-2 {
    0% {
        top: 6px;
        transform: rotate(45deg);
    }

    50% {
        top: 6px;
        transform: rotate(0deg);
    }

    100% {
        top: 0px;
        transform: rotate(0deg);
    }
}

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

    50% {
        bottom: 8px;
        transform: rotate(0deg);
    }

    100% {
        bottom: 8px;
        transform: rotate(135deg);
    }
}

@keyframes bottom-2 {
    0% {
        bottom: 8px;
        transform: rotate(135deg);
    }

    50% {
        bottom: 8px;
        transform: rotate(0deg);
    }

    100% {
        bottom: 0px;
        transform: rotate(0deg);
    }
}

@keyframes scaled {
    50% {
        transform: scale(0);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes scaled-2 {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.cats-owl.list-hot {
    width: calc(100% - 50px);
}

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

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

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

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

.choose_list span {
    text-transform: capitalize;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding: 0px 10px;
}

.choose_list span:last-child::after {
    display: none;
}

.choose_list span::after {
    content: "";
    width: 1px;
    height: 10px;
    background: rgb(221, 221, 221);
    position: absolute;
    right: 0px;
    top: 6px;
}

.choose_list span.choosed {
    color: red;
}

.btn_sp a {
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    background: rgb(230, 230, 230);
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.btn_sp a:hover {
    color: red;
}

.d-title-choose-list {
    margin-bottom: 20px;
    border: 1px solid rgb(221, 221, 221);
    padding: 5px;
}

.div-datlich {
    width: 46%;
}

.newsletter-booking {
    margin-bottom: 5px;
}

.newsletter-booking input {
    border-radius: 0px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid var(--background-static);
    background: 0px 0px;
    padding: 0px;
}

.newsletter-booking textarea {
    border-radius: 0px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid var(--background-static);
    background: 0px 0px;
    margin-bottom: 10px;
    padding: 0px;
}

.newsletter-checkbox input {
    outline: 0px;
    width: 15px;
    height: 15px;
}

.label-checkbox {
    color: rgb(126, 126, 126);
    position: relative;
    top: 1px;
    margin-left: 10px;
}

.booking-button input {
    width: 86px;
    height: 37px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-transform: capitalize;
}

.khung-datlich {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border: 1px solid var(--background-static);
    border-radius: 20px;
}

.desc-dongy {
    color: rgb(126, 126, 126);
    font-size: 13px;
    font-style: italic;
    margin-top: 5px;
}

.btn-datlich {
    position: fixed;
    bottom: 455px;
    right: 10px;
    padding: 10px;
    border-radius: 5px;
    z-index: 99;
    background: rgb(51, 51, 51);
    color: rgb(255, 255, 255);
    font-size: 14px;
    text-align: center;
    text-decoration: none !important;
}

.btn-datlich i {
    font-size: 20px;
}

.btn-datlich:hover {
    color: rgb(255, 255, 0);
    transition: 0.2s;
}

@media (max-width: 1024px) {
    .contact-input {
        margin-bottom: 15px;
    }

    .flex-cus, .row-20, .row-video {
        margin-left: -5px;
        margin-right: -5px;
    }

    .col-20, .mg-cus, .mg-video {
        padding-left: 5px;
        padding-right: 5px;
    }

    .content-text img {
        height: auto !important;
    }

    .padding-top-bottom {
        padding: 2rem 0px;
    }

    .pad-top {
        padding-top: 2rem;
    }

    .pad-bottom {
        padding-bottom: 2rem;
    }

    .mg-top {
        margin-top: 2rem;
    }

    .mg-bottom {
        margin-bottom: 2rem;
    }

    .title-detail-main {
        font-size: 20px;
    }

    .cart-fixed {
        bottom: 220px;
    }

    .cart-pro-detail {
        width: 100%;
        margin-top: 10px;
    }

    .pad-bottom {
        padding-bottom: 2rem !important;
    }

    .pad-top {
        padding-top: 2rem !important;
    }

    .padding-top-bottom {
        padding: 2rem 0px !important;
    }

    .menu {
        display: none;
    }

    .menu-res {
        display: block;
    }

    .product-tool {
        opacity: 1;
        visibility: visible;
        position: initial;
    }

    .product-tool a span {
        display: none;
    }
}

@media (max-width: 992px) {
    .othernews {
        position: initial;
    }

    #fanpage-facebook {
        width: 300px;
        overflow: hidden;
        margin: auto;
    }

    .time-news {
        display: none;
    }

    .copyright, .statistic {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .item-video1 img {
        height: 250px;
    }

    .right-intro {
        width: 100%;
    }

    .left-intro {
        width: 100%;
        margin-bottom: 20px;
        padding-right: 0px;
    }

    .left-pro-detail, .right-pro-detail {
        width: 100%;
        margin: 0px;
    }

    .left-pro-detail, .top-contact .article-contact {
        margin-bottom: 30px;
    }

    .pic-news {
        width: 40%;
    }

    .info-news {
        width: 60%;
        padding-left: 10px;
    }

    .name-news {
        font-size: 15px;
    }

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

@media (max-width: 576px) {
    .toast-cus {
        left: 5px;
        width: calc(100% - 10px);
    }

    .box-readmore {
        width: calc(100% - 5px);
    }

    .newshome-scroll {
        width: 100%;
    }

    .newshome-intro {
        width: 100%;
        margin-bottom: 20px;
    }

    .top-contact .form-contact .button-contact .file-contact span b {
        max-width: 105px;
    }

    .cart-pro-detail {
        flex-wrap: wrap;
    }

    .cart-pro-detail a {
        width: 100%;
        text-align: center;
        margin: 0px !important;
    }

    .cart-pro-detail a:first-child {
        margin-bottom: 5px !important;
    }
}

.slide-home {
    background: rgb(245, 245, 245);
}

@media (max-width: 767px) {
    .slide-home {
        padding: 20px 0px 0px;
    }
}

.about-us-home {
    padding: 65px 0px;
}

.about-us-home-container {
    display: flex;
    align-items: center;
    justify-content: start;
}

.about-us-home-left {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about-us-home-company {
    font-size: 12px;
    font-weight: bold;
    width: 150px;
    height: 35px;
    border: 1px solid rgb(7, 105, 58);
    background: rgb(255, 255, 255);
    border-radius: 1212px;
    color: rgb(7, 105, 58);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 10%;
    margin-bottom: 18px;
}

.about-us-home-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 13px;
    color: rgb(51, 51, 51);
    line-height: 45px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .about-us-home-title {
        font-size: 24px;
    }

    .about-us-home-right {
        display: none !important;
    }

    .about-us-home {
        padding: 20px 0px;
    }
}

.about-us-home-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: rgb(137, 137, 137);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    padding: 12px 29px;
    border-left: 3px solid rgb(7, 105, 58);
    max-width: 480px;
}

.explore-more {
    align-items: center;
    display: flex;
    justify-content: end;
    gap: 21px;
    width: 235px;
    height: 60px;
    border: 1.5px solid rgb(7, 105, 58);
    border-radius: 1212px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(7, 105, 58);
    text-decoration: none;
    padding: 0px 8px;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s;
    margin-top: 42px;
}

.explore-more::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 100%;
    background: rgb(7, 105, 58);
    transition: width 0.4s;
    z-index: -1;
}

.explore-more:hover::before {
    width: 100%;
}

.explore-more:hover {
    color: rgb(255, 255, 255);
}

.explore-more:hover .icon {
    background: rgb(255, 255, 255);
}

.explore-more:hover .icon img {
    filter: invert(1);
}

.explore-more .icon {
    width: 47px;
    height: 47px;
    background: rgb(7, 105, 58);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.explore-more .icon img {
    width: 13px;
    height: 12px;
    transition: filter 0.3s;
}

.about-us-home-right {
    width: 55%;
    position: relative;
}

.about-us-gallery-layered {
    position: relative;
    width: 620px;
    max-width: 100%;
    height: 560px;
    pointer-events: none;
}

.about-photo-item {
    position: absolute;
}

.about-photo-item::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgb(255, 255, 255);
    z-index: 1;
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: 100% 100%;
    mask-mode: alpha;
}

.about-photo-item img {
    position: absolute;
    inset: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    display: block;
    object-fit: cover;
    z-index: 2;
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: 100% 100%;
    mask-mode: alpha;
}

.about-photo-item.photo-1::before, .about-photo-item.photo-1 img {
    mask-image: url("../images/gt-1.png");
}

.about-photo-item.photo-2::before, .about-photo-item.photo-2 img {
    mask-image: url("../images/gt-2.png");
}

.about-photo-item.photo-3::before, .about-photo-item.photo-3 img {
    mask-image: url("../images/gt-3.png");
}

.about-photo-item.photo-4::before, .about-photo-item.photo-4 img {
    mask-image: url("../images/gt-4.png");
}

.about-photo-item.photo-5::before, .about-photo-item.photo-5 img {
    mask-image: url("../images/gt-5.png");
}

.about-photo-item.photo-1 {
    width: 504px;
    height: 450px;
    top: 11%;
    left: 0px;
    z-index: 1;
}

.about-photo-item.photo-2 {
    width: 504px;
    height: 450px;
    top: 12%;
    right: -40px;
    z-index: 2;
}

.about-photo-item.photo-5 {
    width: 168px;
    height: 168px;
    left: 215px;
    bottom: -36px;
    z-index: 5;
}

.about-photo-item.photo-4 {
    width: 168px;
    height: 168px;
    left: 337px;
    bottom: -10px;
    z-index: 4;
}

.about-photo-item.photo-3 {
    width: 168px;
    height: 168px;
    right: -5px;
    bottom: 16px;
    z-index: 3;
}

@keyframes floatY {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(-14px);
    }

    75% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

.about-photo-item.photo-1 {
    animation: 4s ease-in-out 0s infinite normal none running floatY;
}

.about-photo-item.photo-2 {
    animation: 5s ease-in-out 0.5s infinite normal none running floatY;
}

.about-photo-item.photo-3 {
    animation: 4.5s ease-in-out 1s infinite normal none running floatY;
}

.about-photo-item.photo-4 {
    animation: 5.5s ease-in-out 1.5s infinite normal none running floatY;
}

.about-photo-item.photo-5 {
    animation: 4.2s ease-in-out 0.8s infinite normal none running floatY;
}

@media (max-width: 1199px) {
    .about-us-home-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-us-home-left, .about-us-home-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-us-gallery-layered {
        margin: 0px auto;
    }
}

.product-home {
    padding: 23px 0px;
}

.product-cat-home-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.product-cat-home-title {
    font-size: 32px;
    font-weight: 700;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
    line-height: 45px;
    margin: 0px;
}

.product-cat-home-slogan {
    font-size: 16px;
    font-weight: 500;
    color: rgb(137, 137, 137);
    letter-spacing: 10%;
    text-transform: uppercase;
    margin-top: 18px;
}

.product-cat-home {
    padding: 30px 0px 64px;
}

.product-cat-home-carousel {
    width: calc(1050px);
    max-width: 100%;
    margin: 28px auto 0px;
    position: relative;
}

.product-cat-home-slider {
    overflow: hidden;
}

.product-cat-home-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgb(217, 217, 217);
    background: rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
    padding: 0px;
}

.product-cat-home-nav-prev {
    left: -65px;
}

.product-cat-home-nav-next {
    right: -65px;
}

.product-cat-home-nav-btn.is-disabled, .product-cat-home-nav-btn.swiper-button-lock, .product-cat-home-nav-btn.swiper-button-disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.product-cat-home-track {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.product-cat-home-item {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    flex: 0 0 160px;
    box-sizing: border-box;
    border: 1px solid rgba(7, 105, 58, 0.125);
    border-radius: 10px;
    background: rgba(7, 105, 58, 0.05);
    text-decoration: none;
    padding: 28px 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s, box-shadow 0.35s;
}

.product-cat-home-thumb {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.product-cat-home-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-cat-home-name {
    margin: 35px 0px 9px;
    width: 100%;
    color: rgb(51, 51, 51);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.product-cat-home-count {
    margin: 0px;
    color: rgb(7, 105, 58);
    font-size: 13px;
    line-height: 18px;
    text-align: center;
}

.product-cat-home-item:hover {
    background: linear-gradient(rgb(7, 105, 58) 0%, rgb(0, 62, 41) 100%);
    border-color: rgb(7, 105, 58);
}

.product-cat-home-item.swiper-slide-active {
    background: linear-gradient(rgb(7, 105, 58) 0%, rgb(0, 62, 41) 100%);
    border-color: rgb(7, 105, 58);
}

.product-cat-home-item:hover .product-cat-home-name, .product-cat-home-item:hover .product-cat-home-count, .product-cat-home-item.swiper-slide-active .product-cat-home-name, .product-cat-home-item.swiper-slide-active .product-cat-home-count {
    color: rgb(255, 255, 255);
}

.product-cat-home-swiper .swiper-slide {
    width: 160px;
    flex-shrink: 0;
}

.product-cat-home-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: static;
    inset: auto;
    width: 100%;
    margin-top: 18px;
    z-index: 6;
}

.product-cat-home-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgb(217, 217, 217);
    opacity: 1;
    cursor: pointer;
    margin: 0px !important;
}

.product-cat-home-pagination .swiper-pagination-bullet-active {
    width: 11px;
    height: 11px;
    background: rgb(7, 105, 58);
}

@media (max-width: 1199px) {
    .product-cat-home-carousel {
        width: calc(100% - 36px);
    }

    .product-cat-home-nav-btn {
        width: 40px;
        height: 40px;
    }

    .product-cat-home-nav-prev {
        left: -20px;
    }

    .product-cat-home-nav-next {
        right: -20px;
    }

    .product-cat-home-item {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        flex: 0 0 160px;
    }
}

@media (max-width: 767px) {
    .product-cat-home-carousel {
        width: 100%;
    }

    .product-cat-home-nav-btn {
        display: none;
    }

    .product-cat-home-pagination {
        margin-top: 14px;
    }

    .product-cat-home-title {
        font-size: 24px;
    }
}

.banner-home {
    position: relative;
    margin: 28px auto 0px;
    border-radius: 10px;
    overflow: hidden;
}

.banner-home-img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@supports (aspect-ratio: 16/9) {
    .banner-home-img {
        height: auto;
        aspect-ratio: 1920 / 400;
    }
}

.banner-home-overlay {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.22) 34%, rgba(0, 0, 0, 0) 66%);
    padding: 32px 44px;
}

.banner-home-content {
    max-width: 560px;
    margin-left: auto;
    margin-right: 230px;
    text-align: right;
    color: rgb(255, 255, 255);
}

.banner-home-title {
    margin: 0px 0px 10px;
    color: rgb(7, 105, 58);
    font-size: 32px;
    font-weight: 700;
}

.banner-home-desc {
    font-size: 16px;
}

.banner-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: rgb(7, 105, 58);
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.3s;
}

.banner-home-link:hover {
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .banner-home-overlay {
        justify-content: center;
        text-align: center;
        padding: 24px;
        background: rgba(0, 0, 0, 0.45);
    }

    .banner-home-content {
        margin: 0px;
        text-align: center;
    }

    .banner-home-title {
        font-size: 26px;
    }

    .banner-home-desc {
        font-size: 15px;
    }

    .banner-home-link {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .banner-home-img {
        height: 280px;
    }

    .banner-home-title {
        font-size: 20px;
    }

    .banner-home-desc {
        font-size: 14px;
    }

    .banner-home-overlay {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .banner-home-img {
        height: 220px;
    }

    .banner-home-title {
        font-size: 18px;
    }

    .banner-home-desc {
        font-size: 13px;
    }

    .banner-home-link {
        padding: 8px 14px;
        font-size: 13px;
    }
}

.product-home {
    padding: 55px 0px 72px;
    background: rgb(250, 250, 250);
}

.product-home-section {
    margin-bottom: 55px;
}

.product-home-section:last-child {
    margin-bottom: 0px;
}

.product-home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 35px;
}

.product-home-section-title {
    margin: 0px;
    color: rgb(51, 51, 51);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
}

.product-home-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.product-home-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgb(217, 217, 217);
    background: rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    cursor: pointer;
}

.product-home-nav-btn.is-disabled, .product-home-nav-btn.swiper-button-lock, .product-home-nav-btn.swiper-button-disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.product-home-carousel {
    max-width: 100%;
    overflow: hidden;
}

.product-home-swiper {
    overflow: hidden;
}

.product-home-track {
    display: flex;
    align-items: stretch;
}

.product-home-slide {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
    flex: 0 0 240px;
}

.product-home-card {
    width: 240px;
    height: 370px;
    border: 1px solid rgb(217, 217, 217);
    background: rgb(255, 255, 255);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 12px;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.product-home-card::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgb(7, 105, 58);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.product-home-card:hover {
    border-color: rgb(7, 105, 58);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 30px;
}

.product-home-card:hover::before {
    transform: scaleY(1);
}

.product-home-image {
    width: 100%;
    height: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-home-image img {
    width: 215px;
    height: 215px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s;
}

.product-home-card-info {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
    gap: 6px;
}

.product-home-card-code {
    margin: 0px;
    color: rgb(137, 137, 137);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s;
}

.product-home-card-name {
    margin: 0px;
}

.product-home-card-name a {
    color: rgb(51, 51, 51);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(2.8em);
    transition: color 0.3s;
}

.product-home-card-price {
    margin: auto 0px 0px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    text-transform: capitalize;
}

.product-home-card-price .label {
    color: rgb(137, 137, 137);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s;
}

.product-home-card-price .value {
    color: rgb(233, 39, 39);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s;
}

.product-home-card:hover .product-home-card-code, .product-home-card:hover .product-home-card-name a, .product-home-card:hover .product-home-card-price .label {
    color: rgb(255, 255, 255);
}

.product-home-card:hover .product-home-card-price .value {
    color: rgb(255, 215, 0);
}
.product-home-order{
    height: auto;
    padding: 0 20px;
    color: #fff;
    background: #00aeff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
    text-align: center;
}
.product-home-order:hover {
    color: #fff;
    background: #007acc;
}
.product-page-grid .product-page-card {
    width: 100%;
    max-width: 100%;
    min-width: 0px;
    height: 100%;
}

.product-page-grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

.product-page-grid > [class*="col-"] {
    margin-bottom: 0px;
}

.product-page-grid .product-home-image img {
    width: min(215px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
}

.product-seen-carousel .product-page-card {
    width: 100%;
    max-width: 100%;
    min-width: 0px;
    height: 100%;
}

.product-seen-carousel .product-home-image img {
    width: min(215px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
}

.product-detail-gap-block {
    margin-top: 14px;
    margin-bottom: 14px;
}

.product-seen-carousel.product-detail-gap-block .owl-stage-outer {
    padding-top: 8px;
    padding-bottom: 8px;
}

@media (max-width: 1199px) {
    .product-home-section-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .product-home {
        padding-top: 38px;
    }

    .product-home-section-title {
        font-size: 34px;
    }

    .product-home-nav-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767px) {
    .product-home-section {
        margin-bottom: 34px;
    }

    .product-home-section-title {
        font-size: 28px;
    }

    .product-home-nav {
        gap: 8px;
    }

    .product-home-nav-btn {
        width: 38px;
        height: 38px;
    }
}

.services-home {
    padding: 45px 0px;
}

.services-home-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.services-home-title {
    font-size: 32px;
    font-weight: 700;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
    line-height: 45px;
    margin: 0px;
}

.services-home-slogan {
    font-size: 16px;
    font-weight: 500;
    color: rgb(137, 137, 137);
    letter-spacing: 10%;
    text-transform: uppercase;
    margin-top: 18px;
}

.services-home-carousel {
    width: 1200px;
    max-width: 100%;
    margin: 28px auto 0px;
    overflow: visible;
    position: relative;
}

.services-home-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 18px;
    height: 34px;
    padding: 0px;
    border: 0px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.services-home-nav-prev {
    left: -42px;
}

.services-home-nav-next {
    right: -42px;
}

.services-home-nav-btn.is-disabled, .services-home-nav-btn.swiper-button-lock, .services-home-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.services-home-swiper {
    overflow: hidden;
}

.services-home-pagination {
    display: flex;
    align-items: center;
    & .knowledge-home-carousel {
        position: relative;
    }

    & .knowledge-home-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 6;
        width: 34px;
        height: 34px;
        padding: 0px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    & .knowledge-home-nav-prev {
        left: 8px;
    }

    & .knowledge-home-nav-next {
        right: 8px;
    }

    & .knowledge-home-nav-btn:hover {
        opacity: 0.9;
    }

    justify-content: center;
    gap: 8px;
    position: static;
    inset: auto;
    width: 100%;
    margin-top: 35px;
}

.services-home-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgb(217, 217, 217);
    opacity: 1;
    cursor: pointer;
    margin: 0px !important;
}

.services-home-pagination .swiper-pagination-bullet-active {
    width: 11px;
    height: 11px;
    background: rgb(7, 105, 58);
}

.services-home-track {
    display: flex;
    align-items: stretch;
}

.services-home-slide {
    width: 1200px;
    min-width: 1200px;
    max-width: 1200px;
    flex: 0 0 1200px;
}

.services-home-card {
    width: 1200px;
    height: 400px;
    background: rgb(250, 250, 250);
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.services-home-card-left {
    width: 539px;
    padding: 43px 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
    z-index: 2;
}

.services-home-card-name {
    margin: 0px;
}

.services-home-card-name a {
    color: rgb(51, 51, 51);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-transform: capitalize;
}

.services-home-card-desc {
    margin: 18px 0px 0px;
    color: rgb(137, 137, 137);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.services-home-more {
    margin-top: 30px;
    align-items: center;
    display: flex;
    justify-content: end;
    gap: 21px;
    width: 180px;
    height: 50px;
    border: 1.5px solid rgb(7, 105, 58);
    border-radius: 1212px;
    font-size: 14px;
    font-weight: 600;
    color: rgb(7, 105, 58);
    text-decoration: none;
    padding: 0px 9px;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s;
}

.services-home-more::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 100%;
    background: rgb(7, 105, 58);
    transition: width 0.4s;
    z-index: -1;
}

.services-home-more:hover::before {
    width: 100%;
}

.services-home-more:hover {
    color: rgb(255, 255, 255);
}

.services-home-more:hover .icon {
    background: rgb(255, 255, 255);
}

.services-home-more:hover .icon img {
    filter: invert(1);
}

.services-home-more .icon {
    width: 35px;
    height: 35px;
    background: rgb(7, 105, 58);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.services-home-more .icon img {
    width: 13px;
    height: 12px;
    transition: filter 0.3s;
}

.services-home-frame {
    position: absolute;
    top: 0px;
    right: 43.5%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.services-home-frame img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.services-home-card-right {
    width: 661px;
    height: 400px;
    margin-left: auto;
    display: block;
    text-decoration: none;
}

.services-home-card-right img {
    width: 661px;
    height: 400px;
    object-fit: cover;
    display: block;
    mask-image: url("../images/dv.png");
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: 100% 100%;
}

@media (max-width: 1199px) {
    .services-home-slide, .services-home-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .services-home-card-left {
        width: calc(100% - 661px);
        padding: 32px 24px;
    }
}

@media (max-width: 1024px) {
    .services-home-carousel {
        width: 960px;
    }

    .services-home-slide, .services-home-card {
        width: 960px;
        min-width: 960px;
        max-width: 960px;
        margin: 0px auto;
    }

    .services-home-card {
        height: 340px;
    }

    .services-home-card-left {
        width: calc(100% - 530px);
        padding: 26px 20px;
    }

    .services-home-card-right, .services-home-card-right img {
        width: 530px;
        height: 340px;
    }

    .services-home-card-name a {
        font-size: 21px;
    }

    .services-home-card-desc {
        margin-top: 14px;
        -webkit-line-clamp: 3;
    }

    .services-home-more {
        width: 166px;
        height: 46px;
        margin-top: 22px;
        gap: 14px;
        font-size: 13px;
    }

    .services-home-frame {
        right: 43%;
    }

    .services-home-nav-prev {
        left: -28px;
    }

    .services-home-nav-next {
        right: -28px;
    }
}

@media (max-width: 991px) {
    .services-home-slide, .services-home-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .services-home-card {
        height: auto;
        flex-direction: column;
    }

    .services-home-card-left, .services-home-card-right, .services-home-card-right img {
        width: 100%;
    }

    .services-home-card-right, .services-home-card-right img {
        height: 320px;
    }

    .services-home-card-left {
        padding: 24px 20px 28px;
    }

    .services-home-card-name a {
        font-size: 22px;
        line-height: 1.4;
    }

    .services-home-frame {
        display: none;
    }

    .services-home-nav-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .services-home-title {
        font-size: 24px;
        line-height: 1.35;
    }

    .services-home-card-right, .services-home-card-right img {
        height: 240px;
    }

    .services-home-card-name a {
        font-size: 20px;
    }
}

.criteria {
    padding: 45px 0px;
    background: rgb(250, 250, 250);
}

.criteria-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.criteria-title {
    font-size: 32px;
    font-weight: 700;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
    line-height: 45px;
    margin: 0px;
}

.criteria-slogan {
    font-size: 16px;
    font-weight: 500;
    color: rgb(137, 137, 137);
    letter-spacing: 10%;
    text-transform: uppercase;
    margin: 18px 0px 0px;
}

.criteria-body {
    padding: 53px 0px 0px;
}

.criteria-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 27px;
    justify-content: center;
}

.criteria-item {
    width: calc(25% - 20.25px);
    max-width: 280px;
    height: auto;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(217, 217, 217);
    border-radius: 10px;
    padding: 24px 20px 19px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.criteria-icon {
    width: 90px;
    height: 90px;
    border: 1.5px solid rgb(7, 105, 58);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.criteria-icon img {
    display: block;
}

.criteria-name {
    font-size: 16px;
    font-weight: 600;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
    margin: 23px 0px 0px;
}

.criteria-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: rgb(137, 137, 137);
    margin: 14px 0px 0px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.criteria-list .criteria-item:nth-child(1) .criteria-icon img {
    width: 35px;
    height: 46px;
}

.criteria-list .criteria-item:nth-child(2) .criteria-icon img {
    width: 46px;
    height: 46px;
}

.criteria-list .criteria-item:nth-child(3) .criteria-icon img {
    width: 40px;
    height: 46px;
}

.criteria-list .criteria-item:nth-child(4) .criteria-icon img {
    width: 39px;
    height: 46px;
}

@media only screen and (max-width: 1199px) {
    .criteria-list {
        flex-wrap: wrap;
    }

    .criteria-item {
        width: calc(50% - 13.5px);
        max-width: none;
    }
}

@media only screen and (max-width: 991px) {
    .criteria-list {
        gap: 18px;
    }

    .criteria-item {
        width: calc(50% - 9px);
    }
}

.customer-feedback {
    padding: 55px 0px;
    background: rgb(255, 255, 255);
}

@media (max-width: 767px) {
    .customer-feedback {
        display: none;
    }
}

.customer-feedback-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.customer-feedback-title {
    margin: 0px;
    font-size: 32px;
    line-height: 45px;
    font-weight: 700;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
}

.customer-feedback-slogan {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(137, 137, 137);
    text-transform: uppercase;
}

.customer-feedback-body {
    margin-top: 38px;
    max-width: none;
    width: 100%;
    overflow: hidden;
}

.customer-feedback-swiper {
    width: calc(100% + 250px);
    transform: translateX(-250px);
    padding: 0px;
}

.customer-feedback-slide {
    width: 580px;
    flex-shrink: 0;
}

.customer-feedback-card {
    width: 580px;
    height: 250px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 10px;
    background: rgb(255, 255, 255);
    display: flex;
    overflow: visible;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(217, 217, 217, 0.514);
}

.customer-feedback-left {
    width: 380px;
    padding: 12px 24px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.customer-feedback-pin img {
    width: 42px;
    height: auto;
    display: block;
}

.customer-feedback-quote {
    display: flex;
    justify-content: flex-end;
    margin-top: -6px;
}

.customer-feedback-quote img {
    width: 44px;
    height: 28px;
}

.customer-feedback-desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    color: rgb(51, 51, 51);
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .criteria-list {
        gap: 20px;
    }

    .criteria-item {
        width: calc(50% - 10px);
        max-width: 320px;
    }
}

@media only screen and (max-width: 991px) {
    .criteria {
        padding: 40px 0px;
    }

    .criteria-body {
        padding-top: 34px;
    }

    .criteria-title {
        font-size: 24px;
        line-height: 1.35;
    }

    .criteria-slogan {
        font-size: 14px;
    }

    .criteria-list {
        gap: 16px;
    }

    .criteria-item {
        width: calc(50% - 8px);
        max-width: none;
        padding: 20px 16px 16px;
    }

    .criteria-icon {
        width: 76px;
        height: 76px;
    }

    .criteria-name {
        margin-top: 16px;
        font-size: 15px;
    }

    .criteria-desc {
        margin-top: 10px;
        line-height: 1.7;
    }
}

@media (max-width: 767px) {
    .criteria {
        display: none;
    }

    .criteria-title {
        font-size: 24px;
    }

    .criteria-list {
        gap: 12px;
    }

    .criteria-item {
        width: 100%;
        padding: 18px 14px 14px;
    }

    .criteria-icon {
        width: 70px;
        height: 70px;
    }

    .criteria-name {
        font-size: 14px;
    }

    .criteria-desc {
        font-size: 13px;
        -webkit-line-clamp: 4;
    }

    .criteria-list .criteria-item:nth-child(1) .criteria-icon img {
        width: 30px;
        height: 40px;
    }

    .criteria-list .criteria-item:nth-child(2) .criteria-icon img, .criteria-list .criteria-item:nth-child(3) .criteria-icon img, .criteria-list .criteria-item:nth-child(4) .criteria-icon img {
        width: 34px;
        height: 40px;
    }
}

.customer-feedback-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.customer-feedback-name {
    margin: 0px;
    font-size: 14px;
    font-weight: 600;
    color: rgb(51, 51, 51);
    text-transform: capitalize;
}

.customer-feedback-stars {
    width: 101.29px;
    height: 14px;
    display: block;
}

.customer-feedback-right, .customer-feedback-right img {
    width: 200px;
    height: 250px;
}

.customer-feedback-right img {
    object-fit: cover;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.customer-feedback-right {
    overflow: hidden;
}

.customer-feedback-pagination {
    margin-top: 22px;
    text-align: center;
}

.customer-feedback-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgb(217, 217, 217);
    opacity: 1;
    margin: 0px 6px;
    display: inline-block;
}

.customer-feedback-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: static;
    inset: auto;
    width: 100%;
    margin-top: 35px;
}

.customer-feedback-pagination .swiper-pagination-bullet {
    cursor: pointer;
    margin: 0px !important;
}

.customer-feedback-pagination .swiper-pagination-bullet-active {
    width: 11px;
    height: 11px;
    background: rgb(7, 105, 58);
}

.customer-feedback-pagination .swiper-pagination-bullet-active {
    background: rgb(7, 105, 58);
}

@media only screen and (max-width: 1199px) {
    .customer-feedback-left {
        width: calc(100% - 200px);
    }

    .customer-feedback-right, .customer-feedback-right img {
        width: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .customer-feedback-title {
        font-size: 26px;
        line-height: 36px;
    }

    .customer-feedback-body {
        max-width: 100%;
    }

    .customer-feedback-swiper {
        width: 100%;
        transform: none;
        padding: 0px 14px;
    }

    .customer-feedback-slide, .customer-feedback-card {
        width: calc(-28px + 100vw);
        height: auto;
    }

    .customer-feedback-card {
        flex-direction: column;
    }

    .customer-feedback-left {
        width: 100%;
        padding: 12px 16px 16px;
    }

    .customer-feedback-right, .customer-feedback-right img {
        width: 100%;
        height: 220px;
    }
}

.knowledge-home {
    padding: 35px 0px 65px;
    background: rgb(255, 255, 255);
}

.knowledge-home-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.knowledge-home-title {
    margin: 0px;
    font-size: 32px;
    line-height: 45px;
    font-weight: 700;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
}

.knowledge-home-slogan {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(137, 137, 137);
    text-transform: uppercase;
}

.knowledge-home-body {
    margin-top: 38px;
    max-width: none;
    width: 100%;
    overflow: hidden;
}

.knowledge-home-swiper {
    width: calc(100% + 250px);
    transform: translateX(-250px);
    padding: 0px;
}

.knowledge-home-slide {
    width: 585px;
    flex-shrink: 0;
}

.knowledge-home-track .knowledge-home-slide {
    margin-right: 30px;
}

.knowledge-home-card {
    width: 585px;
    height: 300px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(217, 217, 217);
    border-radius: 10px;
    display: flex;
    overflow: visible;
    justify-content: space-between;
}

.knowledge-home-left img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: block;
    pointer-events: none;
}

.knowledge-home-right {
    padding: 24px 18px 22px;
    width: calc(100% - 250px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.knowledge-home-date {
    font-size: 14px;
    font-weight: 600;
    color: rgb(7, 105, 58);
    margin-bottom: 8px;
}

.knowledge-home-name a {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: rgb(51, 51, 51);
    margin: 0px 0px 8px;
    text-decoration: none;
}

.knowledge-home-name a:hover {
    color: rgb(0, 80, 48);
}

.knowledge-home-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: rgb(137, 137, 137);
    margin: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.knowledge-home-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: static;
    inset: auto;
    width: 100%;
    margin-top: 35px;
}

.knowledge-home-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgb(217, 217, 217);
    opacity: 1;
    cursor: pointer;
    margin: 0px !important;
}

.knowledge-home-pagination .swiper-pagination-bullet-active {
    width: 11px;
    height: 11px;
    background: rgb(7, 105, 58);
}

@media only screen and (max-width: 1199px) {
    .knowledge-home-swiper {
        width: calc(100% + 150px);
        transform: translateX(-150px);
    }

    .knowledge-home-slide, .knowledge-home-card {
        width: 540px;
    }

    .knowledge-home-left img {
        width: 220px;
    }

    .knowledge-home-right {
        width: calc(100% - 220px);
        padding: 18px 16px;
    }
}

@media only screen and (max-width: 1024px) {
    .knowledge-home {
        padding: 42px 0px;
    }

    .knowledge-home-title {
        font-size: 30px;
        line-height: 1.35;
    }

    .knowledge-home-slogan {
        font-size: 14px;
        margin-top: 12px;
    }

    .knowledge-home-body {
        margin-top: 30px;
    }

    .knowledge-home-swiper {
        width: calc(100% + 90px);
        transform: translateX(-90px);
    }

    .knowledge-home-slide, .knowledge-home-card {
        width: 500px;
        height: 280px;
    }

    .knowledge-home-left img {
        width: 200px;
        height: 280px;
    }

    .knowledge-home-right {
        width: calc(100% - 200px);
        padding: 16px 14px;
    }

    .knowledge-home-name {
        font-size: 15px;
        line-height: 1.55;
    }

    .knowledge-home-desc {
        font-size: 13px;
        line-height: 1.65;
    }
}

@media only screen and (max-width: 991px) {
    .knowledge-home {
        padding: 38px 0px;
    }

    .knowledge-home-swiper, .knowledge-home-track, .knowledge-home-slide {
        height: auto;
    }

    .knowledge-home-swiper {
        transform: none;
        width: 100%;
    }

    .knowledge-home-slide {
        width: 100%;
    }

    .knowledge-home-track .knowledge-home-slide {
        margin-right: 0px;
    }

    .knowledge-home-card {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .knowledge-home-left img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 10px 10px 0px 0px;
    }

    .knowledge-home-right {
        width: 100%;
        padding: 16px 14px;
    }

    .knowledge-home-pagination {
        margin-top: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .knowledge-home-title {
        font-size: 27px;
    }

    .knowledge-home {
        padding: 0px 0px 20px;
    }

    .knowledge-home-card {
        flex-direction: row;
        align-items: stretch;
        height: 250px;
    }

    .knowledge-home-left {
        width: 36%;
        flex: 0 0 36%;
    }

    .knowledge-home-left a {
        width: 100%;
        height: 100%;
        display: block;
    }

    .knowledge-home-left img {
        width: 100%;
        height: 100%;
        min-height: 190px;
        aspect-ratio: 4 / 5;
        border-radius: 10px 0px 0px 10px;
    }

    .knowledge-home-right {
        width: 64%;
        flex: 0 0 64%;
    }

    .knowledge-home-date {
        font-size: 13px;
    }

    .knowledge-home-name {
        font-size: 14px;
    }

    .knowledge-home-desc {
        -webkit-line-clamp: 3;
    }
}

@media only screen and (max-width: 575px) {
    .knowledge-home {
        padding: 32px 0px;
    }

    .knowledge-home-title {
        font-size: 24px;
    }

    .knowledge-home-slogan {
        font-size: 13px;
    }

    .knowledge-home-card {
        height: 175px;
    }

    .knowledge-home-left img {
        min-height: 175px;
    }

    .knowledge-home-right {
        padding: 14px 12px;
    }

    .knowledge-home-pagination {
        margin-top: 18px;
    }
}

.footer-space {
    width: 100%;
    height: 160px;
    background-color: rgb(255, 255, 255);
    position: relative;
}

.footer-form {
    position: relative;
    max-width: 1200px;
    margin: -160px auto 77px;
    padding: 35px 77px;
    border-radius: 15px;
    height: 320px;
    z-index: 2;
    background: linear-gradient(rgba(7, 105, 58, 0.6) 0%, rgb(7, 105, 58) 100%), url("../images/form-bg.png") center center / cover no-repeat;
    box-shadow: rgba(0, 0, 0, 0.25) 4px 4px 4px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.footer-form-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-form-title {
    margin: 0px;
    color: rgb(255, 255, 255);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    transition: transform 0.3s;
}

.footer-form:hover .footer-form-title {
    transform: translateY(-2px);
}

.footer-form-desc {
    margin: 13px 0px 0px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.footer-form:hover .footer-form-desc {
    opacity: 0.9;
}

.footer-form-fields {
    margin-top: 27px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-form-control {
    width: 335px;
    position: relative;
}

.footer-form-input {
    width: 100%;
    height: 55px;
    border: 0px;
    border-radius: 1212px;
    background: rgb(255, 255, 255);
    outline: none;
    padding: 0px 46px 0px 22px;
    font-size: 14px;
    transition: 0.25s;
}

.footer-form-input::placeholder {
    color: rgb(137, 137, 137);
}

.footer-form-input:hover {
    box-shadow: rgba(7, 105, 58, 0.15) 0px 0px 0px 2px;
}

.footer-form-input:focus {
    box-shadow: rgba(7, 105, 58, 0.25) 0px 0px 0px 3px;
    transform: translateY(-1px);
}

.footer-field-icon {
    position: absolute;
    right: 18px;
    top: 18px;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
}

.footer-field-icon-error {
    color: rgb(220, 53, 69);
}

.footer-field-icon-success {
    color: rgb(25, 135, 84);
}

.footer-field-message {
    min-height: 18px;
    margin-top: 6px;
    padding-left: 8px;
    color: rgb(255, 217, 217);
    font-size: 12px;
}

.footer-form-control.is-invalid .footer-form-input {
    box-shadow: rgba(220, 53, 69, 0.4) 0px 0px 0px 2px;
}

.footer-form-control.is-invalid .footer-field-icon-error {
    opacity: 1;
    visibility: visible;
}

.footer-form-control.is-valid .footer-form-input {
    box-shadow: rgba(25, 135, 84, 0.35) 0px 0px 0px 2px;
}

.footer-form-control.is-valid .footer-field-icon-success {
    opacity: 1;
    visibility: visible;
}

.footer-form-submit-wrap {
    margin-top: 27px;
    display: flex;
    justify-content: center;
}

.footer-form-submit {
    width: 335px;
    height: 60px;
    border: 0px;
    border-radius: 1212px;
    background: rgb(0, 62, 41);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 8px 0px 28px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(255, 255, 255, 0.25) -4px -4px 4px, rgba(0, 0, 0, 0.25) 4px 4px 4px;
    transition: 0.35s;
}

.footer-form-submit::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgb(7, 105, 58);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s;
    z-index: 0;
}

.footer-form-submit:hover::before {
    transform: scaleX(1);
}

.footer-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 25px;
}

.footer-form-submit-text {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.footer-form-submit-icon {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.footer-form-submit:hover .footer-form-submit-icon {
    transform: translateX(4px);
}

.footer-form-submit-icon img {
    transition: transform 0.3s;
}

.footer-form-submit:hover .footer-form-submit-icon img {
    transform: rotate(45deg);
}

.footer-form-submit-icon img {
    width: 10px;
    height: 10px;
    display: block;
}

@media (max-width: 1199px) {
    .footer-form {
        height: auto;
        padding: 32px 20px;
    }

    .footer-form-fields {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .footer-space {
        height: 220px;
    }

    .footer-form {
        margin: -220px auto 56px;
        transform: none;
    }

    .footer-form-title {
        font-size: 26px;
    }

    .footer-form-desc {
        letter-spacing: 0.06em;
    }

    .footer-form-input, .footer-form-submit {
        width: 100%;
        max-width: 335px;
    }

    .footer-form-control {
        width: 100%;
        max-width: 335px;
    }
}

.footer {
    background: rgb(20, 20, 20);
}

.footer-contaner {
    padding-top: 52px;
}

.footer-body {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1.1fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    max-width: 281px;
    text-decoration: none;
}

.footer-logo img {
    width: 281px;
    height: 57px;
    object-fit: contain;
    display: block;
}

.footer-about-desc {
    margin: 25px 0px 0px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    max-width: 310px;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-item {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.25s;
}

.footer-social-item:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.footer-social-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.footer-col-title {
    margin: 0px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-links {
    margin-top: 28px;
}

.footer-links li + li {
    margin-top: 30px;
}

.footer-links a {
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.25s;
    text-transform: capitalize;
}

.footer-links a:hover {
    color: rgb(255, 255, 255);
}

.footer-contact-content {
    margin-top: 28px;
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.footer-contact-content p {
    margin: 0px 0px 12px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 25px;
}

.footer-contact-content p:last-child {
    margin-bottom: 0px;
}

.footer-contact-content a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.footer-contact-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1199px) {
    .footer-body {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col-title {
        font-size: 18px;
    }

    .footer-links li + li {
        margin-top: 18px;
    }
}

@media (max-width: 991px) {
    .footer-contaner {
        padding-top: 42px;
    }

    .footer-body {
        gap: 26px;
    }

    .footer-col-title {
        font-size: 17px;
    }

    .footer-about-desc, .footer-links a, .footer-contact-content, .footer-contact-content p {
        font-size: 13px;
        line-height: 22px;
    }

    .footer-links {
        margin-top: 18px;
    }

    .footer-contact-content {
        margin-top: 18px;
    }

    .footer-bottom {
        padding: 22px 0px;
    }

    .footer-bottom .copyright-text {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .footer-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-col, .footer-col-title, .footer-about-desc, .footer-links, .footer-contact-content, .footer-contact-content p {
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        margin: 0px auto;
    }

    .footer-about-desc {
        margin: 18px auto 0px;
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        padding-left: 0px;
    }

    .footer-contaner {
        padding-top: 34px;
    }

    .footer-col-title {
        font-size: 16px;
    }

    .footer-about-desc, .footer-links a, .footer-contact-content p {
        font-size: 12px;
        line-height: 20px;
    }

    .footer-links li + li {
        margin-top: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 16px 0px;
        text-align: center;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-bottom-left, .footer-bottom-right {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
    }

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

    .footer-bottom .pay-img img {
        max-height: 24px;
    }
}

@media (max-width: 575px) {
    .footer-contaner {
        padding-top: 28px;
    }

    .footer-form-title {
        font-size: 22px;
    }

    .footer-form-desc {
        font-size: 13px;
        line-height: 1.4;
    }

    .footer-form-input, .footer-form-submit {
        height: 52px;
        font-size: 13px;
    }

    .footer-form-submit-text {
        font-size: 14px;
    }

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

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 18px 0px 0px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0px;
}

.footer-bottom .copyright-text {
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    margin: 0px;
}

.footer-bottom .pay-img img {
    max-height: 28px;
    display: block;
}
