/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary: #00793E;
    --gray-primary: #5D5D5D;
    --gray-secondary: #707070;
    --light-gray: #929292;
    --bg-gray: #F8F8F9;
    --light-green-primary: #F1F9E4;
    --light-green-secondary: #E9F6D3;
    --black: #242526;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Kanit", serif;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    color: var(--primary);
}

h1 {
    font-size: 42px;
    font-weight: 500;
}

h2 {
    font-size: 32px;
    font-weight: 500;
}

h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
}

h4 {
    font-size: 18px;
    line-height: 1.5;
}

h1,h2,h3,h4,h5,h6 {

    margin-bottom: .8rem;
}

p {
    color: var(--gray-primary);
}

ol,ul {
    padding-left: 1.3rem;
}

.content h1 {
    font-size: 34px;
}
.content h2 {
    font-size: 30px;
}
.content ul {
    list-style: initial;
}

.text-white {
    color: var(--white);
}

.text-black {
    color: var(--black);
}

.text-green {
    color: var(--primary);
}

.text-gray {
    color: var(--gray-secondary);
}

.bg-white {
    background-color: var(--white);
}

.bg-gray {
    background-color: var(--bg-gray);
}

.p-truncate {
    display: -webkit-box;
    max-width: 100%;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-truncate.line-1 {
    -webkit-line-clamp: 1;
}

.p-truncate.line-2 {
    -webkit-line-clamp: 2;
}

.p-truncate.line-3 {
    -webkit-line-clamp: 3;
}

img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.border-rounded {
    border-radius: 10px;
}

.img-container {
    position: relative;
}

.nowrap {
    white-space: nowrap;
}

.box-shadow {
    box-shadow: 0 0 4px 4px #EBEBFF;
}

/* Section */
.p-section {
    padding: 60px 0;
}

/* Button */
.btn-all {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    border: 0;
    border-radius: 10px;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-green {
    color: var(--white) !important;
    background-color: var(--primary);
    padding: 12px 44px;
}
.btn-green:hover {
    background-color: #036D39;
}

.btn-light-green {
    color: var(--black) !important;
    background-color: var(--light-green-primary);
    padding: 12px 44px;
}
.btn-light-green:hover {
    background-color: var(--light-green-secondary);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid #1D1D1D;
    padding: 10px 20px;
    text-wrap: nowrap;
}
.btn-outline .icon {
    width: 8px;
    height: auto;
    opacity: 0;
    margin-left: -12px;
    transition: all .3s ease-in-out;
}
.btn-outline:hover,
.card-news:hover .btn-outline,
.card-article:hover .btn-outline {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover>.icon,
.card-news:hover .btn-outline>.icon,
.card-article:hover .btn-outline>.icon {
    opacity: 1;
    margin-left: 10px;
}

/* Page container */
.page-width {
    padding: 0 6%;
}

.load-filter {
    background: #fff;
    height: 100%;
    width: -webkit-fill-available;
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: .5;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
    background-color: var(--primary);
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

#header .img-logo {
    width: 120px;
}

main {
    margin-top: 98px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: var(--white);
    --bs-navbar-hover-color: var(--black);
    --bs-navbar-active-color: var(--black);
    --bs-navbar-brand-padding-y: 0.4rem;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-nav {
    --bs-nav-link-font-weight: 300;
}

.nav-link {
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 8px 12px;
    transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
}

.dropdown-toggle::after {
    display: none;
}

.nav-link:focus,
.nav-link:hover,
.nav-link.active {
    font-weight: 500;
    background-color: var(--white);
}

.dropdown-menu {
    --bs-dropdown-min-width: 340px;
    --bs-dropdown-spacer: 1px;
    --bs-dropdown-border-width: 0;
    --bs-dropdown-link-color: var(--black);
    --bs-dropdown-link-hover-color: var(--primary);
    --bs-dropdown-link-hover-bg: transparent;
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
}

.dropdown-item {
    font-size: 16px;
}

.dropdown-item:active,
.dropdown-item.active {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg);
}

.vertical-line {
    width: 1px;
    height: 24px;
    background: var(--white);
    margin: 0px 30px 0 20px;
}

.navbar .dropdown {
    cursor: pointer;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.changelang {
    font-size: 16px;
    font-weight: 300;
    margin-left: 45px;
}

svg#change-lang {
    width: 22px;
    height: auto;
    margin-right: 6px;
}

/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/
.search {
    position: relative;
    width: 200px;
}
.search.search-toggle {
    cursor: pointer;
}

.search .icon {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translate(0, -50%);
    height: 16px;
    width: 16px;
    cursor: pointer;
    z-index: 1;
}

.search input#search {
    width: 100%;
    background: var(--white);
    border: none;
    font-size: 12px;
    padding: 8px 30px 8px 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 50px;
    color: var(--black);
    outline-offset: -3px;
    outline-color: #fff;
}
.search input#search::placeholder {
    color: #CBCBCB;
}

.navbar .search input#search {
    pointer-events: none;
}

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 50%);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    opacity: 0;
    z-index: -1;
}
.search-popup.open {
    opacity: 1;
    z-index: 99;
}
.search-popup .search-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.search-container {
    width: 60%;
    margin: auto;
    margin-top: 128px;
}
.search-popup .form-control {
    font-size: 16px;
    padding: 6px 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--light-gray);
}
.search-popup .form-control::placeholder {
    color: var(--light-gray);
}
.serach-mobile svg {
    width: 20px;
    height: 20px;
}

