/* Inter Font */
@font-face {
    font-family: "Inter";
    src: url("../font/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../font/Inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-family-inter: "Inter", sans-serif;
    --bg-copyright: #ebebeb;
    --bg-white: #ffffff;
    --bg-black: #303030;
    --color-white: #ffffff;
    --color-black-none: #4e4e4e;
    --color-green: #1a903b;
    --color-blue: #007dd1;
    --color-black: #000000;
    --color-gray-dark: #919191;
    --color-footer: #f6f6f6;
    --color-line: #d1d1d1;
    --color-text: #0a1a25;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--color-green) #f1f1f1;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-green);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4facfe, #00f2fe);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #43e97b, #38f9d7);
}

a {
    color: var(--color-text);
    outline: 0 none;
    text-decoration: none;
    -moz-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: 0 none;
}

img {
    border-style: none;
    height: auto;
    vertical-align: middle;
}

hr {
    clear: both;
}

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

address {
    font-style: italic;
}

table {
    background-color: transparent;
    width: 100%;
    border-spacing: 0;
}

table thead th {
    color: #333;
}

table tr td {
    border-top: 1px solid #dddddd;
}

table tr td,
table tr th {
    padding: 10px;
}

table tr td:first-child,
table tr th:first-child {
    padding-left: 0px;
}

table tr td:last-child,
table tr th:last-child {
    padding-right: 0px;
}

@media only screen and (max-width: 360px) {
    table tr td {
        word-break: break-all;
    }
}

p,
address,
pre,
hr,
ul,
ol,
dl,
dd,
table {
    margin-bottom: 15px;
}

body {
    font-family: var(--font-family-inter);
    background-color: var(--bg-body);
    color: var(--color-text);
    font-size: 1rem;
    top: 0 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.grecaptcha-badge {
    display: none !important;
}

/** Line-clamp **/
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-7 {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.header_title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
    text-align: center;
}

/** Maintenance **/
.maintenance {
    width: 100%;
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 10px 0px;
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
}

.text_highlight {
    color: var(--color-green);
    font-weight: 600;
}

.line__header {
    width: 2px;
    height: 56px;
    background: var(--color-green);
}

.image__hover_effect:before,
.image__hover_effect:after {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    background-color: rgba(255, 255, 255, 0.15);
    transition: all 0.8s ease-in-out 0s;
    -webkit-transition: all 0.8s ease-in-out 0s;
    -ms-transition: all 0.8s ease-in-out 0s;
}

.image__hover_effect:before {
    top: 0;
    left: 0;
    z-index: 1;
}

.image__hover_effect:after {
    bottom: 0;
    right: 0;
    z-index: 2;
}

.image__hover_effect:hover:before,
.image__hover_effect:hover:after {
    width: 100%;
    height: 100%;
}

.image__hover_effect img {
    width: 100%;
    -webkit-transition: all 1s ease-in-out 0s;
    -khtml-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.image__hover_effect:hover img {
    -webkit-transform: scale(1.2);
    -khtml-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

/* menu */
.mobile-menu,
.mobile-header,
.mobile-menu-overlay {
    display: none;
}

.menu {
    position: relative;
    z-index: 2;
}

.home__page .menu {
    background-color: #a2999903;
}

.home__page .menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

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

.home__page .menu__logo__1 {
    display: block;
}

.home__page .menu__logo__2 {
    display: none;
}

.home__page .menu-fixed .menu__logo__2 {
    display: block;
}

.home__page .menu-fixed .menu_logo_1 {
    display: none;
}


.menu-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 100px;
    gap: 20px;
}

.menu-right ul {
    list-style: none;
}

.menu-right .level-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    width: 100%;
    gap: 1px;
}

.home__page .level-1>li>a.menu-item {
    color: var(--bg-white);
}

.home__page .menu-fixed .level-1>li>a.menu-item {
    color: var(--color-black-none);
}
.home__page .menu-fixed .menu__icon i {
    color: var(--color-black-none);
}


.level-1>li {
    flex: 1;
    text-align: center;
    position: relative;
}

.level-1>li>a.menu-item {
    display: flex;
    padding: 29px 10px;
    color: var(--color-black-none);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    align-items: center;
}

.level-1>li:hover>a.menu-item,
.level-1>li.active>a.menu-item {
    border-bottom: 2px solid var(--color-green);
}

.submenu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    z-index: 999;
    list-style: none;
    padding: 8px;
    margin: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.level-1>li,
.submenu li {
    position: relative;
}

.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 10px 14px;
    color: #333;
    background: #fff;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease;
    text-align: left;
    text-transform: uppercase;
}

.submenu li a:hover {
    background: #f5f5f5;
}

.level-3,
.level-4,
.level-5 {
    top: 0;
    left: 100%;
}

.menu__icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.menu-arrow {
    font-size: 12px;
    margin-left: 6px;
}

.menu-contact {
    flex: 0 0 auto;
}

.menu-item--pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px !important;
    border-radius: 8px;
    background: #f2f2f2;
    color: var(--color-black-none) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.menu-item--pill:hover {
    background: #e9ffe9;
    color: #1a903b;
}
.home__page .menu__icon i {
    color: var(--bg-white);
}
.menu__icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--color-black-none);
    text-decoration: none;
    font-size: 24px;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
    cursor: pointer;
    background: none;
}


