@import url("./font.css");
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700;800&display=swap');


/* variables */
:root {
    --body: #FCF5EB;
    --primary: #0D423D;
    --secondary: #15C86D;
    --warning: #FFC700;
    --dark: #1E1E1E;
    --font-color: #2E2E2E;
    --dark-2: #414141;
    --white: #FFFFFF;
    --menu: #9FFD76;
    --gray-1: #969594;
    --gray-2: #F9F8F6;
    --gray-3: #828282;
    --gray-4: #9C9C9C;
    --gray-5: #BEBEBE;
    --success: #009E5B;
    --product-name: #F7F6F0;
    --peach1: #EBD4C3;
    --peach2: #EDCFBA;
    --peach3: #EFE7D6;
    --peach4: #F4E1DD;
    --peach5: #EBD4C3;
    --peach6: #EDCFBA;
    --green1: #DAE5BC;
    --green2: #DCE9D6;
    --green3: #D3E0BA;
    --green4: #E1EDC0;
    --green5: #C8D7B5;
    --green6: #DAE5BC;

    --dark-green: #087A70;
    --cream: #EDE4D8;
    --cream2: #D9CEC0;
    --danger: #EA2B2B;
    --border-green: #15C86D;
    --sky-blue: #AACCC9;
    --banner-green: #009E5B;
    --light-green: #028D52;
    --border-light: #E7D8C4;

    --spacing-x: 135px;
}

/* variables */

/* common */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* common */

/* body */
body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--body);
    color: var(--font-color);
    font-family: TwogetherSans, sans-serif;
    font-weight: 400;
}

.info-page p {
    font-family: 'Kanit', sans-serif;
}

/* body */

/* mobile menu icon */
.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: var(--secondary);
    stroke-width: 2.5;
    stroke-linecap: round;
}

.ham4 .top {
    stroke-dasharray: 40 121;
}

.ham4 .bottom {
    stroke-dasharray: 40 121;
}

.ham4.active .top {
    stroke-dashoffset: -68px;
}

.ham4.active .bottom {
    stroke-dashoffset: -68px;
}

/* mobile menu icon */

/* header */
.header {
    padding: 57px var(--spacing-x) 47px;
    position: relative;
    background-color: var(--primary);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 75px;
}

.menu-item-wrap {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.menu-item {
    color: var(--white);
    position: relative;
    font-size: 20px;
    margin: 0 30px;
    transition: all .3s;
}

.menu-item:hover {
    color: var(--menu);
}

.menu-item::after {
    width: 0;
    height: 0;
    background-color: var(--menu);
    border-radius: 10px;
    position: absolute;
    bottom: -5px;
    content: '';
    left: calc(50% - 7.5px);
    transition: all .3s;
}

.menu-item:hover::after {
    width: 15px;
    height: 2px;
    background-color: var(--menu);
    border-radius: 10px;
    position: absolute;
    bottom: -5px;
    content: '';
    left: calc(50% - 7.5px);
}

.menu-item.active {
    color: var(--menu);
}

.menu-item.active::after {
    width: 15px;
    height: 2px;
    background-color: var(--menu);
    border-radius: 10px;
    position: absolute;
    bottom: -5px;
    content: '';
    left: calc(50% - 7.5px);
}

/* header */

/* carousel */
#carousel-section {
    margin-top: -5px;
}

.carousel-container {
    width: 100vw;
    /* Adjust container width as needed */
    height: 100vh;
    /* Adjust container height as needed */
    overflow: hidden;
    position: relative;
    background-color: var(--primary);
    padding: 0px 0 86px var(--spacing-x);
}

.carousel {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
}

.slider-number-wrap {
    position: absolute;
    z-index: 9;
    right: var(--spacing-x);
    top: 45%;
}

.slide-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    opacity: 10%;
    margin: 10px 0;
}

.slide-number.active {
    opacity: 100%;
}