.search-content a div {
    margin-bottom: 2rem;
}
.search-content .img-product {
    width: 130px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: opacity 0.8s ease;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: #00c9d0;
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader div {
    background-color: var(--primary);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.fade-out {
    opacity: 0;
}

/*--------------------------------------------------------------
# Hero Banner
--------------------------------------------------------------*/
.banner-swiper .swiper-slide {
    text-align: start;
    min-height: 100vh;
}
.banner-swiper p {
    color: var(--black);
}
.banner-swiper .swiper-button-prev {
    left: 6%;
}
.banner-swiper .swiper-button-next {
    right: 6%;
}
.banner-swiper .swiper-pagination-bullet {
    border: 1px solid #fff;
}
.banner-swiper .page-width {
    padding: 0 13%;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.breadcrumb {
    display: flex;
    align-items: end;
}
.breadcrumb a {
    color: inherit;
}
.breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 400;
    color: #CBCBCB;
}
.breadcrumb .breadcrumb-home {
    width: 36px;
    height: 36px;
}
.breadcrumb .breadcrumb-item.active {
    color: var(--light-gray);
}
.breadcrumb .vertical-line {
    width: .1em;
    height: 20px;
    background: #CBCBCB;
    margin: 0px 8px;
}
.breadcrumb .vertical-line.active {
    background: var(--light-gray);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.container-iframe {
    width: 100%;
    height: 500px;
}

.container-iframe iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
label {
    color: var(--gray-primary);
}
.form-control {
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 10px;
    color: var(--gray-primary);
    border-color: #ADADAD;
}
.form-control::placeholder {
    color: #CBCBCB;
    font-weight: 300;
}
.form-control:focus {
    color: var(--black);
    border-color: var(--primary);
    box-shadow: none;
}
.form-select {
    font-size: 16px;
    font-weight: 300;
    padding: 8px 20px;
    border-radius: 10px;
    color: #CBCBCB;
    border-color: #ADADAD;
}
.form-select option {
    color: var(--black);
}
.form-select:focus {
    color: #CBCBCB;
    border-color: var(--primary);
    box-shadow: none;
}
.form-select:valid {
    color: var(--gray-primary);
    font-weight: 400;
}
.form-check-input {
    border-color: #1D1D1D;
}
.form-check-input:focus {
    border-color: #1D1D1D;
    box-shadow: none;
}
.form-check-input:checked {
    background-color: var(--white);
    border-color: #1D1D1D;
}
.form-check-input[type=checkbox] {
    border-radius: 0;
    cursor: pointer;
}
.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2300793E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
    background-color: var(--white);
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/
.swiper-container {
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.swiper-button-next {
    transform: rotate(180deg);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--white);
    border: 1px solid var(--black);
    opacity: 1;
    margin: 0 6px !important;
}

.swiper-horizontal>.swiper-pagination-bullets {
    bottom: 0;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
}

.swiper-button-prev,
.swiper-button-next {
    opacity: 10%;
    width: 50px;
    height: 50px;
}

/*--------------------------------------------------------------
# Pagination Custom
--------------------------------------------------------------*/
.pagination {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}
.pagination a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--black);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    margin-right: 14px;
    text-decoration: none;
}
.pagination a:last-child {
    margin-right: 0;
}
.pagination a:hover,
.pagination a.active {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.pagination .page-btn {
    padding: 0;
}
.pagination .page-btn svg {
    width: 12px;
    height: 12px;
}
.pagination svg .chevr-cls-1 {
    transition: all .3s ease-in-out;
}
.pagination a:hover>svg .chevr-cls-1 {
    fill: var(--white);
}
.pagination .page-btn.prev svg {
    transform: rotate(180deg);
}
.pagination .page-btn.disabled {
    opacity: .5;
    pointer-events: none;
    cursor: default;
}
.pagination a.punctuate {
    pointer-events: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    background: var(--primary);
    font-size: 16px;
    font-weight: 300;
}

#footer .footer-top {
    padding: 50px 0;
}

#footer .footer-top .footer-logo {
    width: 150px;
}

