/* primary-color: #e3b15c */
/* secondary-color: #e3b15c */
/* fontsize-XXL: 40px */
/* fontsize-XL: 36px */
/* fontsize-L: 28px */
/* fontsize-M: 24px */
/* fontsize-S: 20px */
/* fontsize-XS: 16px */
/* fontsize-XXS: 12px */

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

a {
    -webkit-tap-highlight-color: transparent;
}

i:active {
    color: #e3b15c;
}

.width_full {
    width: 100% !important;
}

.bg_color_primary {
    background-color: #e3b15c !important;
}

.bg_color_grey {
    background-color: #c8c8c8 !important;
}

.bg_color_white {
    background-color: #FFF !important;
}

.flex-row {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
}

.justify-content-space-around {
    justify-content: space-around !important;
}

.title-flex-center {
    width: 100%;
    text-align: center;
    color: #e3b15c;
    font-size: 2em !important;
}

.href-disable {
    cursor: default;
}

.title {
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 28px;
    margin: 10px;
    color: #e3b15c;
}

.content {
    padding: 10px 20px;
    box-sizing: border-box;
}

.home-content {
    text-align: center; 
    padding: 40px 79px;
}

@media only screen and (max-width: 600px) {
    .home-content {
        padding: 0;
    }
}

.content>.sub-title {
    margin: 40px 0 0 0;
    font-size: 24px;
    font-weight: 600;
}

.content>.sub-content {
    margin: 10px 0 0 0;
}

.content>.sub-content>ul>li {
    list-style-position: inside;
}

header {
    height: 80vh;
    position: relative;
}

header>.carousel {
    filter: brightness(50%);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/home/carousel4_sm.jpg');
    /* background-image: url("../images/home/carousel3.jpg"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 80vh;
    /* height: 100vh; */
    /* position: absolute; */
}

header>.logo-mobile {
    position: absolute;
    top: 50px;
    width: 100%;
    z-index: 99;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    header>.logo-mobile {
        display: none;
    }
}

header>.logo-mobile>img {
    max-width: 150px;
    width: 100%;
}

header>.nav>.logo {
    z-index: 99;
    /* position: absolute; */
    /* top: 50px; */
    /* width: 100%; */
    text-align: center;
}

header>.nav>.logo>img {
    max-width: 160px;
    width: 100%;
}

header>.nav {
    z-index: 99;
    position: absolute;
    top: 50px;
    /* top: 200px; */
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    header>.nav {
        display: none;
    }
}


header>.nav>.nav-item {
    width: 200px;
    color: #FFF;
    margin: 0 10px;
    text-decoration: none;
    /* font-weight: 300; */
    font-weight: 600;
    font-size: 20px;
    padding: 5px 10px;
    box-sizing: border-box;
}

header>.nav>.nav-item:hover {
    cursor: pointer;
    color: #e3b15c;
    /* background: -webkit-linear-gradient(#e3b15c, #F7EF8A, #D2AC47, #EDC967); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

header>.nav-mobile {
    z-index: 999;
    position: relative;
    top: 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media only screen and (min-width: 600px) {
    header>.nav-mobile {
        z-index: 999;
        display: none;
    }
}

header>.nav-mobile>.nav-mobile-base {
    position: absolute;
    top: 70px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 40px;
    box-sizing: border-box;
}

header>.nav-mobile>.nav-mobile-base>.nav-mobile-hamburger>i {
    font-size: 30px;
    font-weight: 600;
    color: #FFF;
}

header>.nav-mobile>.nav-mobile-content {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    overflow: hidden;
    /* left: 0; */
    width: 100%;
    height: 100vh;
    background-color: #292929;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.selected {
    animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards;
}

.dismiss {
    animation: slide-out 0.5s forwards;
    -webkit-animation: slide-out 0.5s forwards;
}

@keyframes slide-in {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

header>.nav-mobile>.nav-mobile-content>.nav-mobile-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

header>.nav-mobile>.nav-mobile-content>.nav-mobile-top>.nav-mobile-logo {
    width: 100%;
    /* max-width: 50px; */
    max-width: 100px;
}

header>.nav-mobile>.nav-mobile-content>.nav-mobile-top>.nav-mobile-logo>img {
    width: 100%;
}

header>.nav-mobile>.nav-mobile-content>.nav-mobile-top>.nav-mobile-action {
    font-size: 30px;
    font-weight: 600;
    color: #FFF;
}

header>.nav-mobile>.nav-mobile-content>.nav-mobile-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px 0 0 0;
}