.carousel-item {
    width: 100%;
    height: 100vh;
    /* Adjust item height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.banner-badge {
    padding: 10px 20px;
    background-color: rgba(159, 253, 118, 10%);
    border-radius: 30px;
    text-align: center;
    width: fit-content;
    margin-bottom: 30px;
}

.banner-badge p {
    color: var(--menu);
    font-size: 22px;
    margin-bottom: 0;
}

.banner-title h2 {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
}

.banner-title h2 span {
    color: var(--menu);
    font-style: italic
}

.banner-desc {
    margin-top: 20px;
}

.banner-desc p {
    margin-bottom: 0;
    color: #AACCC9;
    font-size: 20px;
    font-weight: 300;
}

.v-btn {
    border: none;
    background: none;
    outline: none;
    position: relative;
    width: fit-content;
    height: fit-content;
    margin-top: 80px;
}

.banner-btn {
    text-transform: uppercase;
    background: var(--menu);
    position: relative;
    z-index: 2;
    min-width: 265px;
    min-height: 75px;
    padding: 20px 45px;
    border-radius: 47px;
    border: 4px solid var(--primary);
    text-align: center;
    transform: translateX(0) translateY(0);
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.banner-btn p {
    color: var(--white);
    margin-bottom: 0;
}

.banner-btn a {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.banner-btn:hover {
    transform: translateX(5px) translateY(9px);
}

.v-btn::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 6px;
    top: 9px;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    border-radius: 47px;
    background: var(--warning);
}

.banner-img-wrap {
    position: relative;
}

.banner-product {
    position: relative;
    z-index: 2;
    left: -45px;
}

.banner-circle {
    position: absolute;
    right: 230px;
    top: 20px;
}

.banner-vector-1,
.banner-vector-2,
.banner-vector-3,
.banner-vector-4,
.banner-vector-5 {
    position: absolute;
}

.banner-vector-1 {
    left: 85px;
    top: -35px;
    animation: vectorMovement 1s linear infinite;
}

@keyframes vectorMovement {
    0% {
        transform: rotate(0)
    }

    25% {
        transform: rotate(-20deg)
    }

    50% {
        transform: rotate(0);
    }

    75% {
        transform: rotate(20deg)
    }

    100% {
        transform: rotate(0);
    }
}

.banner-vector-2 {
    right: 250px;
    top: 45px;
    animation: circleScale 2s linear infinite;
}

.banner-vector-3 {
    left: -70px;
    top: 225px;
    animation: circleScale 2s linear .3s infinite;
}

.banner-vector-4 {
    bottom: 5%;
    right: 50%;
    animation: circleScale 2s linear .5s infinite;
}

.banner-vector-5 {
    bottom: 15%;
    left: -20%;
}

@keyframes vectorMovement {
    0% {
        transform: rotate(0)
    }

    25% {
        transform: rotate(-5deg)
    }

    50% {
        transform: rotate(0);
    }

    75% {
        transform: rotate(5deg)
    }

    100% {
        transform: rotate(0);
    }
}

@keyframes circleScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* carousel */

/* about */
#about-page {
    padding: 160px var(--spacing-x);
}

.banner-badge.light {
    background: rgba(0, 158, 91, 10%);
}

.banner-badge.light p {
    color: var(--success);
}

.desc-title h3 {
    font-size: 48px;
    line-height: 68px;
    font-weight: 700;
    color: var(--font-color);
    text-transform: uppercase;
}

.desc-wrap {
    width: 90%;
}

.desc-wrap p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 32px;
    color: var(--gray-1);
}

.section-highlight {
    position: relative;
    padding-left: 20px;
    width: 90%;
}

.section-highlight::after {
    position: absolute;
    left: 0;
    height: 100%;
    width: 2px;
    background: var(--font-color);
    content: '';
    top: 0;
}

.section-highlight p {
    font-size: 20px;
    color: var(--font-color);
}

.v-btn.light .banner-btn a {
    color: var(--gray-2);
}

.v-btn.light .banner-btn {
    border-color: var(--gray-2);
    background: var(--success);
}

.v-btn.light {
    margin-top: 40px;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: fit-content;
    height: fit-content;
    border-radius: 20px 300px 20px 20px;
    overflow: hidden;
}

.img-badge {
    position: absolute;
    top: 0;
    right: 0;
}

/* about */

/* products */
#products-page {
    padding: 0 var(--spacing-x);
}

.product-wrap {
    padding: 60px 100px 150px;
    background: var(--white);
    border-radius: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title h2 {
    margin-bottom: 0;
    margin-inline: 10px;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 700;
}

.product-items-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 260px 50px;
    margin-top: 200px;
}

.product-box {
    width: 100%;
    height: 365px;
    border-radius: 200px 200px 20px 20px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: flex-end;
    align-items: center;
}

.product-box.peach1 {
    background: var(--peach1);
}

.product-box.peach2 {
    background: var(--peach2);
}

.product-box.peach3 {
    background: var(--peach3);
}

.product-box.green1 {
    background: var(--green1);
}

.product-box.green2 {
    background: var(--green2);
}

.product-box.green3 {
    background: var(--green3);
}

.product-img {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 360px;
}

.product-img img {
    width: 100%;
}

.product-title {
    padding: 22px 30px 22px 22px;
    width: 100%;
    border-radius: 10px;
    background: var(--product-name);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    margin-top: 22px;
}

.product-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}

.product-btn {
    margin-top: -85px;
}

.product-box a {
    width: 100%;
    color: var(--font-color);
}

/* products */

/* ribbon */
#ribbon {
    padding-top: 80px;
}

.infinite-ribbon {
    transform: rotate(-3deg);
    background-color: var(--warning);
}

.ribbon-text {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.ribbon-text span {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 20px 45px;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
    color: var(--white);
    position: relative;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ribbon */

/* benefits */
#benefits {
    padding: 190px var(--spacing-x) 430px;
    background: var(--primary);
    margin-top: -60px;
}

.section-title.light h2 {
    color: var(--white);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.benefit-box {
    padding: 60px;
    width: 100%;
    border: 4px solid var(--border-green);
    border-radius: 30px;
}

.icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--warning);
}

.box-title {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
}

