@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins/Poppins-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-poppins: "Poppins", sans-serif;
    --bg-header-top: #ebebeb;
    --bg-footer: #048629;
    --bg-copyright: #ebebeb;
    --bg-body: #ffffff;
    --bg-menu: #ffffff;
    --bg-white: #ffffff;
    --bg-secondary: #fff5da;
    --bg-green: #048629;

    --color-red: #e60023;
    --color-body: #484f56;
    --color-brown: #92161e;
    --color-white: #ffffff;
    --color-gradient: linear-gradient(90deg, #048629 0%, #fab700 100%);
    --color-black: #2d3136;
    --color-green: #048629;
    --color-yellow-light: #ffeebe;
    --color-yellow: #fab700;
}

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

a {
    color: var(--color-black);
    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: 0 0 15px;
}

/* 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);
}

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

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

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

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.header__gradient {
    position: absolute;
    top: 0;
    display: block;
    pointer-events: none;
    z-index: 0;
}


.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);
}


/** 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;
}

/** 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;
}

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

.menu {
    position: relative;
    z-index: 2;
    padding: 0.75rem 0;
}

.menu:not(.menu-fixed) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    animation: slideDown 0.3s ease;
}

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

    to {
        transform: translateY(0);
    }
}

.menu__bar {
    width: min(66.375rem, 100%);
    height: 4.0625rem;
    margin: 0 auto;
    border-radius: 3.75rem;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.menu-fixed .menu__bar {
    box-shadow: 0 0.5rem 1.25rem rgba(45, 49, 54, 0.12);
}

.menu__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 1.5rem;
    gap: 7rem;
}

.menu__brand {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    text-decoration: none;
    min-width: 0;
}

.menu__brand-logo {
    object-fit: cover;
}

.menu__brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.menu__nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu__nav-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-black);
    text-decoration: none;
    line-height: 1.25;
    transition: opacity 0.2s ease;
}

.menu__nav-link:hover {
    color: var(--color-green);
}

.menu__nav-item.is-active .menu__nav-link {
    color: var(--color-green);
    font-weight: 600;
}

.menu__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    border-radius: 1.875rem;
    background: var(--color-gradient);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
}

.menu__cta:hover {
    opacity: 0.9;
}

/* Slider show */
.slideshow {
    position: relative;
    z-index: 1;
}

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

.slideshow .owl-dots {
    position: absolute;
    left: 15%;
    top: 50%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: transparent;
}

.slideshow .owl-dots .owl-dot.active span {
    height: 3.125rem;
    background: var(--color-green);
    border-radius: 2rem;
}

.slideshow .owl-dots .owl-dot span {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--color-white);
    border-radius: 50%;
    margin: 0;
}

.slider-item a {
    position: relative;
    display: block;
    overflow: hidden;
}

.slider-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-item a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 100%
    );
    pointer-events: none;
}

.slideshow__content {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 53.5rem;
    color: var(--color-white);
}

.slideshow__title {
    margin: 0;
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
}

.slideshow__desc {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    max-width: 53.5rem;
}

.slider-nav {
    position: absolute;
    right: 10%;
    bottom: 30%;
    display: flex;
    gap: 0.625rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 0;
    border-radius: 2.1875rem;
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-btn i {
    font-size: 2rem;
    color: var(--color-white);
}

/** About home **/
.about-home {
    position: relative;
    padding: 5rem 0;
    background: var(--color-white);
    overflow: hidden;
}

.about-home::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1.5rem;
    height: 22.625rem;
    background: url("../images/about-pattern.svg") bottom center / cover
        no-repeat;
    pointer-events: none;
    z-index: 0;
}

.about-home__container {
    position: relative;
    z-index: 1;
}

.about-home__summary {
    display: grid;
    grid-template-columns: minmax(0, 24.0625rem) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3.75rem;
}

.about-home__summary-media img {
    width: 100%;
    object-fit: cover;
    border-radius: 2.5rem;
    display: block;
}