header>.nav-mobile>.nav-mobile-content>.nav-mobile-menu>.nav-mobile-item {
    width: 80%;
    border-radius: 50px;
    color: #FFF;
    padding: 10px;
    box-sizing: border-box;
    font-size: 26px;
    text-decoration: none;
}

header>.nav-mobile>.nav-mobile-content>.nav-mobile-menu>.nav-mobile-item.active {
    background-color: #e3b15c;
}

header>.nav-mobile>.nav-mobile-content>.nav-mobile-menu>.nav-mobile-item:focus {
    color: #e3b15c;
}

header>.slogan {
    z-index: 99;
    position: absolute;
    top: 230px;
    /* bottom: 60px; */
    width: 100%;
    text-align: center;
    font-size: 40px;
    /* font-size: 50px; */
    font-weight: 700;
    /* background: -webkit-linear-gradient(#e3b15c, #F7EF8A, #D2AC47, #EDC967); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    color: #e3b15c;
    text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
    header>.slogan {
        padding: 20px;
        box-sizing: border-box;
        font-size: 2em;
    }
}

.sub-header {
    background-color: #e3b15c;
    padding: 20px 0;
    box-sizing: border-box;
    z-index: 999;
}

.sub-header-products {
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('../images/header/corporate.jpg');
    /* background-image: url("../images/header/corporate.jpg"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.sub-header-contact {
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('../images/header/traditional-chinese-medicine-ancient-medical-book-bamboo.jpg');
    /* background-image: url("../images/header/traditional-chinese-medicine-ancient-medical-book-bamboo.jpg"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.sub-header-about {
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('../images/header/leaves.jpg');
    /* background-image: url("../images/header/leaves.jpg"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.sub-header>.logo-mobile {
    z-index: 99;
    width: 100%;
    text-align: center;

}

@media only screen and (min-width: 600px) {
    .sub-header>.logo-mobile {
        display: none;
    }
}

.sub-header>.logo-mobile>img {
    max-width: 150px;
    width: 100%;
}

.sub-header>.nav>.logo {
    z-index: 99;
    top: 50px;
    /* width: 100%; */
    text-align: center;

}

.sub-header>.nav>.logo>img {
    max-width: 160px;
    width: 100%;
}

.sub-header>.nav {
    margin: 20px 0 0 0;
    z-index: 99;
    top: 200px;
    width: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 10px 0;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    .sub-header>.nav {
        display: none;
    }
}

.sub-header>.nav>.nav-item {
    width: 200px;
    color: #FFF;
    margin: 0 10px;
    text-decoration: none;
    /* color: white; */
    /* font-weight: 400; */
    /* color: #000; */
    /* font-weight: 300; */
    font-weight: 600;
    font-size: 20px;
    /* padding: 5px 10px; */
    /* box-sizing: border-box; */
}

.sub-header>.nav>.nav-item:hover {
    cursor: pointer;
    color: #e3b15c;;
    /* background: -webkit-linear-gradient(#e3b15c, #F7EF8A, #D2AC47, #EDC967); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.sub-header>.nav-mobile {
    margin: 20px 0 0 0;
    z-index: 999;
    top: 200px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media only screen and (min-width: 600px) {
    .sub-header>.nav-mobile {
        display: none;
    }
}

.sub-header>.nav-mobile>.nav-mobile-base {
    position: absolute;
    top: 40px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 40px;
    box-sizing: border-box;
}

.sub-header>.nav-mobile>.nav-mobile-base>.nav-mobile-hamburger>i {
    font-size: 30px;
    font-weight: 600;
    color: #FFF;
}

.sub-header>.nav-mobile>.nav-mobile-content {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    overflow: hidden;
    /* left: 0; */
    width: 100%;
    height: 100vh;
    background-color: #292929;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.sub-header>.nav-mobile>.nav-mobile-content>.nav-mobile-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.sub-header>.nav-mobile>.nav-mobile-content>.nav-mobile-top>.nav-mobile-logo {
    width: 100%;
    /* max-width: 50px; */
    max-width: 100px;
}

.sub-header>.nav-mobile>.nav-mobile-content>.nav-mobile-top>.nav-mobile-logo>img {
    width: 100%;
}

.sub-header>.nav-mobile>.nav-mobile-content>.nav-mobile-top>.nav-mobile-action {
    font-size: 30px;
    font-weight: 600;
    color: #FFF;
}

.sub-header>.nav-mobile>.nav-mobile-content>.nav-mobile-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px 0 0 0;
}

.sub-header>.nav-mobile>.nav-mobile-content>.nav-mobile-menu>.nav-mobile-item {
    width: 80%;
    border-radius: 50px;
    color: #FFF;
    padding: 10px;
    box-sizing: border-box;
    font-size: 26px;
    text-decoration: none;
}