.box-desc {
    font-size: 18px;
    font-weight: 200;
    color: var(--sky-blue);
    margin-bottom: 0;
}

/* benefits */

/* story */
#story {
    padding: 0 var(--spacing-x);
    position: relative;
    margin-top: -270px;
}

.story-container {
    padding: 80px;
    width: 100%;
    height: 540px;
    border-radius: 40px;
    background-color: var(--banner-green);
    background-image: url(../img/extra/banner-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.story-title {
    margin-bottom: 20px;
}

.story-title h3 {
    font-size: 64px;
    font-weight: 600;
    color: var(--warning);
    text-transform: uppercase;
}

.story-desc {
    font-size: 28px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 10px;
    width: 93%;
}

.story-link {
    font-size: 28px;
    font-weight: 300;
    color: var(--warning);
}

.illustration {
    position: absolute;
    bottom: 0;
}

/* story */

/* blog section */
#blog-section {
    padding: 100px var(--spacing-x);
}

.blog-container {
    margin-top: 50px;
}

.blog-img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
}

.created-at {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-3);
}

.blog-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.blog-brief {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-1);
    display: -webkit-box;
    line-clamp: 3;
    box-orient: vertical;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    /* Adjust as necessary */
    line-height: 18px;
    /* Adjust as necessary */
    margin-top: 5px;
    margin-bottom: 5px;
}

.category {
    font-size: 14px;
    font-weight: 300;
    color: var(--border-green);
}

.category span {
    color: var(--gray-1);
}

.section-title.blog-detail-title h2 {
    text-align: left;
    margin-bottom: 60px;
}

.blog-detail-img {
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.blog-detail-img img {
    width: 100%;
}

.blog-content-detail p {
    color: var(--gray-1);
    font-weight: 300;
}

.blog-content-detail h1,
.blog-content-detail h2,
.blog-content-detail h3,
.blog-content-detail h4,
.blog-content-detail h5,
.blog-content-detail h6 {
    margin-bottom: 30px;
    margin-top: 30px;
}

.blog-content-detail li {
    margin-bottom: 10px;
    color: var(--gray-1);
}

.blog-content-detail li strong {
    font-weight: 600;
    color: var(--font-color);
}

/* blog section */

/* footer */
#footer {
    background-color: var(--dark);
}

.footer-top {
    padding: 100px var(--spacing-x) 60px;
    display: grid;
    grid-template-columns: 425px 225px 225px 225px 225px;
    /* gap: 65px; */
    align-items: flex-start;
    justify-content: space-between;
}

.footer-text {
    margin-top: 35px;
    font-size: 16px;
    font-weight: 200;
    color: var(--gray-1);
}

.footer-menu-title {
    color: var(--menu);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 15px;
}

.footer-link {
    display: grid;
}

.footer-menu-item {
    font-size: 16px;
    font-weight: 200;
    color: var(--white);
    margin-block: 5px;
    text-transform: capitalize;
}

.footer-bottom {
    padding: 22px var(--spacing-x);
    border-top: 1px solid var(--dark-2);
}

.copyright-text {
    text-align: center;
    color: var(--gray-4);
    font-size: 16px;
    font-weight: 200;
}

/* footer */

/* ============================ */
/* ========== About Us ======== */
/* ============================ */

.about-page-brief {
    font-size: 48px;
    line-height: 74px;
    font-weight: 300;
    margin-top: 30px;
}

#about-desc,
#contact-page {
    padding: 110px var(--spacing-x) 70px;
}

#story.about-story {
    margin-top: 70px;
}

.desc-wrap.page-desc-wrap p {
    font-size: 28px;
    line-height: 44px;
    font-weight: 300;
}

.box-desc.dark {
    color: var(--gray-1);
}

.box-title.dark {
    color: var(--font-color);
}

.advantage-box {
    padding: 60px;
    border: 1px solid var(--light-green);
    border-radius: 20px;
    height: 100%;
}

#advantages {
    padding: 120px var(--spacing-x) 0;
}

.advantages-wrap {
    padding: 60px 126px 228px;
    background: var(--white);
    border-radius: 40px;
    margin-bottom: -190px;
}

.advantages-info {
    margin-top: 60px;
}

.about-page-benifit .benefits-container {
    margin-bottom: 125px;
}

.faq-title {
    margin-bottom: 75px;
}

.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button,
.accordion-item:first-of-type,
.accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-button,
.accordion-body {
    padding: 40px;
    background-color: transparent;
    color: var(--white);
}

.accordion-item {
    background-color: transparent;
    border: 2px solid var(--light-green);
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    box-shadow: none;
    background-color: transparent;
    padding-bottom: 0;
}

.accordion-button {
    font-size: 32px;
    font-weight: 600
}

.accordion-body {
    font-size: 28px;
    font-weight: 200;
    color: var(--sky-blue);
}

.accordion-button::after {
    background-image: url(../img/icons/arrow.svg);
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../img/icons/arrow.svg);
}

.accordion-button:focus {
    border-color: var(--light-green);
    box-shadow: none;
}