.menu__icon i {
    pointer-events: none;
}


.nav-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.menu-style-two {
    padding: 10px 0;
    display: none;
}

.menu-style-two .menu-right {
    margin-left: 0px;
}

/* Slider show */
.slideshow {
    position: relative;
}

.slideshow__menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

.slideshow__menu .menu {
    background-color: #a2999903;
}

.slideshow__menu .menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

.slideshow__menu .menu-right .level-1 {
    background-color: transparent;
}

.slider-item img {
    display: block;
    width: 100%;
}

.slider_overlay {
    position: absolute;
    left: 0;
    top: 35%;
    color: var(--bg-white);
    z-index: 3;
    width: 100%;
}

.slider-content {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.slider-content__title {
    font-size: 70px;
    font-weight: 600;
    margin: 0 0 14px 0;
    line-height: 1.1;
}

.slider-content__name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 14px 0;
    line-height: 1.4;
}

.slider-content__desc {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.slider-content__title,
.slider-content__name,
.slider-content__desc {
    max-width: 45%;
}

.slideshow__nav {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    z-index: 4;
    padding: 0 16px;
    width: 100%;
}

.slideshow__nav-item {
    border: none;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 6px 10px;
    text-transform: none;
    letter-spacing: 0.2px;
    border-bottom: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.slideshow__nav-item:hover {
    opacity: 1;
}

.slideshow__nav-item.is-active {
    border-bottom-color: #1a903b;
    opacity: 1;
}

.slideshow__nav-index {
    font-weight: 700;
}

.slideshow__nav-index {
    font-weight: 500;
    font-size: 18px;
}

.slideshow__nav-label {
    font-weight: 600;
    font-size: 18px;
}

.product-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-menu li {
    line-height: 1.2;
    margin-left: 20px;
}

.product-menu li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.product-menu li a:hover {
    background: #f8f8f8;
    color: #c72323;
}

.slide img {
    padding: 20px 0px;
    width: 850px;
    height: 400px;
    border-radius: 4px;
    display: block;
}

/* About Section */
.about__index__section {
    color: var(--color-black);
    padding: 90px 0;
}

.about-index__header {
    margin-bottom: 40px;
}

.about-index__headline {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
}

.about-index__headline span {
    color: var(--color-green);
}

.about-index__lead {
    font-size: 15px;
    color: var(--color-black-none);
    margin: 0;
    line-height: 1.6;
}

.about-index__body {
    display: grid;
    grid-template-columns: minmax(200px, 240px) 1fr;
    gap: 60px;
    align-items: center;
}

.about-index__nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-index__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-index__menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-black-none);
    font-size: 14px;
    position: relative;
    cursor: pointer;
}

.about-index__menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e7e7e7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    background: #fafafa;
}

.about-index__menu-item.is-active {
    color: var(--color-black);
    font-weight: 600;
}

.about-index__menu-item.is-active .about-index__menu-icon {
    border-color: var(--color-green);
    color: var(--color-green);
    background: #f1fbf4;
}

.about-index__menu-item.is-active::after {
    content: "";
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 1px;
    background: var(--color-green);
}

.about-index__pager {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 14px;
}

.about-index__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d6d6d6;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.about-index__dot.is-active {
    width: 18px;
    background: var(--color-black);
}

.about-index__stage {
    position: relative;
    min-height: 420px;
}

.about-index__panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 1fr);
    gap: 36px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.about-index__panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.about-index__media {
    margin: 0;
}

.about-index__media img {
    border-radius: 40px 91px 91px 91px;
    display: block;
}

.about-index__content {
    color: var(--color-black-none);
}

.about-index__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0 0 8px;
}

.about-index__subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 14px;
}

.about-index__desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.about-index__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    background: #F6F6F6;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 400;
    transition: all 0.25s ease;
}