#footer ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

#footer ul li {
    margin-bottom: 10px;
    text-transform: uppercase;
}

#footer ul li:hover>a {
    color: var(--white);
}

#footer p {
    color: var(--white);
}

#footer .media-body {
    color: var(--white);
    font-weight: 300;
}

#footer .media-body a {
    color: var(--white);
}

.social-icon {
    width: 36px;
    height: auto;
    margin-right: 16px;
}

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

#footer .copyright {
    background-color: var(--black);
    padding: 20px 0;
    text-align: center;
}

/*--------------------------------------------------------------
# Shadow on img
--------------------------------------------------------------*/
.shadow-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.category .swiper-container {
    padding: 0 85px;
}
.category-swiper {
    position: unset;
    padding: 0 5px;
}
.category-swiper .swiper-slide {
    flex-direction: column;
    font-weight: 500;
}
.category-swiper .image-box {
    border-radius: 50%;
    padding: 38px;
    background-color: var(--light-green-primary);
    margin-bottom: 15px;
    transition: all .3s ease-in-out;
}
.category-swiper .image-box img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}
.category-swiper .swiper-slide:hover>.image-box {
    background-color: var(--light-green-secondary);
    box-shadow: 0 3px 6px #00000029;
}

.buy h3 {
    font-size: 26px;
}
.where-to-buy .item {
    width: 150px;
    height: auto;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 40px;
}
.where-to-buy .item img {
    border-radius: 50%;
}
.shops .item {
    width: 130px;
    height: auto;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 40px;
}
.shops .item img {
    border-radius: 50%;
    box-shadow: 0 3px 6px #00000029;
}
.where-to-buy .item:last-child {
    margin-right: 0;
}
.follow-us .social-icon {
    width: 50px;
}