#benefits.about-page-benifit {
    padding-bottom: 120px;
}

/* ============================ */
/* ========== Products ======== */
/* ============================ */

#products-showcase {
    padding: 120px var(--spacing-x);
}

#products-showcase .section-title {
    margin-bottom: 50px;
}

.showcase .product-box {
    height: 450px;
    border-radius: 250px 250px 20px 20px;
}

.showcase .product-img {
    width: auto;
}

/* ============================ */
/* =====  Products Detail ===== */
/* ============================ */

.product-brief-desc {
    font-size: 36px;
    font-weight: 200;
    color: var(--gray-3);
}

.product-brief-desc h4 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--font-color);
}

.inner-banner-wrap {
    padding: 80px;
    border-radius: 40px;
    background-color: var(--primary);
    background-image: url(../img/products/detail-banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    overflow: hidden;
    margin-block: 100px;
}

.inner-banner-wrap h3 {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0;
}

.inner-banner-wrap h3 span {
    color: var(--warning);
}

.devider {
    border-bottom: 2px solid var(--border-light);
}

.mb-95 {
    margin-bottom: 95px;
}

#related-products {
    padding: 0 var(--spacing-x) 95px;
}

/* ============================ */
/* ========  Contact us ======= */
/* ============================ */

.contact-detail-container {
    margin-top: 120px;
}

.contact-detail-wrap {
    padding-right: 100px;
    border-right: 1px solid var(--gray-5);
    gap: 50px;
    display: flex;
    flex-direction: column;
}

.contact-detail-box {
    padding: 50px;
    border-radius: 30px;
    background: var(--dark-green);
}

.contact-box-title {
    margin-bottom: 50px;
    font-size: 48px;
    text-transform: uppercase;
    line-height: 65px;
    font-weight: 600;
    color: var(--white);
}

.details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-link a {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-left: 20px;
}

.contact-form-wrap {
    padding-left: 100px;
}

.form-title {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-green);
}

.form-desc {
    font-size: 20px;
    line-height: 32px;
    font-weight: 200;
    color: var(--gray-1);
}

.form-wrap {
    margin-top: 50px;
}

.form-label {
    color: var(--font-color);
    font-size: 24px;
    font-weight: 600;
}

.form-label span {
    color: var(--danger);
}

.form-control {
    background-color: var(--cream);
    border-radius: 10px;
    padding: 20px;
    border: none;
    box-shadow: none;
    font-size: 24px;
    color: var(--peach2);
}

.form-control::placeholder {
    color: var(--cream2);
}

.form-control:focus {
    background-color: var(--cream);
    border: none;
    box-shadow: none;
}

/* ============== Table ============= */
.table tr {
    background-color: transparent;
    border-width: 1px;
}

td {
    padding: 12px 20px;
    border-width: 1px;
    font-size: 24px;
}

table {
    min-width: 50%;
}

.center-description {
    color: var(--font-color);
}

/* ============================== */
/* ========= Responsive  ======== */
/* ============================== */

/* ========== screen size : 1880px ========== */
@media (max-width: 1880px) {
    .infinite-ribbon {
        width: 102%;
        margin-left: -20px;
    }

    .contact-box-title {
        margin-bottom: 35px;
        font-size: 35px;
        line-height: 55px;
    }

    .details {
        gap: 30px;
    }

    .detail-link a {
        font-size: 22px;
        margin-left: 15px;
    }

    .product-wrap {
        padding: 60px 75px 150px;
    }

    .product-items-container {
        gap: 260px 35px;
    }

    .blog-img {
        height: auto;
    }
}

/* screen size : 1880px */

/* screen size : 1800px */
@media (max-width: 1800px) {

    /* carousel */
    .banner-title h2,
    .story-title h3,
    .inner-banner-wrap h3 {
        font-size: 60px;
    }

    .v-btn,
    .benefits-container {
        margin-top: 60px;
    }

    .banner-circle {
        right: 130px;
        top: 0;
        width: 75%;
    }

    .carousel-container {
        height: 100vh;
    }

    .banner-product {
        width: 95%;
        left: 47px;
    }

    .banner-vector-1 {
        left: 150px;
        top: -40px;
    }

    .banner-vector-2 {
        right: 136px;
        top: 10px;
    }

    .banner-vector-3 {
        left: 7px;
        top: 251px;
    }

    .banner-vector-4 {
        bottom: 7%;
        right: 24%;
    }

    .banner-vector-5 {
        bottom: 11%;
        left: -12%;
    }

    .carousel-item .row {
        height: 90%;
    }

    .slide-number {
        opacity: 45%;
    }

    /* carousel */

    /* about */
    .about-img {
        width: 100%;
    }

    .about-img img {
        width: 100%;
    }

    /* about */
}

/* ========== screen size : 1800px ========== */