.about-index__cta:hover {
    background: var(--color-green);
    color: #ffffff;
}

/* Show Product Hot */
.show-product-hot {
    padding: 90px 0;
    background-image: url(../images/bg-mo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    height: 705px;
}

.show-product-hot__grid {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.4fr) minmax(260px, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
        ". intro ."
        "badge media content";
    gap: 28px;
    align-items: center;
}

.show-product-hot__intro {
    grid-area: intro;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 28px;
    transition: transform 0.4s ease;
}

.show-product-hot__title {
    font-size: clamp(28px, 3vw, 32px);
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    line-height: 1.25;
    text-align: start;
}

.show-product-hot__title span {
    color: var(--color-green);
}

.show-product-hot__media {
    grid-area: media;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 36px;
    transition: transform 0.4s ease, margin 0.4s ease;
}

.show-product-hot__image {
    height: auto;
    display: block;
}

.show-product-hot__content {
    grid-area: content;
    max-width: 360px;
    opacity: 0;
    transform: translateY(24px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.show-product-hot__desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black-none);
    margin: 0 0 18px;
}

.show-product-hot__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.show-product-hot__cta:hover {
    color: var(--color-green);
    border-color: var(--color-green);
    transform: translateY(-2px);
}

.show-product-hot__badge {
    grid-area: badge;
    align-self: end;
    justify-self: start;
    max-width: 260px;
    background: #ffffff;
    border: 1px solid #a6dfb5;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(-40px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.show-product-hot__badge-title {
    color: var(--color-green);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: underline;
}

.show-product-hot__badge-text {
    font-size: 16px;
    color: var(--color-black-none);
    line-height: 1.45;
    text-transform: uppercase;
    font-weight: 600;
}

.show-product-hot__media:hover~.show-product-hot__content,
.show-product-hot__media:hover~.show-product-hot__badge,
.show-product-hot__grid:hover .show-product-hot__content,
.show-product-hot__grid:hover .show-product-hot__badge {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.show-product-hot__grid:hover .show-product-hot__intro {
    transform: translateY(18px);
}

.show-product-hot__grid:hover .show-product-hot__media {
    transform: translateY(-18px);
    margin-top: 10px;
}

@media (prefers-reduced-motion: reduce) {

    .show-product-hot__content,
    .show-product-hot__badge {
        transition: none;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 991px) {
    .show-product-hot__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "intro"
            "media"
            "content"
            "badge";
    }

    .show-product-hot__intro,
    .show-product-hot__content,
    .show-product-hot__badge {
        max-width: none;
    }

    .show-product-hot__media {
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .show-product-hot__badge-text {
        text-transform: none;
    }
}

.show__color_section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    overflow: hidden;
}

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

.show-color__carousel {
    position: relative;
}

.show-color__slide {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.show-color__media {
    position: absolute;
    inset: 0;
}

.show-color__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.show-color__line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1044px, 100%);
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
    user-select: none;
}

.show-color__card-float {
    position: absolute;
    top: 40px;
    left: 0;
    transform: translate3d(var(--show-color-card-x-px, max(16px, (100vw - 1440px) / 2)), 0, 0);
    width: 320px;
    height: auto;
    max-width: calc(100% - 32px);
    z-index: 2;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.show-color__card {
    width: 100%;
    height: 440px;
    background: #FFFFFF;
    border-radius: 0px 130px 0px 0px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.show-color__card-swatch {
    width: 280px;
    height: 180px;
    background: #79AE2A;
    border-radius: 0px 110px 0px 0px;
    flex: none;
    margin: 0 auto 20px;
}

.show-color__card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    margin: 0 20px 10px;
}

.show-color__card-title {
    max-width: 280px;
    width: 100%;
    height: auto;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.33;
    color: #000000;
    margin: 0;
    word-wrap: break-word;
}

.show-color__card-desc {
    max-width: 280px;
    width: 100%;
    height: auto;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #303030;
    margin: 0;
    word-wrap: break-word;
}

.show-color__card--blue .show-color__card-swatch {
    background: #71addc;
}

.show-color__card--green .show-color__card-swatch {
    background: #79ae2a;
}

.show-color__card--purple .show-color__card-swatch {
    background: #3a2c73;
}

.show-color__card--leaf .show-color__card-swatch {
    background: #7eb445;
}

@media (max-width: 991px) {
    .show-color__slide {
        height: 480px;
    }

    .show-color__card-float {
        top: 24px;
        left: 50%;
        transform: translateX(-50%);
        transition: none;
    }
    .show-color__card-swatch {
        width: 240px;
        height: 160px;
    }

    .show-color__nav {
        display: none;
    }
}

/* Nav Badge */
.show-color__nav {
    position: absolute;
    top: 50%;
    right: -17%;
    transform: translateY(-50%);
    z-index: 10;
}

.show-color__nav-badge {
    position: relative;
    width: 504px;
    height: 504px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-color__badge-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.show-color__badge-text {
    font-size: 25.91px;
    text-transform: uppercase;
    fill: #fff;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.show-color__nav-next {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #1A903B;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
    padding: 0;
}

.show-color__nav-next i {
    font-size: 14px;
    transform: rotate(0deg);
}

.show-color__nav-next:hover {
    background: #14702e;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Show Color Marquee */
.show-color__marquee {
    width: 100%;
    overflow: hidden;
    padding: 18px 0;
}

.show-color__marquee-inner {
    display: flex;
    width: max-content;
    animation: showColorMarquee 18s linear infinite;
}

.show-color__marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    flex: 0 0 auto;
}

.show-color__marquee-text {
    font-size: clamp(45px, 6vw, 72px);
    font-weight: 600;
    color: var(--color-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

@keyframes showColorMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .show-color__marquee-inner {
        animation: none;
    }
}

@media (max-width: 1440px) {
    .show-color__nav {
        right: 0;
        transform: translateY(-50%) scale(0.8);
    }
}


/* Standard */
.standard__section {
    padding: 120px 0;
}

.standard__header {
    text-align: start;
    margin-bottom: 56px;
}

.standard__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-black);
    margin-bottom: 20px;
}

.standard__desc {
    font-size: 1rem;
    color: var(--color-black-none);
    margin: 0;
    line-height: 1.6;
}

.standard__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.standard__item {
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    position: relative;
}

.standard__item:nth-child(4n) {
    border-right: none;
}

.standard__item:nth-last-child(-n+4) {
    border-bottom: none;
}

.standard__item:hover {
    background: rgba(26, 144, 59, 0.02);
}

.standard__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #F6F6F6;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 10px;
}

.standard__item_title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg-black);
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.standard__item_desc {
    font-size: 0.875rem;
    color: var(--bg-black);
    margin: 0;
    line-height: 1.4;
}