/*--------------------------------------------------------------
# Effect hover image with text overlay
--------------------------------------------------------------*/
figure {
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    margin: 0;
}
figure img {
    display: block;
    min-height: 100%;
    max-width: 100%;
}
figure figcaption {
    padding: 2em;
    color: #fff;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
figure figcaption::before,
figure figcaption::after {
    pointer-events: none;
}
figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
figure.effect-sadie figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(bottom,  rgba(43,85,151,0) 0%, rgba(43,85,151,0.7) 80%, rgba(43,85,151,0.8) 100%);
    background: linear-gradient(to top,  rgba(43,85,151,0) 0%, rgba(43,85,151,0.7) 80%, rgba(43,85,151,0.8) 100%);
    content: '';
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
}
figure.effect-sadie h3 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform 0.35s, color 0.35s;
    transition: transform 0.35s, color 0.35s;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    min-height: 130px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(43, 85, 151, 0.4) 0%, rgba(43, 85, 151, 0.4) 100%);
    text-shadow: rgba(0, 0, 0, 0.7) 1px 0 8px;
}
figure.effect-sadie figcaption::before,
figure.effect-sadie .arrow-link {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
figure.effect-sadie .arrow-link {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}
figure.effect-sadie svg {
    width: 40px;
    height: 40px;
}
figure.effect-sadie:hover h3 {
    color: #fff;
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -50px, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, -50px, 0);
    background: none;
    min-height: auto;
}
figure.effect-sadie:hover figcaption::before,
figure.effect-sadie:hover .arrow-link {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.menu-about {
    background-color: var(--light-green-primary);
    position: sticky;
    top: 98px;
    z-index: 10;
}
.menu-about a {
    font-weight: 500;
}
.menu-about .vertical-line {
    width: .1em;
    background: var(--black);
    margin: 0px 20px;
}
.menu-about a.active {
    color: var(--primary);
}
.vision {
    min-height: 400px;
    padding: 60px 6%;
    color: var(--white);
}
.vision p {
    color: var(--white);
}
.vision .vertical-line {
    width: .15em;
    height: auto;
    margin: 0px 40px;
}

/* Milestone */
.timeline .ul-tl {
    padding: 50px 0 130px 0;
    position: relative;
}

.timeline .ul-tl .li-tl {
    list-style-type: none;
    position: relative;
    width: .3em;
    margin: 0 auto;
    padding-top: 30px;
    background: #CBCBCB;
    background: linear-gradient(to bottom, var(--primary) 0%, #CBCBCB 0%);
    transition: background-color 0.3s ease;
}

.timeline .ul-tl .li-tl:first-child {
    padding-top: 0;
}

.timeline .ul-tl .li-tl.active {
    background-color: var(--primary);
}

.timeline .ul-tl .li-tl::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #CBCBCB;
    z-index: 1;
}

.timeline .ul-tl .li-tl.active::after {
    background-color: var(--primary);
}

.timeline .ul-tl .li-tl .detail {
    position: relative;
    bottom: -8em;
    width: 40vw;
    min-height: 290px;
    padding: 40px;
    background: var(--white);
    color: var(--gray-primary);
}

.timeline .ul-tl .li-tl .detail p:last-child {
    margin-bottom: 0;
}

.timeline .ul-tl .li-tl:nth-child(odd) .detail {
    left: 4vw;
}

.timeline .ul-tl .li-tl:nth-child(even) .detail {
    left: -43.5vw;
}

time {
    display: block;
    font-size: 34px;
    font-weight: 500;
    margin-bottom: .8rem;
    color: var(--gray-primary);
    transition: color 0.3s ease;
}

time.active {
    color: var(--primary);
}

.timeline .icon {
    width: 60px;
    height: auto;
}

.main-img {
    transition: all .3s ease-in-out;
}
.hover-img {
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    transition: all .3s ease-in-out;
}
.card-award:hover .main-img {
    opacity: 0;
}
.card-award:hover .hover-img {
    opacity: 1;
}
.card-award h4 {
    min-height: 54px;
}
.card-award p {
    min-height: 48px;
}
.award-swiper .swiper-button-prev {
    left: 0;
}
.award-swiper .swiper-button-next {
    right: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 5px;
}
.media img {
    width: 20px;
    height: auto;
    flex-shrink: 0;
}
.media svg {
    width: 16px;
    height: auto;
    flex-shrink: 0;
}
.media-body {
    -ms-flex: 1;
    flex: 1;
    margin: auto;
    padding-left: 10px;
    font-weight: 400;
    color: var(--gray-primary);
}
.media-body a {
    color: var(--gray-primary);
}
.media svg#address {
    width: 14px;
}
.get-in-touch .social-icon {
    margin-right: 10px;
}

/*--------------------------------------------------------------
# News, Article
--------------------------------------------------------------*/
.card-news {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
}
.card-news img {
    height: 272px;
}
.date {
    font-size: 14px;
    color: var(--light-gray);
}

.dropdown.filter .btn-custom {
    border: 1px solid var(--black);
}
.dropdown.filter .dropdown-menu {
    --bs-dropdown-min-width: 101px;
    --bs-dropdown-border-width: 1px;
    --bs-dropdown-border-color: var(--black);
}
.dropdown.filter svg {
    width: 12px;
    height: 12px;
    margin-left: 6px;
    margin-top: 2px;
}
.dropdown.filter .btn,
.dropdown.filter svg .chevd-cls-1 {
    transition: all .3s ease-in-out;
}

.dropdown.filter:hover>.dropdown-menu {
    display: block;
}
.dropdown.filter>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

.card-article {
    padding: 16px;
}
.card-article img {
    height: 290px;
}
.video-padding {
    padding: 40px;
}
.card-video img {
    height: 285px;
}

.news-detail .title {
    max-width: 910px;
    margin: auto;
}
.news-detail ul,
.news-detail ol {
    color: var(--gray-primary);
}

.social-sticky {
    position: sticky;
    top: 128px;
}
.social-sticky .social-icon {
    margin-right: 0;
    margin-bottom: 6px;
}
.social-sticky .social-icon:last-child {
    margin-bottom: 0;
}

/* Related news */
.related .swiper-container .swiper {
    position: unset;
}
.related-swiper .swiper-slide {
    text-align: start;
}
.related-swiper .swiper-pagination {
    display: block;
}