.about-home__summary-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-home__desc {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-body);
}

.about-home__desc-strong {
    font-weight: 600;
    color: var(--color-green);
}

.about-home__btn {
    max-width: 9.375rem;
}

.about-home__btn-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
}

.about-home__btn-icon {
    width: 0.875rem;
    height: 0.875rem;
    display: block;
}


.about-home__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.about-home__stat {
    position: relative;
    background: var(--color-yellow-light);
    border-radius: 1.5rem;
    padding: 1.75rem 0.75rem;
    text-align: center;
}

.about-home__stat-accent {
    position: absolute;
    left: -0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.4375rem;
    height: 5rem;
    background: var(--color-green);
    border-radius: 0.625rem;
}

.about-home__stat-value {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-green);
}

.about-home__stat-value span {
    font-size: 2.25rem;
}

.about-home__stat-label {
    margin-top: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-black);
}

.about-home__collage {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    height: 25.3125rem;
}

.about-home__collage-img {
    position: absolute;
    border-radius: 1.875rem;
    border: 0.125rem solid var(--color-white);
    object-fit: cover;
    display: block;
    width: auto;
    height: auto;
    max-width: none;
}

.about-home__collage-img--top {
    width: 19.375rem;
    aspect-ratio: 310 / 205;
    right: 2.9375rem;
    top: -3.4375rem;
}

.about-home__collage-img--main {
    width: 25.3125rem;
    aspect-ratio: 405 / 375;
    left: 0.03125rem;
    top: 0.9375rem;
}

.about-home__collage-img--bottom {
    width: 22.8125rem;
    aspect-ratio: 365 / 270;
    right: 0;
    bottom: -1.5rem;
}

/** The numbers **/
.the-numbers {
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.the-numbers__inner {
    padding: 5.375rem 0 4rem;
}

.the-numbers__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin: 0 auto 3rem;
    text-align: center;
    max-width: 41.75rem;
}
.the-numbers__header .heading__title .heading__title--left h2 {
    justify-content: center;
}
.the-numbers__header .heading__title--left h2:before {
    left: 50%;
    transform: translateX(-50%);
}
.the-numbers__carousel-wrap {
    position: relative;
    margin: 0 auto;
}

.the-numbers__nav-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    padding: 0.9375rem;
    border: 0;
    border-radius: 2.1875rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    cursor: pointer;
    transition: background 0.3s ease;
}

.the-numbers__nav-btn i {
    font-size: 2rem;
    color: var(--color-white);
}

.the-numbers__nav-btn--prev {
    left: clamp(0.75rem, 5vw, 5rem);
}

.the-numbers__nav-btn--next {
    right: clamp(0.75rem, 5vw, 5rem);
}

.the-numbers__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 100%;
}

.owl-the-numbers .owl-item.center .the-numbers__slide {
    width: 100%;
}

.the-numbers__slide-media {
    width: 100%;
    border-radius: 1.875rem;
    overflow: hidden;
    max-height: 26.25rem;
}

.owl-the-numbers .owl-item.center .the-numbers__slide-media {
    max-height: none;
}

.the-numbers__slide-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.the-numbers__caption {
    display: none;
    margin: 0;
    max-width: 37.375rem;
    padding: 0 1rem;
    margin-top: 1.25rem;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: var(--color-black);
}

.owl-the-numbers .owl-item.center .the-numbers__caption {
    display: block;
}

.the-numbers__caption-label {
    font-weight: 600;
    color: #8b6600;
}

.the-numbers__caption-meta {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.the-numbers__caption-value {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--color-green);
}

.the-numbers__caption-suffix {
    font-weight: 400;
    color: var(--color-black);
}
/* Map home */
.map-home {
    position: relative;
    overflow: hidden;
}

.map-home__inner {
    padding: 4rem 0;
}

.map-home__item {
    animation: mapHomeFadeIn 0.5s ease-out;
}

.map-home__item[hidden] {
    display: none;
}