.sub-header>.nav-mobile>.nav-mobile-content>.nav-mobile-menu>.nav-mobile-item.active {
    background-color: #e3b15c;
}

.sub-header>.nav-mobile>.nav-mobile-content>.nav-mobile-menu>.nav-mobile-item:focus {
    color: #e3b15c;
}

.sub-header>.slogan {
    z-index: 99;
    bottom: 60px;
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    background: -webkit-linear-gradient(#e3b15c, #F7EF8A, #D2AC47, #EDC967);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
    .sub-header>.slogan {
        padding: 20px;
        box-sizing: border-box;
    }
}

.main-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-content>div {
    margin: 25px 0 0 0;
}

.why-us-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-us {
    width: 80%;
}

@media only screen and (max-width: 600px) {
    .why-us {
        width: 95%;
    }
}

.why-us-container>.why-us>.content>.sub-content {
    text-align: justify;
}

.products-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-container>.products {
    width: 80%;
}

@media only screen and (max-width: 600px) {
    .products-container>.products {
        width: 95%;
    }
}

.products>.product-list {
    margin: 20px 0 0 0;
    width: 100%;
    /* display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
    justify-items: center;
    align-items: flex-start;
}

@media only screen and (max-width: 600px) {
    .products>.product-list {
        justify-content: center;
    }
}

.products>.product-list>.product-item {
    width: 100%;
    max-width: 250px;
    margin: 20px 10px;
    border: 2px solid #e3b15c;
    border-radius: 15px;
    padding: 15px 10px;
    box-sizing: border-box;
}

@media only screen and (max-width: 600px) {
    .products>.product-list>.product-item {
        max-width: 90%;
    }
}

.products>.product-list>.product-item>.p-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: relative; */
}

@media only screen and (max-width: 600px) {
    .products>.product-list>.product-item>.p-img {
        height: 100%;
    }
}

.products>.product-list>.product-item>.p-img>img {
    /* position: absolute; */
    width: 100%;
    /* height: 100%; */
    /* object-fit: contain; */
}

.products>.product-list>.product-item>.p-title-container {
    margin: 20px 0 0 0;
    /* min-height: 75px; */
    min-height: 100px;
}

.products>.product-list>.product-item>.p-title-container>.p-title {
    text-align: center;
    color: #e3b15c;
}

.products>.product-list>.product-item>.p-description {
    text-align: center;
    margin: 10px 0 0 0;
    /* height: 50px; */
    font-size: 12px;
    color: #696969;
    display: none;
}

.products>.product-list>.product-item>.p-extra-info {
    margin: 10px 0 0 0;
    display: none;
}

.products>.product-list>.product-item>.p-extra-info>.p-detail-title {
    margin: 10px 0 0 0;
    font-weight: 600;
    font-size: 14px;
}

.products>.product-list>.product-item>.p-extra-info>.p-detail {
    font-size: 12px;
}

.products>.product-list>.product-item>.p-extra-info>.p-functions {
    font-size: 12px;
}

.products>.product-list>.product-item>.p-extra-info>.p-functions>.p-functions-title {
    margin: 10px 0 0 0;
    font-weight: 600;
    font-size: 14px;
}

.products>.product-list>.product-item>.p-extra-info>.p-functions>ul>li {
    list-style-position: inside;
}

.products>.product-list>.product-item>.p-action {
    margin: 20px 0 0 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-action {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-readmore {
    width: 100%;
    max-width: 150px;
    text-align: center;
    text-decoration: none;
    color: #e3b15c;
    background-color: #FFF;
    font-size: 16px;
    font-weight: 400;
    border: 1.5px solid #e3b15c;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.btn-readmore:hover {
    color: #FFF;
    background-color: #e3b15c;
    border: #e3b15c;
    cursor: pointer;
}

.btn-readmore:active {
    color: #FFF;
    background-color: #785b16;
    border: #785b16;
}

.testimonials {
    width: 100%;
    background-color: #696969;
}

.testimonials>.title {
    color: #FFF;
}

.where-to-buy-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.where-to-buy-container>.where-to-buy {
    width: 80%;
}

@media only screen and (max-width: 600px) {
    .where-to-buy-container>.where-to-buy {
        width: 95%;
    }
}

.wtb-list {
    /* margin: 20px 0 0 0; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 600px) {
    .wtb-list {
        flex-direction: column;
    }
}

.wtb-list>.wtb-item {
    width: 100%;
    /* max-width: 150px; */
    max-width: 160px;
    font-size: 24px;
    /* height: 100px; */
    margin: 0 20px;
    text-decoration: none;
    color: #000;
}

@media only screen and (max-width: 600px) {
    .wtb-list>.wtb-item {
        margin: 20px 20px 0 20px;
        max-width: 200px;
    }
}

.wtb-list>.wtb-item>.wtb-img {
    max-width: 200px;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    .wtb-list>.wtb-item>.wtb-img {
        min-height: 50px;
        max-height: 100px;
    }
}

.wtb-list>.wtb-item>.wtb-img>img {
    width: 100%;
}

.wtb-list>.wtb-item>.wtb-title {
    width: 100%;
    text-align: center;
    color: #e3b15c;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.contact-us-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.contact-us-info >.content {
    width: 100%;
    padding: 0;
}

.contact-us-info>.sec-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.contact-us-info>.sec-list>.list-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 10px 0 0 0;
}

.contact-us-info>.sec-list>.list-container>.icon {
    width: 50px;
}

.contact-us-info >.content > .address-container {
    margin: 10px 0 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .contact-us-info >.content > .address-container {
        flex-direction: column;
    }
}

.contact-us-info >.content > .address-container > .img-address {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    box-sizing: border-box;
}

@media only screen and (max-width: 600px) {
    .contact-us-info >.content > .address-container > .img-address {
        max-width: 100%;
    }
}

.contact-us-info >.content > .address-container > .img-address > img {
    width: 100%;
}

.contact-us-info >.content > .address-container > .content-address {
    margin: 0 0 0 20px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .contact-us-info >.content > .address-container > .content-address {
        margin: 0;
    }
}

.contact-us-info >.content > .address-container > .content-address > .sub-title {
    font-size: 1.5em;
    font-weight: 600;
}

.contact-us-info >.content > .address-container > .content-address > .sub-content {
    margin: 10px 0 0 0;
}

.contact-us-info >.content > .address-container > .content-address > .sub-content > ul > li {
    list-style-position: inside;
}

.sub-content-flex {
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .sub-content-flex {
        margin: 30px 0 0 0;
        flex-wrap: wrap;
    }
}

.sub-content-flex > .sub-content-item {
    margin: 10px;
    width: 100%;
    max-width: 150px;
    text-decoration: none;
    background-color: #FFF;
}

@media only screen and (max-width: 600px) {
    .sub-content-flex > .sub-content-item {
        /* max-width: 90%; */
    }
}

.sub-content-flex > .sub-content-item > img {
    width: 100%;
}

footer {
    margin: 50px 0 0 0;
    width: 100%;
    background-color: #e3b15c;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    flex-direction: column;
}

footer>.footer-container {
    width: 80%;
    background-color: #e3b15c;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 10px;
    box-sizing: border-box;
}

@media only screen and (max-width: 600px) {
    footer>.footer-container {
        width: 95%;
        flex-direction: column;
    }
}

footer>.footer-container>.footer-col {
    width: 100%;
    max-width: 50%;
}

@media only screen and (max-width: 600px) {
    footer>.footer-container>.footer-col {
        max-width: 100%;
        margin: 20px 0 0 0;
    }
}

footer>.footer-container>.footer-col>.sec-title {
    margin: 20px 0 0 0;
    font-size: 28px;
    font-weight: 600;
    color: #FFF;
    /* background: -webkit-linear-gradient(#e3b15c, #F7EF8A, #D2AC47, #EDC967); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

footer>.footer-container>.footer-col>.sec-list {
    margin: 20px 0 0 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

footer>.footer-container>.footer-col>.sec-list>a {
    text-decoration: none;
    color: #FFF;
    margin: 5px 0 0 0;
}

footer>.footer-container>.footer-col>.sec-list>a>i {
    font-size: 24px;
}

footer>.footer-container>.footer-col>.flex-row>a {
    margin: 0 15px 0 0;
}

footer>.footer-container>.footer-col>.sec-list>a:hover {
    color: #000;
    /* background: -webkit-linear-gradient(#e3b15c, #F7EF8A, #D2AC47, #EDC967); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

footer>.footer-container>.footer-col>.sec-list>.list-container {
    margin: 0 0 10px 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

footer>.footer-container>.footer-col>.sec-list>.list-container>.icon {
    width: 30px;
}

footer>.footer-container>.footer-col>.sec-list>.list-container>.icon>i {
    font-size: 20px;
    color: #FFF;
}

footer>.footer-container>.footer-col>.sec-list>.list-container>.text {
    margin: 0 0 0 10px;
    width: 80%;
    color: #FFF;
}

@media only screen and (max-width: 600px) {
    footer>.footer-container>.footer-col>.sec-list>.list-container>.text {
        width: 95%;
    }
}

footer>.post-footer {
    color: #FFF;
    font-size: 16px;
    margin: 40px 0 20px 0;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}