/* Partner */
.partner__section {
    padding: 90px 0;
}

.partner__header {
    text-align: center;
    margin-bottom: 56px;
}

.partner__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-black);
    margin-bottom: 20px;
}

.partner__desc {
    font-size: 1.125rem;
    color: var(--bg-black);
    margin: 0;
    line-height: 1.6;
}

.partner__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.partner__item {
    border: 1px solid var(--color-line);
    overflow: hidden;
}

.partner__item img:hover {
    transform: scale(1.05);
    transition: all 0.4s ease;
}

/* Category Hot Section */
.category__hot__section {
    padding: 0px 0 90px;
}

.category-hot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.category-hot__heading {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.category-hot__title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
    line-height: 1.2;
}

.category-hot__title-accent {
    color: var(--color-green);
}

.category-hot__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.category-hot__tab {
    border: none;
    background: var(--color-footer);
    color: var(--bg-black);
    padding: 8px 21px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease;
    cursor: pointer;
}

.category-hot__tab:hover {
    border-color: var(--color-green);
    color: var(--color-green);
}

.category-hot__tab.is-active {
    background: #2b2b2b;
    border-color: #2b2b2b;
    color: var(--color-white);
}

.category-hot__view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 12px;
    background: #efefef;
    color: #4E4E4E;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.category-hot__view-all:hover {
    background: #e5e5e5;
    color: #1f1f1f;
}

.category-hot__body {
    position: relative;
}

.category__hot__section.is-loading .category-hot__carousel {
    opacity: 0.6;
    pointer-events: none;
}

.category-hot__carousel {
    margin-top: 24px;
}

.category-hot__carousel .owl-stage {
    display: flex;
}

.category-hot__carousel .owl-item {
    display: flex;
    height: auto;
}

.category-hot__card {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: left;
    width: 100%;
    transition: transform 0.2s ease;
}

.category-hot__card:hover {
    transform: translateY(-4px);
}

.category-hot__card-media {
    padding-top: 4px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-hot__media-frame {
    width: 100%;
    background: var(--color-footer);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-hot__card-media img {
    max-width: 100%;
}

.category-hot__card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    color: var(--color-black-none);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.category-hot__card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    margin: 0;
    text-transform: uppercase;
}

.category-hot__empty {
    text-align: center;
    color: var(--color-gray-dark);
    font-size: 14px;
    margin-top: 20px;
}

.category-hot__empty.is-hidden {
    display: none;
}

.category-hot__nav-btn {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--color-black-none);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.category-hot__nav-btn i {
    font-size: 16px;
}

/* Project Hot */

.project__hot_section {
    padding: 90px 0;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
}

.project-hot__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.project-hot__title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
    line-height: 1.2;
}