figure.media {
    display: initial;
}

.form-select.filter-year {
    font-size: 1rem;
    font-weight: 400;
    padding: 0.375rem 2.25rem .375rem 0.75rem;
    border-radius: 0.375rem;
    color: var(--black);
    border-color: var(--black);
}
.form-select.filter-year option {
    color: var(--black);
}
.form-select.filter-year:focus {
    color: var(--black);
    border-color: var(--black);
    box-shadow: none;
}
.form-select.filter-year:valid {
    color: var(--black);
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.card-product {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
    border: 1px solid var(--white);
    transition: all .3s ease-in-out;
}
.card-product:hover {
    border-color: #CBCBCB;
}
.card-product .tag {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 5px 10px;
    border-radius: 10px;
    color: var(--white);
    font-size: 18px;
    font-weight: 300;
}
.card-product .tag.new {
    background-color: var(--primary);
}
.card-product .tag.best-seller {
    background-color: #2AB4ED;
}

.search.products {
    width: 100%;
    margin: 0;
}
.search.products input#search {
    border-bottom: .1em solid var(--black);
    font-size: 14px;
    padding: 8px 30px 8px 0;
    border-radius: 0;
    outline-offset: 0;
    outline-color: transparent;
}
.search.products .icon {
    right: 0;
}

.accordion {
    --bs-accordion-color: var(--black);
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 0;
    --bs-accordion-btn-color: var(--black);
    /* --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); */
    --bs-accordion-btn-icon-width: 1rem;
    --bs-accordion-btn-icon-transform: rotate(0);
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: var(--black);
    --bs-accordion-active-bg: var(--white);
}
.accordion-button {
    font-size: 18px;
}
.accordion-button:not(.collapsed) {
    box-shadow: none;
}
.accordion-item {
    margin-bottom: 20px;
}
.accordion-body {
    color: var(--gray-primary);
}

.gellery-swiper1 {
    height: 80%;
    width: 100%;
}
.gellery-swiper2 {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}
.gellery-swiper2 .swiper-slide {
    height: 100%;
    border: 1px solid var(--white);
    border-radius: 10px;
}
.gellery-swiper2 .swiper-slide-thumb-active {
    border-color: var(--gray-secondary);
}

.product-detail p {
    color: var(--black);
}
.product-number {
    text-decoration: underline;
}

/*--------------------------------------------------------------
# CKEDITOR5
--------------------------------------------------------------*/

figure.image img,
img.image_resized {
    height: auto !important;
}
.image-style-align-left {
    float: left;
    margin-right: 10px;
}
.image-style-align-right {
    float: right;
    margin-left: 10px;
}
.image_resized {
    margin-left: auto;
    margin-right: auto;
}
.image-style-block-align-right {
    margin-left: auto;
    margin-right: unset;
}
.image-style-block-align-left {
    margin-right: auto;
    margin-left: unset;
}

/*--------------------------------------------------------------
# Policy
--------------------------------------------------------------*/
.policy p {
    color: var(--black);
}