@keyframes mapHomeFadeIn {
    from {
        opacity: 0;
        transform: translateX(1.5rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.map-home__grid {
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    gap: 2.5rem;
    align-items: center;
}

/* Map area */
.map-home__map {
    position: relative;
}

.map-home__map-image {
    width: 100%;
    display: block;
}

/* Content area */
.map-home__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.map-home__nav {
    align-self: flex-start;
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 7.8125rem;
    height: 7.9375rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #8b6600;
    background: transparent;
    box-shadow: 0 0.25rem 1rem rgba(250, 183, 0, 0.25);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.map-home__nav::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(251, 226, 114, 0.8) 0 1.40625rem,
        rgba(252, 229, 165, 0.65) 1.40625rem 3.125rem,
        rgba(253, 244, 204, 0.9) 3.125rem 100%
    );
}

.map-home__nav::after {
    content: "";
    position: absolute;
    inset: -0.875rem;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(250, 183, 0, 0.65) 0%,
        rgba(250, 183, 0, 0.28) 45%,
        rgba(250, 183, 0, 0) 70%
    );
    filter: blur(0.95rem);
    opacity: 0.55;
    transform: scale(0.98);
    animation: map-home-nav-glow 2.2s ease-in-out infinite;
    pointer-events: none;
}

.map-home__nav::before {
    z-index: 1;
}

.map-home__nav::after {
    z-index: 0;
}

@keyframes map-home-nav-glow {
    0% {
        opacity: 0.35;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.14);
    }
    100% {
        opacity: 0.35;
        transform: scale(0.95);
    }
}

@media (prefers-reduced-motion: reduce) {
    .map-home__nav::after {
        animation: none;
        opacity: 0.2;
        transform: none;
    }
}

.map-home__nav svg {
    display: block;
    position: relative;
    z-index: 2;
    width: 1.5rem;
    height: 1.5rem;
}

.map-home__nav:hover {
    transform: scale(1.06);
    box-shadow: 0 0.375rem 1.5rem rgba(250, 183, 0, 0.35);
}

.map-home__nav:active {
    transform: scale(0.96);
}

.map-home__nav--prev svg {
    transform: rotate(180deg);
}

.map-home__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
/* What we export */
.what-export {
    padding-block: 4rem 5rem;
}
.what-export__header {
    margin-bottom: 2rem;
}

.what-export__header .heading__title--left p {
    margin-top: 1rem;
    margin-bottom: 0;
    max-width: 50rem;
    font-size: 1rem;
    line-height: 1.7;
}

.what-export__track {
    --what-export-w-active: 24rem;
    --what-export-h-active: 31.25rem;
    --what-export-w: 13.875rem;
    --what-export-h: 28.75rem;
    --what-export-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --what-export-dur: 0.5s;

    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
    gap: 1.25rem;
    min-height: var(--what-export-h-active);
    overflow-x: visible;
    padding-bottom: 0.25rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-gutter: stable;
}

.what-export__item {
    position: relative;
    flex: 0 0 auto;
    width: var(--what-export-w);
    height: var(--what-export-h);
    border-radius: 0.5rem;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition:
        width var(--what-export-dur) var(--what-export-ease),
        height var(--what-export-dur) var(--what-export-ease),
        box-shadow var(--what-export-dur) var(--what-export-ease);
}

.what-export__item.is-active {
    width: var(--what-export-w-active);
    height: var(--what-export-h-active);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
}

.what-export__item:focus-visible {
    outline: 0.125rem solid currentColor;
    outline-offset: 0.25rem;
}

.what-export__media {
    position: absolute;
    inset: 0;
}

.what-export__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform calc(var(--what-export-dur) + 0.1s)
        var(--what-export-ease);
}

.what-export__item.is-active .what-export__media img {
    transform: scale(1);
}

.what-export__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--what-export-dur) var(--what-export-ease);
}

.what-export__item.is-active .what-export__overlay {
    opacity: 0.5;
}