.project-hot__title-accent {
    color: var(--color-green);
}

.project-hot__view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-black-none);
    background-color: var(--color-footer);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    text-transform: uppercase;
}

.project-hot__view-all:hover {
    color: var(--color-green);
    gap: 12px;
}

.project-hot__view-all i {
    font-size: 14px;
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.project-hot__view-all:hover i {
    transform: translateX(4px);
}

.project-hot__content {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.project-hot__media {
    flex: 0 0 52%;
}

.project-hot__media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "main thumb1"
        "thumb2 thumb2";
    gap: 20px;
}

.project-hot__media-item {
    overflow: hidden;
    position: relative;
}

.project-hot__media-item--main {
    grid-area: main;
    aspect-ratio: 4 / 3;
}

.project-hot__media-item--thumb-one {
    grid-area: thumb1;
    aspect-ratio: 4 / 3;
}

.project-hot__media-item--thumb-two {
    grid-area: thumb2;
    aspect-ratio: 16 / 9;
}

.project-hot__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-hot__list {
    flex: 1;
    min-width: 0;
}

.project-hot__list-inner {
    --project-hot-item-gap: 14px;
    --project-hot-item-height: 140px;
    max-height: calc(4 * var(--project-hot-item-height) + 3 * var(--project-hot-item-gap));
    overflow-y: auto;
    padding-right: 10px;
}

.project-hot__item {
    display: block;
    padding: 16px 18px;
    background: var(--color-white);
    border: 1px solid #e6e6e6;
    min-height: var(--project-hot-item-height);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.project-hot__media-item:nth-child(2) {
    border-radius: 0 200px 0 0;
}

.project-hot__item+.project-hot__item {
    margin-top: var(--project-hot-item-gap);
}

.project-hot__item:hover,
.project-hot__item.is-active {
    background-color: #F6F6F6;
}

.project-hot__item-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 6px;
}

.project-hot__item-label,
.project-hot__item-year {
    color: var(--color-black);
    font-weight: 600;
}

.project-hot__item-rail {
    flex: 1;
    min-width: 40px;
    height: 1px;
    background: var(--color-green);
}

.project-hot__item.is-active .project-hot__item-title,
.project-hot__item:hover .project-hot__item-title {
    color: var(--color-green);
}

.project-hot__item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 6px;
}

.project-hot__item-location {
    font-size: 14px;
    color: var(--color-black-none);
    line-height: 1.4;
}

.project-hot__item-location p {
    margin: 0;
}

.project-hot__empty {
    text-align: center;
    color: var(--color-gray-dark);
    padding: 24px;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px dashed #dcdcdc;
}

@media (max-width: 991px) {
    .project-hot__content {
        flex-direction: column;
        gap: 24px;
    }

    .project-hot__divider {
        display: none;
    }

    .project-hot__media {
        flex: 1 1 auto;
    }

    .project-hot__list-inner {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .project-hot__media-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "thumb1"
            "thumb2";
    }
}

@media (max-width: 576px) {
    .project-hot__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .project-hot__title {
        font-size: 1.5rem;
    }
}

/* News List */
.news__list_section {
    padding: 90px 0;
}

.news__list_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.news__list_title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.news__list_view_all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-black-none);
    background-color: var(--color-footer);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.news__list_view_all:hover {
    color: var(--color-green);
    gap: 12px;
}