/*--------------------------------------------------------------
# All Responsive
--------------------------------------------------------------*/
@media (min-width: 992px) {
    .navbar .dropdown:hover>.nav-link {
        font-weight: 500;
        background-color: var(--white);
        color: var(--black);
    }
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 1px;
    }
    .navbar .dropdown>a {
        pointer-events: auto;
    }
    .navbar .dropdown>a[data-bs-toggle="dropdown"] {
        pointer-events: none;
    }
}
@media (min-width: 768px) {
    .swiper-pagination {
        display: none;
    }
}
@media (max-width: 1399px) {
    .card-news img {
        height: 232px;
    }
    .card-video img {
        height: 255px;
    }
    .card-article img {
        height: 270px;
    }
}
@media (max-width: 1199px) {
    #header .img-logo {
        width: 100px;
    }
    .nav-link {
        font-size: 14px;
    }
    .vertical-line {
        margin: 0px 24px 0 16px;
    }
    .search {
        width: 120px;
    }
    .changelang {
        margin-left: 30px;
    }
    main {
        margin-top: 86px;
    }
    .menu-about {
        top: 86px;
    }
    .social-sticky {
        top: 116px;
    }
    .card-news img {
        height: 195px;
    }
    .card-video img {
        height: 220px;
    }
    .card-article img {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .page-width {
        padding: 0 12px;
    }
    h1,h2,h3,h4,h5,h6 {
        margin-bottom: .5rem;
    }
    #header .img-logo {
        width: 80px;
    }
    .nav-link {
        font-size: 16px;
    }
    .navbar .vertical-line {
        display: none;
    }
    .search {
        width: 180px;
        margin-left: 12px;
        margin-bottom: 16px;
    }
    .changelang {
        margin-left: 12px;
    }
    .banner-swiper .swiper-slide {
        min-height: 50vh;
    }
    .banner-swiper .page-width {
        padding: 0 18%;
    }
    main {
        margin-top: 75px;
    }
    .menu-about {
        top: 75px;
    }
    .timeline .ul-tl .li-tl .detail {
        padding: 20px;
    }
    .social-sticky {
        top: 105px;
    }
    .card-news img {
        height: 250px;
    }
    .where-to-buy .item {
        width: 130px;
    }
    .shops .item {
        width: 110px;
    }
    .card-video img {
        height: 285px;
    }
    .card-article img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .p-section {
        padding: 50px 0;
    }
    .banner-swiper .page-width {
        padding: 20px 6%;
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    .category .swiper-container {
        padding: 0;
    }
    .vision {
        padding: 50px 6%;
    }
    .vision .vertical-line {
        width: auto;
        height: .15em;
        margin: 30px 0;
    }
    .timeline .ul-tl {
        padding: 50px 0;
    }
    .timeline .ul-tl .li-tl {
        margin-left: 3%;
    }
    .timeline .ul-tl .li-tl::after {
        bottom: 40%;
        width: 30px;
        height: 30px;
    }
    .timeline .ul-tl .li-tl .detail {
        bottom: -0;
        width: 79vw;
    }
    .timeline .ul-tl .li-tl:nth-child(odd) .detail,
    .timeline .ul-tl .li-tl:nth-child(even) .detail {
        left: 5vw;
    }
    .video-padding {
        padding: 30px;
    }
    .card-news img {
        height: 205px;
    }
    .card-video img {
        height: 440px;
    }
    .card-article img {
        height: 230px;
    }
    .where-to-buy .item {
        width: 120px;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 30px;
    }
    .shops .item {
        width: 100px;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 30px;
    }
    .social-sticky .social-icon {
        margin-right: 8px;
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .breadcrumb-item svg {
        width: 40px;
        height: 40px;
    }
    .banner-swiper .swiper-button-prev,
    .banner-swiper .swiper-button-next {
        width: 35px;
        height: 35px;
    }
    .menu-about .vertical-line {
        margin: 0 10px;
    }
    .timeline .ul-tl .li-tl .detail {
        width: 77vw;
    }
    .timeline .ul-tl .li-tl:nth-child(odd) .detail,
    .timeline .ul-tl .li-tl:nth-child(even) .detail {
        left: 7vw;
    }
    .card-product {
        padding: 10px;
    }
    .card-product .btn-light-green {
        padding: 14px 10px;
        width: 100%;
    }
    .card-product .tag {
        font-size: 16px;
    }
    .card-news {
        padding: 10px;
    }
    .card-news img {
        height: 155px;
    }
    .where-to-buy .item {
        width: 100px;
    }
    .shops .item {
        width: 80px;
    }
    .follow-us .social-icon {
        width: 40px;
    }
    .card-article {
        padding: 10px;
    }
    .card-article img {
        height: 150px;
    }
    .card-video img {
        height: 330px;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 20px;
    }
    .content h1 {
        font-size: 28px;
    }
    .content h2 {
        font-size: 24px;
    }
    .buy h3 {
        font-size: 22px;
    }
    time {
        font-size: 28px;
    }
}

@media (max-width: 540px) {
    .banner-swiper .swiper-slide {
        min-height: 45vh;
    }
}

@media (max-width: 450px) {
    .video-padding {
        padding: 20px;
    }
    .card-news img {
        height: 110px;
    }
    .where-to-buy .item {
        width: 90px;
        margin-left: 8px;
        margin-right: 8px;
        margin-bottom: 20px;
    }
    .shops .item {
        width: 80px;
        margin-left: 8px;
        margin-right: 8px;
        margin-bottom: 20px;
    }
    .card-article img {
        height: 110px;
    }
    .card-video img {
        height: 250px;
    }
    .card-product h4 {
        margin-bottom: .1rem;
    }
    .card-product p {
        margin-bottom: .6rem;
    }
}

.cc-window {
    background: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
    padding: 20px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}