/* ========== screen size : 1680px ========== */
@media (max-width: 1680px) {
    :root {
        --spacing-x: 120px;
    }

    .header {
        padding: 45px var(--spacing-x) 37px;
    }

    .banner-badge p {
        font-size: 20px;
    }

    .banner-badge {
        margin-bottom: 25px;
    }

    .product-items-container {
        gap: 185px 35px;
    }

    .desc-title h3,
    .section-title h2,
    .ribbon-text span,
    .about-page-brief,
    .contact-box-title {
        font-size: 44px;
        line-height: 65px;
    }

    .detail-link a,
    .form-label,
    .form-control,
    .slide-number,
    .carousel-item,
    .banner-btn,
    .banner-btn a,
    .product-name {
        font-size: 18px;
    }

    .product-title {
        padding: 20px 25px 20px 20px;
    }

    .product-img,
    .showcase .product-img {
        width: 325px;
    }

    .showcase .product-box {
        height: 370px;
    }

    .benefit-box {
        padding: 50px;
    }

    .banner-vector-1 {
        left: 140px;
    }

    .accordion-button {
        font-size: 30px;
        font-weight: 600;
    }

    .accordion-button,
    .accordion-body {
        padding: 35px;
    }

    .advantages-info {
        margin-top: 25px;
    }

    .product-brief-desc {
        font-size: 30px;
    }

    .banner-title h2,
    .story-title h3,
    .inner-banner-wrap h3 {
        font-size: 54px;
    }

    .inner-banner-wrap {
        padding: 60px;
    }

    .product-brief-desc img {
        max-width: 100%;
    }

    .blog-content-detail h1,
    .blog-content-detail h2,
    .blog-content-detail h3,
    .blog-content-detail h4,
    .blog-content-detail h5,
    .blog-content-detail h6 {
        margin-block: 20px;
    }

    .blog-detail-img,
    .section-title.blog-detail-title h2 {
        margin-bottom: 40px;
    }
}

/* ========== screen size : 1680px ========== */

/* ========== screen size : 1440px ========== */
@media (max-width: 1440px) {
    :root {
        --spacing-x: 100px;
    }

    .blog-title,
    .footer-menu-title,
    .form-desc,
    .menu-item,
    .banner-desc p,
    .desc-wrap p,
    .section-highlight p {
        font-size: 18px;
    }

    .menu-item {
        margin: 0 20px;
    }

    .banner-circle {
        right: 100px;
    }

    .banner-vector-1 {
        left: 118px;
    }

    .banner-title h2,
    .story-title h3,
    .inner-banner-wrap h3 {
        font-size: 52px;
    }

    .banner-product {
        left: 35px;
    }

    .banner-vector-5 {
        bottom: 1%;
    }

    .banner-vector-1 {
        left: 108px;
    }

    .slider-number-wrap {
        top: 20%;
    }

    .carousel-container {
        height: 82vh;
    }

    #about-page {
        padding: 100px var(--spacing-x);
    }

    .product-wrap {
        padding: 45px 70px 105px;
        border-radius: 35px;
    }

    .desc-title h3,
    .section-title h2,
    .ribbon-text span,
    .about-page-brief,
    .contact-box-title {
        font-size: 35px;
        line-height: 50px;
    }

    .product-img {
        width: 275px;
    }

    .product-box {
        height: 325px;
    }

    .detail-link a,
    .form-label,
    .form-control,
    .slide-number,
    .carousel-item,
    .banner-btn,
    .banner-btn a,
    .product-name {
        font-size: 14px;
    }

    .product-title a svg {
        width: 20px;
    }

    #benefits {
        padding: 135px var(--spacing-x) 390px;
        margin-top: -40px;
    }

    .benefit-box {
        padding: 45px;
        border-radius: 25px;
    }

    .icon-wrap {
        width: 75px;
        height: 75px;
        border-radius: 15px;
    }

    .box-title {
        font-size: 22px;
    }

    .story-desc,
    .story-link,
    .desc-wrap.page-desc-wrap p,
    .accordion-body {
        font-size: 24px;
        line-height: 35px;
    }

    .story-container {
        height: 495px;
    }

    .illustration img {
        max-width: 90%;
    }

    .blog-img {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        height: auto;
    }

    .footer-top {
        padding: 80px var(--spacing-x) 40px;
        grid-template-columns: 310px 185px 185px 185px 225px;
        gap: 35px;
    }

    .about-img {
        border-radius: 20px 230px 20px 20px;
    }

    .img-badge {
        width: 160px;
    }

    .img-badge img {
        width: 100%;
    }

    .product-items-container {
        row-gap: 160px;
    }

    .logo img {
        height: 55px;
    }

    .showcase .product-img {
        width: 275px;
    }

    .showcase .product-box {
        height: 305px;
        border-radius: 200px 200px 20px 20px;
    }

    .contact-icon img {
        width: 40px;
    }

    .details {
        gap: 20px;
    }

    .contact-box-title {
        margin-bottom: 25px;
    }

    td {
        font-size: 20px;
    }
}

/* ========== screen size : 1440px ========== */