.news__list_view_all i {
    font-size: 14px;
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.news__list_view_all:hover i {
    transform: translateX(4px);
}

.news__list_wrapper {
    position: relative;
}

.news__list_nav_left {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.news__list_nav_right {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.news__list_nav_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2d2d2d;
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.news__list_nav_btn:hover {
    background: var(--color-green);
    transform: scale(1.1);
}

.news__list_nav_btn i {
    font-size: 18px;
}

.owl-news-list {
    margin: 0;
}

.news__list_item {
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news__list_image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.news__list_image a {
    display: block;
}

.news__list_image img {
    width: 100%;
}

.news__list_content {
    padding-top: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news__list_meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.news__list_brand {
    color: var(--color-green);
    font-weight: 600;
    line-height: 1.4;
}

.news__list_separator {
    color: var(--color-green);
    font-size: 14px;
}

.news__list_date {
    color: var(--color-black);
    font-weight: 600;
}

.news__list_item_title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 8px 0;
    min-height: 50px;
    text-transform: uppercase;
}

.news__list_item_title a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news__list_item_title a:hover {
    color: var(--color-green);
}

.news__list_desc {
    color: var(--color-black-none);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}


.scroll-circle {
    position: fixed;
    right: 20px;
    bottom: 140px;
    width: 50px;
    height: 50px;
    z-index: 999;
    cursor: pointer;
}

.scroll-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-circle .bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 5;
}

.scroll-circle .progress {
    fill: none;
    stroke: #007bff;
    stroke-width: 5;
    stroke-dasharray: 163.36;
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.2s linear;
}

.scroll-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #007bff;
    font-size: 16px;
    pointer-events: none;
}

.contact-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 0px;
    background: #fff;
}

.contact-btn {
    background: #ffd700;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

/** Footer **/
.footer {
    background-color: var(--color-footer);
}

.footer_grid {
    display: grid;
    grid-template-columns: 405px 1fr;
    gap: 40px;
    align-items: start;
}

/* Footer Image Column */
.footer_image_column {
    height: 100%;
}

.footer_image_wrapper {
    width: 100%;
    overflow: hidden;
}

/* Footer Middle Column */
.footer_middle_column {
    display: flex;
    flex-direction: column;
    padding-right: 12%;
}

.footer__middle__bottom {
    display: flex;
    gap: 30px;
    padding: 38px 0;
}

/* Newsletter Section */
.footer_newsletter {
    padding: 32px 0;
    border-bottom: 1px solid var(--color-line);
}

.footer_newsletter__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer_newsletter_title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.footer_newsletter_desc {
    font-size: 13px;
    color: var(--color-blue);
    line-height: 1.5;
    margin-top: 14px;
    margin-bottom: 0;
}

.footer_newsletter_form {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-white);
    overflow: hidden;
    height: 50px;
    padding-right: 8px;
}

.footer_newsletter_input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.footer_newsletter_input::placeholder {
    color: var(--color-black-none);
}

.footer_newsletter_submit {
    color: var(--color-black-none);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    background: var(--color-footer);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer_newsletter_submit:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.footer_newsletter_submit i {
    font-size: 16px;
}

/* Locations Section */
.footer_locations {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 18px;
}

.footer_location_item {}

.footer_location_title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-black);
}

.footer_location_info p {
    color: var(--color-black-none);
    line-height: 1.6;
    margin-bottom: 6px;
    font-weight: 500;
}

.footer_location_info strong,
.footer_contact_list strong {
    color: var(--color-black);
    font-weight: 500;
}

.footer_location_info a {
    color: var(--color-black-none);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_location_info a:hover {
    color: var(--color-text);
    text-decoration: underline;
}

/* Footer Right Column */
.footer_right_column {
    display: flex;
    float: 1;
    flex-direction: column;
    gap: 24px;
}

.footer_section_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
}

