@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/museo-sans-rounded');
@import url('https://fonts.cdnfonts.com/css/avenir');

html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-track {
    background: #dddddd;
}
::-webkit-scrollbar-thumb {
    background: #6c661e;
}
.w50p{
    width: 50%;
}
.font-avenir-16{
    font-family: 'Avenir', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}
.m-1 {
    margin: 1rem;
}
.my-05 {
    margin: 0.5rem 0;
}
.my-1 {
    margin: 1rem 0;
}
.my-2-5 {
    margin: 2.5rem 0;
}
.my-4 {
    margin: 4rem 0;
}
.mt-1 {
    margin-top: 1rem;
}
.mt-05 {
    margin-top: 0.5rem;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mb-3 {
    margin-bottom: 3rem;
}
.mr-1 {
    margin-right: 1rem;
}
.ml-1 {
    margin-left: 1rem;
}
.pr-1{
    padding-left: 1rem;
}
.dflex{
    display: flex;
}
.blue {
    color: #0D4C9A;
}
.green {
    color: #8C8532;
}
.pink {
    color: #E56B92;
}
.display-none{
    display: none;
}
.primary-color {
    color: #999159;
}
.ul-style{
    list-style-type: "- "
}
.title{
    color: #999159;
    font-family: 'Avenir', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.title-style {
    color: #999159;
    text-align: center;
    font-family: 'Avenir', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.tag-green {
    color: #fff;
    display: flex;
    padding: 4px 8px;
    align-items: flex-start;
    width: fit-content;
    border-radius: 2px;
    background: #6DB66D;
}
.tag-blue {
    color: #fff;
    display: flex;
    padding: 4px 8px;
    align-items: flex-start;
    width: fit-content;
    border-radius: 2px;
    background: #5EB8D3;
}
.btn-primary {
    padding: 12px 24px;
    color: #fff;
    width: fit-content;
    font-family: 'Roboto', sans-serif;
    border: 0;
    font-weight: 700;
    font-size: 16px;
    border-radius: 24px;
    background: #A37F05;
    cursor: pointer;
}
.btn-primary:hover {
    background: #886a08;
}
/* ---------- container / content style ---------- */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}
.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 64px;
}
.wrapper-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 64px;
}
.wrapper-article-dtl {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 64px;
    margin: 2.5rem;
}

/* ---------- navbar style ---------- */
.navbar {
    height: 72px;
    padding: 0 64px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: 'Avenir', sans-serif;
    font-weight: 700;
    font-size: 21px;
    font-style: normal;
    color: rgba(0, 0, 0, 0.30);
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: -2px 0px 30px -10px rgba(0,0,0,0.75);
    -webkit-box-shadow: -2px 0px 30px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px 0px 30px -10px rgba(0,0,0,0.75);
}
.navbar>.logo {
    width: 130px;
}
.nav-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.navbar>.nav-items>ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    height: 100%;
    gap: 32px;
}
.navbar>.nav-items>ul>li {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
}
.navbar>.nav-items>ul>li>a {
    text-decoration: none;
    font-family: 'Avenir', sans-serif;
    font-size: 20px;
    font-style: normal;
    color: rgba(0, 0, 0, 0.30);
}
.navbar>.nav-items>ul>li>a:hover {
    color: #A37F05;
    font-weight: 700;
}
.navbar-actived>a>span {
    color: #A37F05;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}
.toggle {
    display: none;
    cursor: pointer;
}
.menu-toggle {
    display: flex;
    flex-direction: column;
    height: 20px;
    justify-content: space-between;
    margin: 10px;
    position: relative;
}
.menu-toggle input {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -5px;
    left: -1px;
    opacity: 0;
    cursor: pointer;
}
.menu-toggle>span {
    display: block;
    width: 28px;
    height: 3px;
    color: #A37F05;
    border-radius: 3px;
    background-color: #A37F05;
    transition: all 0.3s;
}
.menu-toggle>input:checked~span:nth-child(3) {
    transform: scale(0);
    opacity: 0;
}
.menu-toggle input:checked~span:nth-child(2) {
    transform: translateY(8px) translateX(1px) rotateZ(45deg);
}
.menu-toggle input:checked~span:nth-child(4) {
    transform: translateY(-9px) rotateZ(-45deg);
}
.select-lang {
    display: flex;
    justify-content: center;
}
.select-lang>select {
    border: none;
    cursor: pointer;
}
.select-lang>img {
    width: 24px;
}


/* ---------- Home Page ---------- */
/* Header */
.home-container>.content-header {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.home-container>.content-header>.header-banner {
    width: 100%;
}
.home-container>.content-header>.header-banner>img {
    width: 100%;
    object-fit: fill;
}
.home-container>.content-header>.header-banner-mobile {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    display: none;
}
.home-container>.content-header>.header-banner-mobile>img {
    width: 100%;
    object-fit: fill;
}
.home-container>.content-header>.header-image {
    width: 50%;
    position: absolute;
    top: 56%;
    transition: all 1s;
}
.home-container>.content-header>.header-image>img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* Ecommerce */
.ecommerce-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 16px;
}
.ecommerce-content>p {
    text-align: center;
    font-family: "Avenir", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}
.btn-wrapper {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    max-width: 547px;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.btn-wrapper>.btn {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    background: #FFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    cursor: pointer
}
.shopee-btn {
    border: 1px solid #EA501F;
    color: #EA501F;
}
.shopee-btn:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(234, 80, 31, 1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(234, 80, 31, 1);
    box-shadow: 0px 0px 10px 0px rgba(234, 80, 31, 1);
}
.tokopedia-btn {
    border: 1px solid #4F9D4D;
    color: #4F9D4D;
}
.tokopedia-btn:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(79, 157, 77, 1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(79, 157, 77, 1);
    box-shadow: 0px 0px 10px 0px rgba(79, 157, 77, 1);
}
.blibli-btn {
    border: 1px solid #0072FF;
    color: #0072FF;
}
.blibli-btn:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 114, 255, 1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 114, 255, 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 114, 255, 1);
}
.lazada-btn {
    border: 1px solid #000081;
    color: #000081;
}
.lazada-btn:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 129, 1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 129, 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 129, 1);
}
.tiktok-btn {
    border: 1px solid #221F20;
    color: #221F20;
}
.tiktok-btn:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(34, 31, 32, 1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(34, 31, 32, 1);
    box-shadow: 0px 0px 10px 0px rgba(34, 31, 32, 1);
}