/* ========== screen size : 1366px ========== */
@media (max-width: 1366px) {
    .product-img {
        width: 265px;
    }

    .showcase .product-img {
        width: 265px;
        border-radius: 170px 170px 20px 20px;
    }

    .benefit-box {
        padding: 35px;
    }

    .footer-top {
        grid-template-columns: 315px 165px 165px 165px 210px;
    }

    .footer-logo img {
        height: 55px;
    }

    .product-brief-desc {
        font-size: 28px;
    }

    .banner-title h2,
    .story-title h3,
    .inner-banner-wrap h3 {
        font-size: 48px;
    }

    .inner-banner-wrap {
        padding: 45px;
    }

    .banner-btn {
        min-width: 240px;
    }

    .contact-detail-box {
        padding: 45px;
        border-radius: 20px;
    }

    td {
        font-size: 18px;
    }
}

/* ========== screen size : 1366px ========== */

/* ========== screen size : 1280px ========== */
@media (max-width: 1280px) {
    :root {
        --spacing-x: 90px;
    }

    .banner-badge p {
        font-size: 15px;
    }

    .banner-title h2,
    .story-title h3,
    .inner-banner-wrap h3 {
        font-size: 44px;
    }

    .v-btn,
    .benefits-container {
        margin-top: 45px;
    }

    .about-img {
        border-radius: 15px 170px 15px 15px;
    }

    .img-badge {
        width: 120px;
    }

    #about-page {
        padding: 85px var(--spacing-x);
    }

    .blog-title,
    .footer-menu-title,
    .form-desc,
    .menu-item,
    .banner-desc p,
    .desc-wrap p,
    .section-highlight p {
        font-size: 16px;
        line-height: 27px;
    }

    .banner-btn {
        min-width: 225px;
        min-height: 60px;
    }

    .product-items-container {
        margin-top: 140px;
    }

    .product-img {
        width: 225px;
    }

    .product-box {
        height: 260px;
    }

    .detail-link a,
    .form-label,
    .form-control,
    .slide-number,
    .carousel-item,
    .banner-btn,
    .banner-btn a,
    .product-name {
        font-size: 13px;
    }

    .product-name {
        font-weight: 400;
    }

    .product-items-container {
        row-gap: 135px;
    }

    .product-title {
        padding: 10px 15px;
        border-radius: 6px;
    }

    .icon-wrap {
        width: 65px;
        height: 65px;
        border-radius: 10px;
    }

    .icon-wrap img {
        width: 35px;
    }

    .box-title {
        font-size: 19px;
    }

    .box-desc {
        font-size: 15px;
    }

    .story-desc,
    .story-link,
    .desc-wrap.page-desc-wrap p,
    .accordion-body {
        font-size: 20px;
    }

    .story-container {
        height: 450px;
    }

    .illustration img {
        max-width: 80%;
    }

    .blog-img {
        height: 155px;
    }

    .footer-menu-item {
        margin-block: 3px;
    }

    .footer-menu-title {
        margin-bottom: 10px;
    }

    .footer-text {
        margin-top: 25px;
    }

    .footer-text,
    .footer-menu-item,
    .copyright-text {
        font-size: 14px;
    }

    .footer-top {
        grid-template-columns: 300px 150px 150px 150px 200px;
    }

    #blog-section {
        padding: 70px var(--spacing-x);
    }

    .blog-container,
    .form-wrap {
        margin-top: 25px;
    }

    .accordion-button,
    .accordion-body {
        padding: 30px;
    }

    .accordion-button {
        font-size: 26px;
        font-weight: 600;
    }

    .showcase .product-img {
        width: 225px;
    }

    .showcase .product-box {
        height: 260px;
    }

    .product-brief-desc h4 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    #products-showcase {
        padding: 75px var(--spacing-x);
    }

    .mb-95 {
        margin-bottom: 75px;
    }

    .contact-detail-wrap {
        padding-right: 70px;
        gap: 40px;
    }

    .contact-form-wrap {
        padding-left: 70px;
    }

    .v-btn.light {
        margin-top: 22px;
    }

    .blog-detail-img {
        height: 500px;
    }
}

/* ========== screen size : 1280px ========== */