/* Contact Section */
.footer_contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_contact ul li {
    font-size: 1rem;
    color: var(--color-black-none);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer_contact ul a {
    color: var(--color-black-none);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_contact ul a:hover {
    color: var(--color-text);
    text-decoration: underline;
}

/* Support Section */
.footer_support_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_support_list li {
    margin-bottom: 6px;
}

.footer_support_list a {
    font-size: 1rem;
    color: var(--color-black-none);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer_support_list a:hover {
    color: var(--color-text);
}

/* Social Media Section */
.footer_social_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_social_list li {
    margin-bottom: 4px;
}

.footer_social_list a {
    font-size: 16px;
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer_social_list i {
    font-size: 12px;
    color: var(--color-gray-dark);
}

/* Copyright Section */
.footer_copyright {
    background: var(--color-black-none);
    padding: 9px 0;
}

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

.footer_copyright_content p {
    font-size: 14px;
    color: var(--color-white);
    margin: 0;
}

.footer_copyright_content a {
    color: var(--color-white);
}

.footer_copyright_social {
    display: flex;
    gap: 15px;
}

.footer_copyright_social a {
    color: var(--color-white);
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer_copyright_social a:hover {
    color: var(--color-green);
}

/** Pagination **/
.pagination-home {
    margin-top: 30px;
}

.pagination-home .pagination .page-item .page-link {
    color: #555555;
    font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #555555;
    border-color: #555555;
}

.pagination {
    display: flex;
    text-align: center;
    margin-top: 15px;
    list-style: none;
    justify-content: center;
}

.pagination a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 2px 3px 2px;
    color: #333;
    background: #eee;
    border: 1px solid rgba(161, 161, 161, 0.4);
    font-size: 12px;
    padding: 3px 10px 5px 10px;
    border-radius: 2px;
    text-decoration: none;
}

.pagination a:hover {
    background: #ccc;
}

/** Button loading **/
.btn-loading {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading span {
    display: none;
}

.btn-loading.is-loading span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spinLoading 0.75s linear infinite;
}

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

/** Notify **/
.notyf {
    padding: 15px;
    z-index: 9999999999 !important;
}

.notyf__message {
    white-space: nowrap;
}

.notyf__toast {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 20px 12px;
    font-size: 14px;
    font-weight: 500;
    max-width: 100%;
}

.notyf__ripple {
    opacity: 0.12;
}

.notyf__wrapper {
    padding: 4px 8px;
}

.notyf__dismiss-btn {
    background: transparent;
    opacity: 1;
    cursor: pointer;
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

.notyf__dismiss {
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

/** Menu mobile **/
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s,
        visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -82%;
    width: 82%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
}

.mobile-logo {
    max-width: 150px;
}

.mobile-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-color-black);
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.mobile-search form {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    border: var(--text-color-red) dashed 1px;
    border-radius: 20px;
}

.mobile-search input {
    width: 100px;
    padding: 8px 10px;
    outline: none;
    font-size: 14px;
    border: none;
}

.mobile-search button {
    background: var(--background-button);
    border: none;
    outline: none;
    padding: 8px 8px;
    border-radius: 30px;
    cursor: pointer;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--text-color-white);
}

.mobile-search.active button {
    background: var(--main-background);
}

.mobile-search.active button i {
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(7465%) hue-rotate(0deg) brightness(91%) contrast(122%);
    color: var(--text-color-red);
}

.mobile-search input::placeholder {
    color: var(--text-color-red);
    font-weight: 500;
    font-size: 16px;
}

.mobile-header .mobile-search {
    padding: 0 10px;
    margin-left: 20%;
}

.mobile-header .mobile-search form {
    justify-content: flex-end;
}

.mobile-menu .mobile-search {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #ebebeb;
}

.mobile-menu .mobile-search form {
    justify-content: space-between;
}

.mobile-menu .mobile-search input {
    width: 100%;
    opacity: 1;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.mobile-menu .mobile-search button {
    position: absolute;
    right: 5px;
}

.mobile-nav {
    padding-bottom: 10px;
    flex: 1;
    background: #f8f9fa;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item:not(:first-child) {
    border-top: 1px solid #ebebeb;
}

.mobile-menu-item a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--text-color-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-item.active a {
    color: var(--text-color-red);
}

.mobile-menu-item i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-top: 1px solid #ebebeb;
}

.mobile-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--text-color-black);
    text-decoration: none;
    transition:
        background-color 0.3s,
        color 0.3s;
}

.mobile-social-link:hover {
    background-color: var(--background-blue);
    color: #fff;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-logo {
    max-width: 140px;
}

.mobile-header-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-header-actions {
    display: flex;
}

.mobile-search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Language Section */
.mobile-language-section {
    border-top: 1px solid #ddd;
    padding: 15px;
    margin-top: auto;
    background-color: #f8f9fa;
}

.mobile-language-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 550;
    color: var(--text-color-black);
}

.mobile-language-title i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    color: var(--text-color-blue);
    font-size: 14px;
}