/* About */
.about {
    background-image: url("../assets/illustrations/bacground-about-company.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-color: #fff;
    margin: 20px 0;
    padding: 50px 0 0 ;
    position:relative;
}
.about-content-1 {
    display: flex;
    justify-content: center;
    padding-top: 80px;
}
.about-content-1>.content-img>img {
    width: 400px;
    object-fit: contain;
}
.about-content-1>.content-desc {
    display: flex;
    flex-direction: column;
    align-self: center;
    margin-left: 20px;
}
.about-content-1>.content-desc>.content-desc-title{
    display: flex;
    flex-direction: column;
}
.about-content-1>.content-desc>.content-desc-title>h4 {
    font-family: 'Avenir', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    margin-bottom: 15px;
}
.about-content-1>.content-desc>.content-desc-title>h5 {
    font-size: clamp(24px, 3vw, 32px);
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 800;
    margin-bottom: 15px;
    color: #A37F05;
}
.about-content-1>.content-desc>.content-desc-title>h4:nth-child(1) {
    color: #A37F05;
}
.about-content-1>.content-desc>.content-desc-title>img {
    width: 100px;
    height: 100px;
}
.about-content-1>.content-desc>p {
    font-family: 'Museo Sans Rounded', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}
.about-content-2 {
    gap: 10px;
    margin: 40px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.about-content-2>.about-card {
    display: flex;
    flex-direction: row;
    font-family: 'Avenir', 'sans-serif';
    width: 100%;
    max-width: 550px;
    margin: 10px 0;
    z-index: 10;
}
.about-content-2>.about-card>.about-card-desc>h4 {
    color: #000;
    font-family: 'Avenir', 'sans-serif';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 8px;
}
.about-content-2>.about-card>img {
    width: 100px;
    margin-right: 20px;
    height: auto;
    gap: 20px;
}
.about>div:nth-child(2){
    object-fit: contain;
    object-position: bottom;
    background-color: #fff;
}
.about>div:nth-child(2)>img{
    width: 100%;
}

/* products */
.product-container {
    margin: 50px 0;
}
.product-wrapper {
    display: flex;
    padding: 75px 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 35px;
    position: relative
}
.product-wrapper>.product-list-desc{
    max-width: 380px;
}
.product-wrapper>.product-list-desc>p {
    font-family: 'Avenir', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-align: right;
}
.product-wrapper>.product-list-desc>h3 {
    color: #999159;
    font-family: 'Avenir', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-align: right;
}
.product-list {
    display: flex;
    flex-direction: row;
    overflow-y: scroll;
    width: 100%;
    /* padding: 0 40px; */
    position: relative;
}
.product-list::-webkit-scrollbar {
    display: none;
}
.product-list-wrapper {
    position: relative;
    width: 89%;
    height: fit-content;
    overflow-y: hidden;
}
.product-list-wrapper::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.product-list {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}
#prev-btn,
#next-btn {
    width: 50px;
    height: 50px;
    cursor: pointer;
    padding: 12px;
    color: #000000;
    background-color: #a3a1a1;
    opacity: 30%;
    border: none;
    border-radius: 100%;
    margin-top: 10px;
    z-index: 10;
}
#prev-btn {
    position: absolute;
    top: 45%;
    left: 0%;
    z-index: 20;
}
#next-btn {
    position: absolute;
    top: 45%;
    right: 0%;
    z-index: 20;
}
.prev-bg {
    width: 10%;
    height: 100%;
    left: 0%;
    position: absolute;
    z-index: 2;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}