@media (max-width: 1024px) {

    :root {
        --spacing-x: 70px;
    }

    .footer-top {
        grid-template-columns: 280px 115px 125px 115px 149px;
    }

    .contact-detail-wrap {
        padding-right: 0;
        gap: 40px;
        flex-direction: row;
        border-right: 0;
        border-bottom: 1px solid var(--gray-5);
        padding-bottom: 60px;
    }

    .contact-detail-box {
        width: 100%;
    }

    .contact-icon img {
        width: 30px;
    }

    .contact-detail-box {
        padding: 30px 35px;
    }

    .detail-link a {
        font-weight: 500;
    }

    .contact-form-wrap {
        padding-top: 60px;
        padding-left: 0;
    }

    .banner-title {
        width: 90%;
    }

    .banner-desc {
        width: 78%;
    }

    .banner-product {
        left: 46%;
        width: 55%;
    }

    .carousel-container {
        height: 100vh;
    }

    .banner-circle {
        right: 80px;
        width: 40%;
        top: 10%;
    }

    .banner-vector-1 {
        left: 52%;
        top: -48px;
    }

    .banner-vector-2 {
        right: 9%;
        top: 15px;
    }

    .banner-vector-3 {
        left: 42%;
        top: 70%;
    }

    .banner-vector-4 {
        bottom: 5%;
        right: 12%;
    }

    .banner-vector-5 {
        display: none;
    }

    .banner-desc {
        width: 80%;
    }

    #about-page .v-btn.light {
        margin-bottom: 100px;
    }

    .product-items-container,
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .illustration {
        right: calc(var(--spacing-x) + 30px);
        z-index: 1;
    }

    .illustration img {
        max-width: initial;
        height: 300px;
    }

    .story-desc {
        position: relative;
        z-index: 2;
    }

    .blog-img {
        height: auto;
    }

    .footer-top {
        grid-template-columns: 1fr 22% 22%;
    }

    .advantages-wrap {
        padding: 60px 75px 180px;
    }

    .advantage-box {
        padding: 40px;
    }

    .showcase .product-box {
        height: 345px;
    }

    .showcase .product-img {
        width: 320px;
    }

    td {
        font-size: 16px;
    }
}

/* ========== screen size : 992px ========== */
@media (max-width: 992px) {
    .banner-product {
        left: 46%;
        width: 55%;
    }

    .carousel-container {
        height: 100vh;
    }

    .banner-circle {
        right: 80px;
        width: 40%;
        top: 10%;
    }

    .banner-vector-1 {
        left: 52%;
        top: -48px;
    }

    .banner-vector-2 {
        right: 9%;
        top: 15px;
    }

    .banner-vector-3 {
        left: 42%;
        top: 70%;
    }

    .banner-vector-4 {
        bottom: 5%;
        right: 12%;
    }

    .banner-vector-5 {
        display: none;
    }

    .banner-desc {
        width: 80%;
    }

    #about-page .v-btn.light {
        margin-bottom: 100px;
    }

    .about-img {
        border-radius: 20px 300px 20px 20px;
    }

    .img-badge {
        width: auto;
    }

    .product-items-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .illustration {
        right: calc(var(--spacing-x) + 30px);
        z-index: 1;
    }

    .illustration img {
        max-width: initial;
        height: 300px;
    }

    .story-desc {
        position: relative;
        z-index: 2;
    }

    .blog-img {
        height: 100%;
    }

    .advantages-wrap {
        padding: 45px 70px 150px;
    }

    .advantage-box {
        padding: 45px;
    }

    .accordion-button,
    .accordion-body {
        padding: 25px;
    }

    .accordion-button {
        font-size: 23px;
        font-weight: 600;
    }
}

/* ========== screen size : 992px ========== */

/* ========== screen size : 820px ========== */
@media (max-width: 820px) {
    :root {
        --spacing-x: 75px;
    }

    .footer-top {
        grid-template-columns: 1fr 22% 22%;
    }

    .banner-title h2,
    .story-title h3,
    .inner-banner-wrap h3 {
        font-size: 35px;
    }

    .banner-title {
        width: 90%;
    }

    .desc-title h3,
    .section-title h2,
    .ribbon-text span,
    .about-page-brief,
    .contact-box-title {
        font-size: 30px;
        line-height: 40px;
    }

    .section-title h2 {
        text-align: center;
    }

    .product-wrap {
        padding: 40px 50px 105px;
        border-radius: 20px;
    }

    .product-items-container {
        column-gap: 35px;
    }

    .illustration img {
        height: 260px;
    }

    .story-container {
        height: 350px;
        border-radius: 30px;
        padding: 50px;
    }

    .illustration img {
        height: 190px;
    }

    #benefits {
        padding: 135px var(--spacing-x) 310px;
    }

    #story {
        margin-top: -180px;
    }

    .showcase .product-img {
        width: 263px;
    }

    .showcase .product-box {
        height: 285px;
    }

    .product-brief-desc {
        font-size: 24px;
    }

    .product-brief-desc h4 {
        font-size: 28px;
    }

    .blog-content-detail h1,
    .blog-content-detail h2,
    .blog-content-detail h3,
    .blog-content-detail h4,
    .blog-content-detail h5,
    .blog-content-detail h6 {
        margin-block: 15px;
    }

    .blog-detail-img,
    .section-title.blog-detail-title h2 {
        margin-bottom: 30px;
    }

    .blog-detail-img {
        height: 350px;
    }
}

/* ========== screen size : 820px ========== */

/* ========== screen size : 768px ========== */
@media (max-width: 768px) {
    :root {
        --spacing-x: 55px;
    }

    .inner-banner-wrap {
        border-radius: 30px;
    }

    .desc-title h3,
    .section-title h2,
    .ribbon-text span,
    .about-page-brief,
    .contact-box-title {
        font-size: 26px;
        line-height: 38px;
    }

    .product-img {
        width: 215px;
    }

    .product-box {
        height: 240px;
    }

    .infinite-ribbon {
        margin-left: 0;
    }

    .showcase .product-img {
        width: 260px;
    }

    #products-showcase {
        padding: 50px var(--spacing-x);
    }

    .product-items-container {
        margin-top: 110px;
    }

    td {
        font-size: 14px;
    }
}