.what-export__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 1.25rem 1.5rem 1.5rem;
    color: var(--color-white);
    opacity: 0;
    transform: translate3d(0, 0.75rem, 0);
    transition:
        opacity calc(var(--what-export-dur) * 0.85) var(--what-export-ease),
        transform calc(var(--what-export-dur) * 0.85) var(--what-export-ease);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.what-export__item.is-active .what-export__body {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.what-export__name {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-green);
    padding: 0.5rem 1.25rem;
    background: var(--color-white);
    border-radius: 1.5625rem;
}

.what-export__desc {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .what-export__item,
    .what-export__media img,
    .what-export__overlay,
    .what-export__body {
        transition-duration: 0.01ms;
    }
}

.map-home__desc {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}

.banner1 {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.news-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.news-video {
    flex: 1;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.news-list {
    width: 400px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-header h3 {
    color: #c72323;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.view-all {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.view-all i {
    margin-left: 5px;
    font-size: 12px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.news-item:last-child {
    border-bottom: none;
}

.news-image {
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.news-category {
    color: #c72323;
    font-size: 13px;
}

.news-date {
    color: #666;
    font-size: 13px;
}

.news-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 999;
}

.floating-contact a {
    width: 45px;
    height: 45px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 20px;
}

.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__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-main {
    background-color: var(--bg-footer);
    padding: 80px 0px 110px 0px;
}

.footer__logo {
    display: flex;
    justify-content: start;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
}

.footer__logo h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-white);
}

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

.flex-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid #b4bac0;
    text-align: end;
}

.footer-logo a {
    display: block;
}

.footer-text ul {
    margin-left: 17px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
}

.footer__infomation--list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer__infomation--list li {
    color: var(--color-white);
    font-size: 16px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-map {
    width: 100%;
    height: 250px;
    border: none;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #666;
    font-size: 16px;
}

.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--bg-copyright);
    background: var(--bg-copyright);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.copyright__policy {
    display: flex;
    justify-content: start;
    align-items: center;
    list-style: none;
    gap: 16px;
    margin-bottom: 0;
}

.copyright__policy--item a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #263064;
    transition: all 0.3s;
}

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

.copyright__text {
    font-size: 16px;
    font-weight: 400;
    color: #263064;
}

.google-iframe {
    position: relative;
    min-height: 300px;
}

.google-iframe iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

/** 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;
}

/** Heading title **/
.heading__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.heading__title--left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.heading__title--left h2 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: #048629;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
}

.heading__title--left h2:before {
    content: "";
    width: 100%;
    max-width: 135px;
    height: 3px;
    border-radius: 3px;
    background-color: #fab700;
    position: absolute;
    left: 0px;
    bottom: -10px;
    z-index: 1;
}

@keyframes gradientMove {
    0% {
        background-position: left;
    }
    50% {
        background-position: right;
    }
    100% {
        background-position: left;
    }
}