.mobile-language-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color-black);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-lang-btn .flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 12px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.mobile-lang-btn span {
    flex: 1;
    font-weight: 500;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-footer {
    padding: 15px;
    background: #f8f8f8;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.mobile-menu-footer .support-info {
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-footer .support-info p {
    margin: 5px 0;
    color: #333;
}

.mobile-menu-footer .support-info a {
    color: #007bff;
    text-decoration: none;
}

/* MenuMobile submenu */
.mobile-has-submenu {
    position: relative;
}

.mobile-submenu-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.mobile-menu-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-submenu-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
    color: #888;
}

.mobile-submenu-arrow.rotated {
    transform: rotate(180deg);
}

.mobile-menu-item .active-span {
    font-weight: 600;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 0;
    transition: 0.2s all;
    margin-bottom: 0;
}

.mobile-submenu.active {
    max-height: 800px;
    padding: 4px 0;
}

.mobile-submenu-item {
    list-style: none;
}

.mobile-submenu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-submenu-level-3 {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.mobile-submenu-level-3 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-4 {
    background-color: #f9f9f9;
    padding-left: 20px;
}

.mobile-submenu-level-4 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-5 {
    background-color: #f9f9f9;
    padding-left: 30px;
}

.mobile-submenu-level-5 .mobile-submenu-item a {
    font-size: 14px;
}

/** Static page **/
.static-main {
    padding-top: 10px;
    padding-bottom: 30px;
}

.title-main {
    font-size: 28px;
    color: #e60023;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
    margin: 16px 0;
}

/** Breadcrumb **/

.breadcrumb-nav {
    margin: 24px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--color-black-none);
    text-transform: uppercase;
}

.breadcrumb-link {
    color: var(--color-black-none);
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-link:hover {
    color: var(--color-green);
    background-color: transparent;
}

.breadcrumb-current {
    font-weight: bold;
    color: var(--color-black-none);
    padding: 0.3rem 0.5rem;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--color-black-none);
}

.breadcrumb-separator i {
    font-size: 0.65rem;
}

/** Empty data **/
.empty-state {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 24px;
}

.empty-content i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-content h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-content p {
    color: #999;
    margin-bottom: 30px;
}

.empty-content a {
    color: #333;
}

/** Phone fixed **/
.fixed-social {
    position: fixed;
    bottom: 4rem;
    right: 0.25rem;
    padding: 0.5rem;
    z-index: 1000;
}

.fixed-social .link-item {
    position: relative;
    margin-bottom: 0.625rem;
}

.fixed-social .link-item span {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0.625rem;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 0;
    font-size: 3.75rem;
    border: 3px solid rgb(46, 125, 50);
    border-right: 0;
}

.fixed-social .social-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0.625rem;
    background-color: var(--color-green);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition:
        transform 0.3s ease,
        -webkit-transform 0.3s ease;
}

.social-button svg {
    width: 24px;
    height: 24px;
}

.fixed-social .social-button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.fixed-social .social-button img {
    width: 1.75rem;
    height: auto;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
    }

    70% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
    }

    70% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
    }
}

.pulse-1 {
    -webkit-animation: pulse 0.8s infinite;
    animation: pulse 0.8s infinite;
}

.pulse-2 {
    -webkit-animation: pulse 1.2s infinite 0.2s;
    animation: pulse 1.2s infinite 0.2s;
}

.pulse-3 {
    -webkit-animation: pulse 1.5s infinite 0.4s;
    animation: pulse 1.5s infinite 0.4s;
}

.pulse-4 {
    -webkit-animation: pulse 1.7s infinite 0.1s;
    animation: pulse 1.7s infinite 0.1s;
}

.link-item-phone {
    position: relative;
}

.phone-sub {
    position: absolute;
    right: calc(100% + 12px);
    min-width: 150px;
    max-width: 250px;
    background-color: var(--color-green);
    border-radius: 6px;
    bottom: 0px;
    transform-origin: bottom right;
    transform: scale(0);
    transition: 0.3s all;
}

.phone-sub.open {
    transform: scale(1);
}

.phone-sub-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    border-bottom: 1px solid #e3e3e3;
    color: #fff;
}

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

.phone-sub-item i {
    color: #fff;
    transform: rotate(90deg);
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.phone-sub-item .icon {
    color: var(--color-01);
    width: 30px;
    height: 30px;
    margin-right: 5px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.phone-sub-item .icon svg {
    fill: var(--color-01);
}

.phone-sub-item:hover {
    span:not(.icon) {
        opacity: 0.6;
    }
}

/** Google translate **/
.skiptranslate {
    display: none;
}

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

/** Go top **/
.go-top {
    position: fixed;
    bottom: 15px;
    right: 12px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 400ms linear;
    background: transparent;
}

.go-top.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f077";
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    font-weight: 900;
    color: var(--color-green);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 400ms linear;
}

.go-top svg path {
    fill: none;
}

.go-top svg.progress-circle path {
    stroke: var(--color-green);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 400ms linear;
}

/** CSS Content **/

.content-center-v1 {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-black-none);
    margin-bottom: 1rem;
}

.content-center-v1 img {
    height: auto;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-center-v1 p {
    margin-bottom: 1rem;
}

.content-center-v1 p img {
    margin-bottom: 0px;
}

.content-center-v1 a:hover {
    text-decoration: underline;
}

.content-center-v1 ul,
.content-center-v1 ol {
    margin-left: 17px;
    margin-bottom: 1rem;
}

.content-center-v1 ul:last-child,
.content-center-v1 ol:last-child {
    margin-bottom: 0;
}

.coppy_right {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition:
        color 0.3s ease,
        text-shadow 0.3s ease,
        transform 0.3s ease;
    display: inline-block;
}

.coppy_right:hover {
    color: #0800e6;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(1, 129, 248, 0.7);
    transform: translateY(-2px);
}