/* ========== screen size : 768px ========== */

/* ========== screen size : 600px ========== */
@media (max-width: 600px) {
    :root {
        --spacing-x: 45px;
    }

    .ham {
        display: block;
        position: relative;
        z-index: 999;
    }

    .menu-item-wrap {
        position: fixed;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        top: 0;
        background: var(--body);
        z-index: 998;
        align-items: center;
        justify-content: center;
        right: -100%;
        transition: all .3s ease;
    }

    .menu-item-wrap.active {
        right: 0;
    }

    .product-items-container,
    .benefits-container {
        grid-template-columns: 1fr;
    }

    .about-img {
        border-radius: 20px 145px 20px 20px;
    }

    .img-badge {
        width: 105px;
    }

    .detail-link a,
    .form-label,
    .form-control,
    .slide-number,
    .carousel-item,
    .banner-btn,
    .banner-btn a,
    .product-name {
        font-size: 10px;
    }

    .banner-btn {
        min-width: 160px;
        min-height: 40px;
        padding: 10px 30px;
    }

    .desc-title h3,
    .section-title h2,
    .ribbon-text span,
    .about-page-brief,
    .contact-box-title {
        font-size: 18px;
        line-height: 27px;
    }

    .title-start,
    .title-end {
        width: 25px;
    }

    .header {
        padding: 20px var(--spacing-x);
    }

    .banner-badge {
        padding: 5px 15px;
    }

    .banner-badge p {
        font-size: 13px;
    }

    .banner-title h2,
    .story-title h3,
    .inner-banner-wrap h3 {
        font-size: 25px;
    }

    .banner-desc {
        margin-top: 10px;
    }

    .v-btn,
    .benefits-container {
        margin-top: 22px;
    }

    .v-btn::after {
        left: 5px;
        top: 6px;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
    }

    .banner-product {
        left: 19%;
        width: 82%;
    }

    .banner-circle {
        right: 65px;
        width: 63%;
        top: 9%;
    }

    .banner-vector-1 {
        left: 25%;
        top: -44px;
    }

    #about-page {
        padding: 65px var(--spacing-x);
    }

    .blog-title,
    .footer-menu-title,
    .form-desc,
    .menu-item,
    .banner-desc p,
    .desc-wrap p,
    .section-highlight p {
        font-size: 14px;
        line-height: 23px;
    }

    #about-page .v-btn.light {
        margin-bottom: 55px;
        margin-top: 10px;
    }

    .product-img {
        width: 185px;
    }

    .product-items-container {
        row-gap: 65px;
        margin-top: 100px;
    }

    #products-page .v-btn.light {
        margin-top: 60px;
    }

    .story-container {
        height: auto;
        border-radius: 20px;
        padding: 35px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 47%);
        column-gap: 15px;
    }

    .footer-desc {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    .menu-item {
        font-size: 28px;
        margin-block: 17px;
        color: var(--font-color);
    }

    .menu-item.active,
    .menu-item:hover {
        color: var(--dark-green);
    }

    .menu-item.active::after,
    .menu-item:hover::after {
        bottom: -10px;
        background-color: var(--dark-green);
    }

    .advantages-wrap {
        padding: 35px 45px 150px;
    }

    .advantages-info {
        margin-top: 0;
    }

    .advantages-wrap {
        border-radius: 25px;
    }

    .about-icon img {
        width: 50px;
    }

    .advantage-box {
        padding: 25px;
        border-radius: 15px;
    }

    .accordion-button,
    .accordion-body {
        padding: 20px;
    }

    .accordion-button {
        font-size: 18px;
        font-weight: 500;
    }

    .accordion-button::after {
        background-size: 15px;
    }

    .story-desc,
    .story-link,
    .desc-wrap.page-desc-wrap p,
    .accordion-body {
        font-size: 16px;
        line-height: 35px;
    }

    .showcase .product-img {
        width: 220px;
    }

    .showcase .product-box {
        height: 250px;
        border-radius: 150px 150px 20px 20px;
    }

    #products-showcase .product-items-container {
        row-gap: 145px;
    }

    #products-showcase .product-name {
        font-size: 13px;
    }

    .inner-banner-wrap .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    #products-showcase .section-title {
        margin-bottom: 25px;
    }

    .product-brief-desc {
        font-size: 16px;
    }

    .inner-banner-wrap {
        border-radius: 21px;
        padding: 30px 20px;
    }

    .product-brief-desc h4 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .product-name {
        font-size: 12px;
    }

    .contact-detail-wrap {
        flex-direction: column;
    }

    .form-title {
        font-size: 24px;
    }

    .form-control {
        border-radius: 5px;
        padding: 15px;
    }

    .form-label {
        font-weight: 500;
    }

    .blog-detail-img {
        height: 150px;
    }

    td {
        font-size: 12px;
    }
}

/* ========== screen size : 600px ========== */