.heading__title--link {
    padding: 8px 20px;
    border-radius: 25px;
    background: var(--color-gradient);
    background-size: 200% 100%;
    background-position: left;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.heading__title--link:hover {
    animation: gradientMove 2s linear infinite;
}

/** Partner **/
.partner {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.partner-wrapper {
    padding: 10px 0;
}

.partner-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-item a {
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.partner-item img {
    max-width: 100%;
    height: auto;
    transition:
        transform 0.4s ease,
        box-shadow 0.3s ease;
    border-radius: 8px;
    filter: grayscale(20%);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.partner-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    filter: grayscale(0%);
}

.partner-wrapper {
    position: relative;
}

.partner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.partner-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partner-nav-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.partner-prev {
    left: 10px;
}

.partner-next {
    right: 10px;
}

.partner-nav-btn i {
    font-size: 16px;
    color: #333;
}

/** Product Hot **/
.product-hot {
    padding: 60px 0px;
}

.product-hot-wrapper {
    position: relative;
}

/* Product Hot Navigation Styles */
.product-hot {
    position: relative;
}

.product-hot-wrapper {
    position: relative;
}

.product-hot-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
    padding-left: 16px;
    padding-right: 16px;
}

.product-hot-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-hot-nav-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-hot-prev {
    left: 10px;
}

.product-hot-next {
    right: 10px;
}

.product-hot-nav-btn i {
    font-size: 16px;
    color: #333;
}

/* Existing Partner Navigation Styles */
.partner {
    position: relative;
}

.partner-wrapper {
    position: relative;
}

.partner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.partner-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partner-nav-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.partner-prev {
    left: 10px;
}

.partner-next {
    right: 10px;
}

.partner-nav-btn i {
    font-size: 16px;
    color: #333;
}

/** Product **/
.product-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-item .thumb {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
}

.product-item .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .thumb img {
    transform: scale(1.1);
}

/* Product Overlay for Add to Cart */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
    visibility: visible;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.product-item:hover .add-to-cart-btn {
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.add-to-cart-btn i {
    font-size: 16px;
}

/* Product Info */
.product-item .info {
    padding: 16px;
}

.product-item .info h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.product-item .info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-item .info h3 a:hover {
    color: #ff6b35;
}

.product-item .info p {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Price Styles */
.price-box {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-sale {
    color: #ff6b35;
    font-weight: 700;
    font-size: 18px;
}

.price-original {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 500;
}

.price-regular {
    color: #333;
    font-weight: 700;
    font-size: 18px;
}

.price-contact {
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

/** Product category **/
.product-category {
    padding: 60px 0;
}

/** News Index **/
.news-index {
    padding: 80px 0;
}

.owl-news .owl-dots .owl-dot span {
    width: 36px;
    height: 3px;
    border-radius: 3px;
}

.owl-news .owl-dots .owl-dot.active span {
    background: #048629;
}

.news-item-index {
    background: #fff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.news-item-index:hover {
    transform: translateY(-4px);
}

.news-item-index .thumb {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.news-item-index .thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.news-item-index .info {
    padding: 16px 0px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-item-index h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 56px;
}

.news-item-index h3 a {
    color: #2d3136;
    text-decoration: none;
}

.news__item--tag {
    font-size: 14px;
    font-weight: 400;
    padding: 8px 20px;
    border-radius: 30px;
    color: #8b6600;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 70px;
}

.news-item-index:hover h3 a {
    color: #048629;
}

.news-item-index p {
    font-size: 16px;
    color: #6d7883;
    line-height: 1.5;
    margin-bottom: auto;
}

.news__item--viewmore {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.news__item--viewmore a {
    display: inline-block;
    border: 1px solid #048629;
    padding: 6px 24px;
    border-radius: 24px;
    color: #048629;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news__item--viewmore a:hover {
    background: #048629;
    color: var(--color-white);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 12px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.btn-read-more .arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.btn-read-more:hover {
    color: #007bff;
}

.btn-read-more:hover .arrow {
    transform: translateX(6px);
}

/** 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 {
    width: 200px;
    padding: 15px;
    overflow: hidden;
    position: relative;
}

.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 {
    flex: 1;
    padding: 0 10px;
    max-width: 170px;
    margin-right: 10px;
}

.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;
}
/** PC language **/
.language__pc {
    display: flex;
    justify-content: end;
    gap: 6px;
    margin-right: 10px;
}

.language__pc--item img {
    max-height: 30px;
    width: auto;
    max-width: 100%;
}

/* 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;
}

.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: 16px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 8px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
}

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

.breadcrumb-link:hover {
    color: #e63946;
    background-color: transparent;
}

.breadcrumb-current {
    font-weight: bold;
    color: #333;
    padding: 0.3rem 0.5rem;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/** 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 var(--color-green);
    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(22, 146, 63, 0.7);
        box-shadow: 0 0 0 0 rgba(26, 165, 13, 0.7);
    }

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

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(22, 146, 63, 0);
        box-shadow: 0 0 0 0 rgba(26, 165, 13, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(22, 146, 63, 0.7);
        box-shadow: 0 0 0 0 rgba(26, 165, 13, 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 Pro";
    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: #3a3a3a;
    margin-bottom: 1rem;
}

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

.content-center-v1 p {
    word-spacing: 1.5px;
    text-align: justify;
    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);
}

/** Footer talk**/
.footer__talk--flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    padding-bottom: 40px;
}

.footer__talk--heading {
    max-width: 720px;
    width: 100%;
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 16px;
}

.footer__talk--heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
}

.footer__talk--heading p {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
}

.btn__contact--talk {
    background: var(--color-gradient);
    background-size: 200% 100%;
    background-position: left;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 35px;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 600;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.btn__contact--talk:hover {
    animation: gradientMove 2s linear infinite;
}

/** Quality **/
.quality {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.quality__flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.quality__item {
    width: calc((100% - 60px) / 4);
    padding: 24px 32px;
    display: flex;
    gap: 24px;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 20px;
}

.quality__item--image {
    max-width: 50px;
    width: 100%;
    max-height: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.quality__item--image img {
    max-width: 100%;
    width: auto;
    max-height: auto;
}

.quality__item--info p {
    font-size: 16px;
    font-weight: 400;
}

/** Why it matter **/

.whyit__matter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.whyit__matter--left {
    max-width: 700px;
    width: 100%;
}

.whyit__matter--link {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 35px;
    font-size: 20px;
    font-weight: 600;
    background: var(--color-gradient);
    background-size: 200% 100%;
    background-position: left;
    transition: all 0.3s ease;
    color: var(--color-white);
    text-decoration: none;
    cursor: pointer;
    margin-top: 40px;
}

.whyit__matter--link:hover {
    animation: gradientMove 2s linear infinite;
}

.whyit__matter {
    background: var(--bg-secondary);
    padding: 100px 0px 74px 0;
}

.whyit__matter--arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    overflow: visible;
}

.whyit__matter--arrow--item {
    opacity: 0;
    transform: translateY(6px) scale(0.98);
    animation: arrowFade 2.2s ease-in-out infinite;
    will-change: opacity, transform;
}

.i-small img {
    width: 50px;
    height: auto;
    display: block;
}
.i-mid img {
    width: 75px;
    height: auto;
    display: block;
}
.i-larg img {
    width: 100px;
    height: auto;
    display: block;
}

.i-small {
    animation-delay: 0s;
}
.i-mid {
    animation-delay: 0.45s;
}
.i-larg {
    animation-delay: 0.9s;
}

@keyframes arrowFade {
    0% {
        opacity: 0;
        transform: translateY(6px) scale(0.98);
    }
    20% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    55% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    80% {
        opacity: 0;
        transform: translateY(-2px) scale(1.02);
    }
    100% {
        opacity: 0;
        transform: translateY(-2px) scale(1.02);
    }
}

/* Product header */
.product-header {
    position: relative;
    padding-bottom: 7rem;
    overflow: hidden;
}

.product-header__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12rem;
}

.product-header__glass {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.product-header__title {
    margin: 0;
    font-weight: 700;
    font-size: 3.25rem;
    line-height: 1.15;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.product-header__lead {
    margin: 0;
    max-width: 69.0625rem;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-white);
}

.product-header__gallery {
    width: 100%;
    margin-top: 4.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    align-items: start;
}

.product-header__column {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    width: 100%;
}

.product-header__figure {
    position: relative;
    margin: 0;
    border-radius: 1.25rem;
    border: 0.125rem solid var(--color-white);
    overflow: hidden;
    background: var(--color-white);
}

.product-header__figure--tall {
    border-radius: 1.25rem;
}

.product-header__figure--fade::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.product-header__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-header__subtitle {
    margin: 0;
    margin-top: -10rem;
    position: relative;
    z-index: 2;
    align-self: stretch;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--color-body);
    text-align: left;
}

.product-header__subtitle-line {
    display: block;
}

.product-header__subtitle-accent {
    display: block;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-header__column--offset {
    margin-top: 1.25rem;
}

.mobile-header-logo a {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