.next-bg {
    width: 10%;
    height: 100%;
    right: 0;
    position: absolute;
    z-index: 2;
    background: linear-gradient(-90deg, #fffe, rgba(255, 255, 255, 0));
}
.blank-product {
    display: inline-flex;
    padding: 15px;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    border-radius: 24px;
    margin: 15px;
    margin-left: 0px;
    margin-right: 40px;
}
.product-card {
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
    margin: 15px;
    margin-left: 0px;
    margin-right: 40px;
}
.product-card>.product-desc>img {
    width: 250px;
    height: 250px;
}
.product-card>.product-desc {
    width: 250px;
    text-align: center;
}
.product-card>.product-desc>h2 {
    color: #999159;
    text-align: center;
    margin: 15px 0;
    text-align: center;
    font-family: 'Avenir', 'sans-serif';
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.product-card>.product-desc>p {
    color: #000;
    text-align: center;
    font-family: 'Museo Sans Rounded', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card>a {
    text-decoration: none;
    text-align: center;
    font-family: 'Avenir', 'sans-serif';
    cursor: pointer;
}

/* pop up */
.modal {
    display: none;
    position: fixed;
    z-index: 101;
    padding-top: 15px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}
.modal::-webkit-scrollbar {
    display: none;
}
.modal-container {
    background-color: #FFF;
    margin: 5% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 60%;
    border-radius: 12px;
    position: relative;
}
.modal-content {
    display: flex;
    flex-direction: row;
}
.modal-content>img {
    width: 300px;
    height: 300px;
}
.modal-content>.content-description {
    font-family: 'Avenir', sans-serif;
    margin-left: 24px;
}
.modal-content>.content-description>h2 {
    font-family: 'Avenir', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 10px;
}
.modal-content>.content-description>.content-more-information>p {
    font-family: 'Avenir', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    margin-top: 10px;
}
.modal-content>.content-description>.content-more-information>.info {
    font-family: 'Museo Sans Rounded', sans-serif;
    display: flex;
    font-size: 16px;
    font-style: normal;
    margin: 10px 0;
}
.modal-content>.content-description>.content-more-information>.info>img {
    width: 40px;
    margin-right: 10px;
}
.modal-content>.content-description>p {
    font-family: 'Museo Sans Rounded', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}
.modal-content>.content-description>.description>ul {
    list-style-type: none;
    padding-left: 5px;
}
.modal-content>.content-description>.description>ul>li {
    text-indent: -5px;
}
.modal-content>.content-description>.description>ul>li:before {
    content: "-";
    text-indent: -5px;
}
.btn-position {
    justify-content: left;
}
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 30px;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* news / video */
.news-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-style: normal;
    font-weight: 700;
    font-family: 'Avenir', sans-serif;
}
.news-content>.news-content-tm {
    border-radius: 24px;
    margin-right: 50px;
    max-width: 672px;
    overflow: hidden;
    min-height: 378px;
}
.news-content>.news-content-tm>img {
    width: 100%;
    height: 100%;
    max-width: 672px;
    min-width: 320px;
    object-position: center;
    object-fit: contain;
}
.news-content>.news-content-tm>iframe {
    height: 378px;
    width: 672px;
    max-width: 100%;
    object-position: top;
    object-fit: contain;
}
.news-content>.news-content-banner {
    border-radius: 24px;
    margin-right: 50px;
    max-width: 672px;
    overflow: hidden;
}
.news-content>.news-content-banner>img {
    width: 100%;
    max-width: 672px;
    min-width: 320px;
    object-position: top;
    object-fit: contain;
}
.news-content>.news-content-desc {
    max-width: 50%;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-self: center;
}
.news-content>.news-content-desc>h1 {
    color: #A37F05;
    font-size: 40px;
}
.news-content>.news-content-desc>p {
    color: #000;
    font-family: 'Avenird', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 24px 0;
}

/* review content */
.review-container {
    display: flex;
    padding: 55px 64px 80px 64px;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    background: #FFB400;
    background-repeat: no-repeat;
    background-size: cover; 
}
.review-container>h1 {
    font-family: 'Avenir', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #fff;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.review-container>.review-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}
.review-container>.review-wrapper>.review-card {
    justify-content: space-between;
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
}
.review-container>.review-wrapper>.review-card>p:nth-child(2) {
    color: #000;
    font-family: 'Museo Sans Rounded', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}
.review-container>.review-wrapper>.review-card>p:nth-child(3) {
    color: #000;
    font-family: 'Avenir', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

/* ---------- List Articles ---------- */
.articles-header {
    width: 100%;
    height: 207px;
    display: flex;
    justify-content: center;
    position: relative;
    object-fit: contain;
    font-family: 'Avenir', sans-serif;
    background-color: #FFB400;
}
.articles-header>img {
    width: 100%;
    height: 100%;
    object-position: bottom;
    object-fit: cover;
}
.articles-header>h1 {
    color: #fff;
    text-align: center;
    align-self: center;
    align-content: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    position: absolute;
    top: 30%;
}
.articles-header .articles-tab {
    padding: 24px;
    margin: 0 10px;
    width: fit-content;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    position: absolute;
    gap: 10px;
    top: 80%;
}
.articles-header .articles-tab>.tab-btn {
    color: rgba(0, 0, 0, 0.40);
    border: 1px solid #fff;
    font-family: 'Avenir', sans-serif;
    font-weight: 700;
    font-size: 16px;
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
}
.articles-header .articles-tab>button:hover {
    background-color: #fff79b;
    border: 1px solid #999159;
    color: #999159;
}
.articles-header .articles-tab>.tab-actived {
    background-color: #fff;
    border: 1px solid #999159;
    color: #999159;
}

/* ----- article card ----- */
.articles-content {
    font-family: 'Avenir', sans-serif;
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    margin: 94px 0 10px 0;
}
.article-card .article-type {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.article-card>.article-image {
    max-width: 100%;
    height: 300px;
    overflow: hidden;
}
.article-card>.article-image>img {
    border-radius: 24px;
    object-fit: cover;
}
.article-card>.article-information>h2 {
    height: 55px;
    font-size: 21px;
    overflow: hidden;
    color: #999159;
}
.article-card>.article-information>p {
    height: 65px;
    overflow: hidden;
}
.btn-card {
    font-family: 'Avenir', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #999159;
    text-align: left;
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    align-self: stretch;
    width: fit-content;
}
.btn-card:hover {
    color: #1b68c6;
}
.articles-slide {
    font-family: 'Avenir', sans-serif;
    display: grid;
    gap: 45px;
    margin: 30px 0 30px 0;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    overflow: scroll;
    width: 85vw;
}
.min-w320 {
    min-width: 320px;
}
.articles-slide::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.articles-slide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ---------- pagination ---------- */
.pagination{
    display: flex;
    justify-content: end;
    margin: 20px 0;
    gap: 5px;
}
.pagination>button{
    padding: 6px;
    background-color: #fff;
    border: 0 ;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.pagination>button:hover{
    background-color: #8B8532;
    color: #fff;
}
.pagination>.actived-btn{
    border: 2px solid #8B8532;
}

/* ---------- article detail ---------- */
.article-detail {
    max-width: 768px;
}
.article-detail>h1 {
    font-family: 'Avenir', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #999159;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 15px;
}
.article-detail>p {
    font-family: 'Avenir', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.article-detail>p:nth-child(2) {
    font-weight: 600;
}
.article-detail>p:nth-child(3) {
    margin-bottom: 15px;
}
.article-image {
    margin-bottom: 15px;
    border-radius: 24px;
    position: relative;
    width: 100%;
    object-fit: contain;
    overflow: hidden;
}
.article-image>img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: fill;
}

/* ---------- footer style ----------*/
.footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 80px 64px;
    background-color: #FFB400;
}
.footer p {
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.footer h4 {
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
.footer-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-content .first-footer-content>img {
    width: 120px;
    border-radius: 8px;
    padding: 4px;
}
.first-footer-content>div {
    display: flex;
    flex-wrap: wrap;
}
.first-footer-content>div>div {
    margin-right: 24px;
    max-width: 330px;
}
.sec-footer-content {
    display: flex;
    flex-direction: column;
    min-width: 300px;
}
.sec-footer-content>a {
    font-family: 'roboto', sans-serif;
    color: #000000;
    text-align: left;
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 8px 0px;
    align-items: center;
    align-self: stretch;
    width: fit-content;
    text-decoration: none;
}
.sec-footer-content>a:hover{
    color:rgb(0, 2, 143);
}
.sec-footer-content>a>img {
    margin-right: 20px;
}
.divider {
    margin: 32px 0px;
    width: 100%;
    height: 1px;
    background-color: #000;
    border: 0;
}
.divider-modal {
    margin: 10px 0px;
    width: 100%;
    border: 0.5px solid #e8e8e8;
}
.copyright {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family: "Roboto", sans-serif;
}

/* ---------- tablet ---------- */
@media screen and (max-width: 768px) {
    /* navbar */
    .nav-items {
        position: absolute;
        display: flex;
        flex-direction: column;
        top: 70px;
        left: 0px;
        background-color: #fff;
        padding: 20px;
        margin: 0;
        z-index: -3;
        transform: translateX(-130%);
        transition: all 1s;
        opacity: 0;
    }
    .nav-items.slide {
        transform: translateX(0);
        opacity: 1;
    }
    .navbar>.nav-items>ul {
        flex-direction: column;
        gap: 20px;
    }
    .navbar>.nav-items>ul>li {
        justify-content: start;
        height: 30px;
        width: fit-content;
    }
    .select-lang {
        margin: 30px 0;
        justify-content: start;
    }
    .toggle {
        display: block;
    }

    /* products */
    .product-wrapper {
        padding: 85px 0 0px;
    }

    /* about */
    .about-content-1>.content-desc>.content-desc-title{
        display: flex;
        flex-direction: column;
        margin-top: 15px;
    }
    .about-content-1>.content-desc>.content-desc-title>h4 {
        font-size: 32px;
    }
    .about-content-1{
        margin-top: 15px;
    }
    .about-content-1>.content-desc>.content-desc-title{
        display: block;
        margin-top: 15px;
    }
    .about-content-2 {
        margin: 0;
    }
    .about-content-2>.about-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* pagination */
    .pagination{
        justify-content: center;
        margin: 0;
    }

    /* footer */
    .first-footer-content>div>div {
        margin-top: 24px;
        margin-right: 0;
    }
}

/* ---------- Mobile ---------- */
@media only screen and (max-width: 600px) {
    .wrapper {
        padding: 24px;
    }
    .wrapper-column{
        padding: 24px;
    }
    .wrapper-article-dtl{
        padding: 20px;
        margin: 0 0 30px 0;
    }

    /* navbar */
    .navbar {
        padding: 0 20px;
    }

    /* Home Page > Header */
    .home-container>.content-header {
        margin: 0;
    }
    .home-container>.content-header>.header-banner {
        display: none;
    }
    .home-container>.content-header>.header-banner-mobile {
        display: block;
        margin-bottom: 40px;
    }
    .home-container>.content-header>.header-image {
        min-width: 85%;
        top: 58%;
    }
    .ecommerce-content{
        padding: 10px 0;
    }

    /* about */
    .about {
        background-image: url("../assets/illustrations/bacground-about-company.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .about-content-1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .about-content-1>.content-img {
        text-align: center;
    }
    .about-content-1>.content-img>img {
        width: 320px;
        object-fit: contain;
    }
    .about-content-1>.content-desc {
        text-align: center;
        margin-left: 0px;
        font-size: 16px;
    }

    /* review content */
    .review-container {
        padding-right: 20px;
        padding-left: 20px;
    }
    .review-container>.review-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .review-container>h1 {
        text-align: center;
        font-family: 'Avenir', sans-serif;
        font-weight: 700;
        font-size: 32px;
    }

    /* List Articles  */
    .articles-content {
        grid-template-columns: repeat(1, 1fr);
        margin: 40px 0
    }
    .articles-header .articles-tab {
        padding: 16px;
        margin: 0 10px;
        gap: 2px;
    }
    .article-detail>h1 {
        font-size: 32px;
    }

    /* news */
    .news-content>.news-content-tm {
        min-height: 195px;
    }
    .news-content>.news-content-tm>iframe {
        height: 195px;
    }

    /* products */
    .product-wrapper{
        padding: 0;
    }
    .product-wrapper>.product-list-desc>p {
        text-align: center;
    }
    .product-wrapper>.product-list-desc>h3 {
        text-align: center;
        font-size: 32px;
    }

    /* modal */
    .modal-container {
        padding: 40px 20px;
        width: 80%;
    }
    .modal-content>.content-description>.content-more-information {
        display: none;
    }
    .modal-content {
        display: flex;
        flex-direction: column;
    }
    .modal-content>.content-description>h2 {
        text-align: center;
    }
    .modal-content>.content-description {
        margin-top: 24px;
        margin-left: 0px;
        text-align: left;
    }
    .btn-position {
        justify-content: center;
    }
    .modal-content>img {
        width: 100%;
        height: 100%;
        align-self: center;
    }
    .copyright {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media only screen and (max-width: 400px) {
    .wrapper {
        padding: 24px;
    }
    .wrapper-column{
        padding: 24px;
    }
    .wrapper-article-dtl{
        padding: 20px;
        margin: 0 0 30px 0;
    }
    .btn-wrapper>.btn {
        padding: 8px 16px;
    }

    /* news */
    .news-content>.news-content-desc>h1 {
        font-size: 32px;
    }
    .news-content>.news-content-desc>p {
        font-size: 16px;
    }

    /* products */
    .blank-product {
        padding: 1px;
        margin: 7px;
    }
    .product-list-wrapper {
        width: 100%;
        padding: 0 20px;
    }
    .product-wrapper>.product-list-desc>p {
        text-align: center;
    }
    .product-wrapper>.product-list-desc>h3 {
        text-align: center;
        font-size: 32px;
    }
    .prev-bg {
        display: none;
    }
    .next-bg {
        display: none;
    }
    /* list articles */
    .articles-header .articles-tab>.tab-btn {
        padding: 8px 10px;
    }

    /* article detail */
    .article-detail>h1 {
        font-size: 32px;
    }

    /* footer */
    .footer {
        padding: 40px 20px;
    }
    .sec-footer-content {
        min-width: 0;
        width: 100%;
    }
    .copyright {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* ---------- More Responsive Setting ---------- */
@media (min-width: 601px) and (max-width: 920px) {

    /* Header */
    .home-container>.content-header {
        margin-bottom: 60px;
    }

    /* Products */
    .product-wrapper>.product-list-desc>p {
        text-align: center;
    }
    .product-wrapper>.product-list-desc>h3 {
        text-align: center;
        font-size: 32px;
    }

    /* modal */
    .modal-content {
        display: flex;
        flex-direction: column;
    }
    .modal-content>.content-description>.content-more-information {
        display: none;
    }
    .modal-content>.content-description>h2 {
        text-align: center;
    }
    .modal-content>.content-description {
        margin-top: 24px;
        margin-left: 0px;
        text-align: left;
    }
    .modal-content>img {
        width: 100%;
        height: 100%;
        align-self: center;
    }

    /* about */
    .about {
        background-image: url("../assets/illustrations/bacground-about-company.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        }
    .about-content-1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .about-content-1>.content-img {
        text-align: center;
    }
    .about-content-1>.content-desc {
        text-align: center;
        margin: 20px 50px;
    }

    /* review content */
    .review-container>.review-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    /* list article  */
    .articles-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 1135px) {
    /* product */
    .product-wrapper>.product-list-desc>p {
        text-align: center;
    }
    .product-wrapper>.product-list-desc>h3 {
        text-align: center;
        font-size: 32px;
    }
    .product-wrapper>.product-list-desc {
        text-align: center;
    }
    .product-wrapper {
        flex-direction: column;
    }
    /* #prev-btn {
        top: 60%;
        left: 0%;
    }
    #next-btn {
        top: 60%;
        right: 0%;
    } */

    /* news - video */
    .news-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .news-content>.news-content-tm {
        margin-right: 0px;
    }
    .news-content>.news-content-banner {
        margin-right: 0;
    }
    .news-content>.news-content-desc {
        max-width: 100%;
        margin-top: 30px;
        display: flex;
        align-items: center;
    }

    /* footer */
    .sec-footer-content {
        margin-top: 24px;
    }
}

@media only screen and (max-width: 2560px) {
    .home-container > .content-header > .header-image {
        width: 40%;
    }
}