@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    /* ===== Colors ===== */
    --body-bg-color: #FFFAF5;
    --primary-color: #8B5D39;
    --seconday-color: #E8DBCF;
    --brand-color-2: #C29A69;
    --brand-color-dark: #72513C;

    --black-color: #000000;
    --site-color: #262626;
    --white-color: #FAFAFA;

    --site-border: rgba(0, 0, 0, .15);

    /* ===== Typography ===== */
    --hero-title-font: "Inter", sans-serif;
    --font-main: "Inter", sans-serif;
    --section-heading-font: "Inter", sans-serif;

    --h1: 65px;
    --h2: 44px;
    --h3: 22px;
    --h4: 19;

    --text-base: 16px;
    --text-small: 14px;
    --menu-text: 16px;

    --line-height: 1.7;
    --letter-spacing: 1;

    /* ===== 8px Spacing System ===== */
    --space-0-5: 4px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-7: 56px;
    --space-8: 64px;
    --space-9: 72px;
    --space-10: 80px;
    --space-11: 88px;
    --space-12: 96px;

    --header-height: 135px;

    /* ===== Shadows ===== */
    --shadow-main: 0 10px 15px rgba(0, 0, 0, .15);
    --shadow-sm: 0 6px 8px rgba(0, 0, 0, .10);

    --site-container: 1080px;
    /* --site-container-fluid: 1200px; */
    --site-line-height: 1.7;

    /* ========================= CONTAINER MAX WIDTHS ========================= */
    --container-xs: 100%;
    --container-sm: 720px;
    /* mobile landscape / small tablets */
    --container-md: 960px;
    /* tablets */
    --container-lg: 1080px;
    /* laptops (your default) */
    --container-xl: 1280px;
    /* large laptops */
    --container-2xl: 1440px;
    /* desktops */
    --container-3xl: 1680px;
    /* 2K */
    --container-4xl: 1920px;
    /* 4K safe */

    --section-block-space: 96px;
    --section-block-space-medium: 64px;

    --inpt-field-ht: 50px;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
ul,
li,
form,
label,
nav,
ul,
button,
input {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

body {
    background: var(--body-bg-color);
    font-family: var(--font-main);
    font-size: var(--text-base);
    overflow-x: hidden;
    line-height: var(--site-line-height);
    color: var(--site-color);
    width: 100%;
    overflow-x: hidden;
    font-weight: 400;
}

a,
a:focus,
a:hover {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-container {
    width: 100%;
    max-width: calc(var(--site-container) + var(--space-2));
    padding-inline: var(--space-2);
    margin-inline: auto;
}

/* 
 .site-container-fluid {
     width: 100%;
     max-width: var(--site-container-fluid);
     margin-inline: auto;
     padding-inline: var(--space-2);
 } */

.site-container-xl {
    padding-inline: var(--space-2);
}

ul {
    list-style-type: none;
}

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

.index-2 {
    position: relative;
    z-index: 2;
}

.index-5 {
    position: relative;
    z-index: 5;
}

.img-fit,
.img-fluid {
    width: 100%;
    display: block;
    object-fit: cover;
}

.img-fluid {
    height: 100%;
}

.site-img {
    border-radius: 8px;
}

.site-rad {
    border-radius: 12px;
}

h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    letter-spacing: -5%;
    line-height: 1.2;
}


h1 {
    font-family: var(--hero-title-font);
    font-weight: 400;
    line-height: 1.1;
}

.site-title-h1,
h1 {
    font-size: var(--h1);
    line-height: 1;
}

.site-title-h2,
h2 {
    font-family: var(--section-heading-font);
    font-size: var(--h2);
}

.site-title-h3 {
    font-size: var(--h3);
}

.site-title-h4 {
    font-size: var(--h4);
}

.body-text {
    font-size: var(--text-base);
}

.small-text {
    font-size: var(--text-small);
}

.site-section-lg {
    padding-block: var(--space-12);
}

.site-section-med {
    padding-block: var(--space-8);
}

.site-section-sml {
    padding-block: 40px;
}

.section-header .subtitle-text {
    margin-bottom: 8px;
}

/* .site-container {width: 100%;max-width: var(--container-xs);margin-inline: auto;padding-inline: var(--space-2);} */
/* @media(min-width:640px){.site-container{max-width:var(--container-sm);}}
@media(min-width:768px){.site-container{max-width:var(--container-md);}}
@media(min-width:1024px){.site-container{max-width:var(--container-lg);}}
@media(min-width:1280px){.site-container{max-width:var(--container-xl);}}
@media(min-width:1440px){.site-container{max-width:var(--container-2xl);}}
@media(min-width:1680px){.site-container{max-width:var(--container-3xl);}}
@media(min-width:1920px){.site-container{max-width:var(--container-4xl);}} */



/* Site grid system */
.grid {
    display: grid;
}

.cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

.span-2 {
    grid-column: span 2;
}

.span-3 {
    grid-column: span 3;
}

.span-4 {
    grid-column: span 4;
}

@media(max-width:767px) {
    .cols-m-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .cols-m-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cols-m-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .m-wrap {
        flex-wrap: wrap;
    }

    .gap-m-1 {
        gap: 8px !important;
    }

    .gap-m-2 {
        gap: 16px !important;
    }

    .gap-m-3 {
        gap: 24px;
    }

    .gap-m-4 {
        gap: 32px;
    }

    .gap-m-5 {
        gap: 40px;
    }

    .gap-m-6 {
        gap: 48px;
    }

    .gap-m-8 {
        gap: 64px;
    }

    .gap-m-10 {
        gap: 80px;
    }

    .m-fd-col {
        display: flex;
        flex-direction: column !important;
    }
    
    .m-fd-col-rev {
        display: flex;
        flex-direction: column-reverse !important;
    }

    .mw-fluid {
        width: 100% !important;
    }

    .m-items-start {
        align-items: flex-start !important;
    }

}

@media(min-width:768px) and (max-width:1023px) {
    .cols-t-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cols-t-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Site grid system */


/* Flex classes */
/* .flex{display:flex;} */
.flex-col {
    display: flex;
    flex-direction: column;
}

.inline-flex {
    display: inline-flex;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.items-stretch {
    align-items: stretch;
}

.items-baseline {
    align-items: baseline;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.self-start {
    align-self: flex-start;
}

.self-center {
    align-self: center;
}

.self-end {
    align-self: flex-end;
}

.self-stretch {
    align-self: stretch;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}

.gap-4 {
    gap: 32px;
}

.gap-5 {
    gap: 40px;
}

.gap-6 {
    gap: 48px;
}

.gap-8 {
    gap: 64px;
}

.gap-10 {
    gap: 80px;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.flex-4 {
    flex: 4;
}

.flex-5 {
    flex: 5;
}

.flex-6 {
    flex: 6;
}

.flex-7 {
    flex: 7;
}

.flex-8 {
    flex: 8;
}

.flex-9 {
    flex: 9;
}

.flex-10 {
    flex: 10;
}

/* Flex classes */

.row-gap-4 {
    gap: 4px;
}

.row-gap-12,
.col-gap-20 {
    gap: 12px;
}

.row-gap-20,
.col-gap-20 {
    gap: 20px;
}

.row-gap-40,
.col-gap-40 {
    gap: 40px;
}

.row-gap-60,
.col-gap-60 {
    gap: 60px;
}

/* Base zig-zag layout */
/* .zig-wrapper{} */
.zig-zag {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

/* Column roles */
.zig-media {
    flex: 5;
}

.zig-content {
    flex: 7;
}

/* Auto alternate for dynamic loop content */
.zig-wrapper>.zig-zag:nth-child(even) {
    flex-direction: row-reverse;
}

/* Image styling */
.zig-img {
    width: 100%;
    border-radius: var(--space-2);
}

/* Mobile behavior */
@media(max-width:767px) {
    .zig-zag {
        flex-direction: column;
    }

    .zig-media {
        order: 1;
        flex: unset;
        width: 100%;
    }

    .zig-content {
        order: 2;
        flex: unset;
        width: 100%;
    }
}


/* Site spacings Margin & Padding */
.m-0 {
    margin: 0;
}

.m-1 {
    margin: 8px;
}

.m-2 {
    margin: 16px;
}

.m-3 {
    margin: 24px;
}

.m-4 {
    margin: 32px;
}

.m-5 {
    margin: 40px;
}

.m-6 {
    margin: 48px;
}

.m-7 {
    margin: 56px;
}

.m-8 {
    margin: 64px;
}

.m-9 {
    margin: 72px;
}

.m-10 {
    margin: 80px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mt-5 {
    margin-top: 40px;
}

.mt-6 {
    margin-top: 48px;
}

.mt-7 {
    margin-top: 56px;
}

.mt-8 {
    margin-top: 64px;
}

.mt-9 {
    margin-top: 72px;
}

.mt-10 {
    margin-top: 80px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mb-5 {
    margin-bottom: 40px;
}

.mb-6 {
    margin-bottom: 48px;
}

.mb-7 {
    margin-bottom: 56px;
}

.mb-8 {
    margin-bottom: 64px;
}

.mb-9 {
    margin-bottom: 72px;
}

.mb-10 {
    margin-bottom: 80px;
}

.m-auto {
    margin: auto;
}

.mx-auto {
    margin-inline: auto;
}

.mx-0 {
    margin-inline: 0;
}

.mx-1 {
    margin-inline: 8px;
}

.mx-2 {
    margin-inline: 16px;
}

.mx-3 {
    margin-inline: 24px;
}

.mx-4 {
    margin-inline: 32px;
}

.mx-5 {
    margin-inline: 40px;
}

.mx-6 {
    margin-inline: 48px;
}

.mx-7 {
    margin-inline: 56px;
}

.mx-8 {
    margin-inline: 64px;
}

.mx-9 {
    margin-inline: 72px;
}

.mx-10 {
    margin-inline: 80px;
}

.my-0 {
    margin-block: 0;
}

.my-1 {
    margin-block: 8px;
}

.my-2 {
    margin-block: 16px;
}

.my-3 {
    margin-block: 24px;
}

.my-4 {
    margin-block: 32px;
}

.my-5 {
    margin-block: 40px;
}

.my-6 {
    margin-block: 48px;
}

.my-7 {
    margin-block: 56px;
}

.my-8 {
    margin-block: 64px;
}

.my-9 {
    margin-block: 72px;
}

.my-10 {
    margin-block: 80px;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 8px;
}

.p-2 {
    padding: 16px;
}

.p-3 {
    padding: 24px;
}

.p-4 {
    padding: 32px;
}

.p-5 {
    padding: 40px;
}

.p-6 {
    padding: 48px;
}

.p-7 {
    padding: 56px;
}

.p-8 {
    padding: 64px;
}

.p-9 {
    padding: 72px;
}

.p-10 {
    padding: 80px;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 8px;
}

.pt-2 {
    padding-top: 16px;
}

.pt-3 {
    padding-top: 24px;
}

.pt-4 {
    padding-top: 32px;
}

.pt-5 {
    padding-top: 40px;
}

.pt-6 {
    padding-top: 48px;
}

.pt-7 {
    padding-top: 56px;
}

.pt-8 {
    padding-top: 64px;
}

.pt-9 {
    padding-top: 72px;
}

.pt-10 {
    padding-top: 80px;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 8px;
}

.pb-2 {
    padding-bottom: 16px;
}

.pb-3 {
    padding-bottom: 24px;
}

.pb-4 {
    padding-bottom: 32px;
}

.pb-5 {
    padding-bottom: 40px;
}

.pb-6 {
    padding-bottom: 48px;
}

.pb-7 {
    padding-bottom: 56px;
}

.pb-8 {
    padding-bottom: 64px;
}

.pb-9 {
    padding-bottom: 72px;
}

.pb-10 {
    padding-bottom: 80px;
}

.px-0 {
    padding-inline: 0;
}

.px-1 {
    padding-inline: 8px;
}

.px-2 {
    padding-inline: 16px;
}

.px-3 {
    padding-inline: 24px;
}

.px-4 {
    padding-inline: 32px;
}

.px-5 {
    padding-inline: 40px;
}

.px-6 {
    padding-inline: 48px;
}

.px-7 {
    padding-inline: 56px;
}

.px-8 {
    padding-inline: 64px;
}

.px-9 {
    padding-inline: 72px;
}

.px-10 {
    padding-inline: 80px;
}

.py-0 {
    padding-block: 0;
}

.py-1 {
    padding-block: 8px;
}

.py-2 {
    padding-block: 16px;
}

.py-3 {
    padding-block: 24px;
}

.py-4 {
    padding-block: 32px;
}

.py-5 {
    padding-block: 40px;
}

.py-6 {
    padding-block: 48px;
}

.py-7 {
    padding-block: 56px;
}

.py-8 {
    padding-block: 64px;
}

.py-9 {
    padding-block: 72px;
}

.py-10 {
    padding-block: 80px;
}

@media(max-width:767px) {
    .m-m-0 {
        margin: 0;
    }

    .m-m-1 {
        margin: 8px;
    }

    .m-m-2 {
        margin: 16px;
    }

    .m-m-3 {
        margin: 24px;
    }

    .m-m-4 {
        margin: 32px;
    }

    .m-m-5 {
        margin: 40px;
    }

    .mt-m-0 {
        margin-top: 0;
    }

    .mt-m-1 {
        margin-top: 8px;
    }

    .mt-m-2 {
        margin-top: 16px;
    }

    .mt-m-3 {
        margin-top: 24px;
    }

    .mt-m-4 {
        margin-top: 32px;
    }

    .mt-m-5 {
        margin-top: 40px;
    }

    .mb-m-0 {
        margin-bottom: 0;
    }

    .mb-m-1 {
        margin-bottom: 8px;
    }

    .mb-m-2 {
        margin-bottom: 16px;
    }

    .mb-m-3 {
        margin-bottom: 24px;
    }

    .mb-m-4 {
        margin-bottom: 32px;
    }

    .mb-m-5 {
        margin-bottom: 40px;
    }

    .mx-m-0 {
        margin-inline: 0;
    }

    .mx-m-1 {
        margin-inline: 8px;
    }

    .mx-m-2 {
        margin-inline: 16px;
    }

    .mx-m-3 {
        margin-inline: 24px;
    }

    .mx-m-4 {
        margin-inline: 32px;
    }

    .mx-m-5 {
        margin-inline: 40px;
    }

    .my-m-0 {
        margin-block: 0;
    }

    .my-m-1 {
        margin-block: 8px;
    }

    .my-m-2 {
        margin-block: 16px;
    }

    .my-m-3 {
        margin-block: 24px;
    }

    .my-m-4 {
        margin-block: 32px;
    }

    .my-m-5 {
        margin-block: 40px;
    }

    .p-m-0 {
        padding: 0;
    }

    .p-m-1 {
        padding: 8px;
    }

    .p-m-2 {
        padding: 16px;
    }

    .p-m-3 {
        padding: 24px;
    }

    .p-m-4 {
        padding: 32px;
    }

    .p-m-5 {
        padding: 40px;
    }

    .pt-m-0 {
        padding-top: 0;
    }

    .pt-m-1 {
        padding-top: 8px;
    }

    .pt-m-2 {
        padding-top: 16px;
    }

    .pt-m-3 {
        padding-top: 24px;
    }

    .pt-m-4 {
        padding-top: 32px;
    }

    .pt-m-5 {
        padding-top: 40px;
    }

    .pb-m-0 {
        padding-bottom: 0;
    }

    .pb-m-1 {
        padding-bottom: 8px;
    }

    .pb-m-2 {
        padding-bottom: 16px;
    }

    .pb-m-3 {
        padding-bottom: 24px;
    }

    .pb-m-4 {
        padding-bottom: 32px;
    }

    .pb-m-5 {
        padding-bottom: 40px;
    }

    .px-m-0 {
        padding-inline: 0;
    }

    .px-m-1 {
        padding-inline: 8px;
    }

    .px-m-2 {
        padding-inline: 16px;
    }

    .px-m-3 {
        padding-inline: 24px;
    }

    .px-m-4 {
        padding-inline: 32px;
    }

    .px-m-5 {
        padding-inline: 40px;
    }

    .py-m-0 {
        padding-block: 0;
    }

    .py-m-1 {
        padding-block: 8px;
    }

    .py-m-2 {
        padding-block: 16px;
    }

    .py-m-3 {
        padding-block: 24px;
    }

    .py-m-4 {
        padding-block: 32px;
    }

    .py-m-5 {
        padding-block: 40px;
    }
}

/* Site spacings Margin & Padding */

/* Site borders and radius */
.border-0 {
    border: 0;
}

.border-1 {
    border: 1px solid var(--site-border);
}

.border-2 {
    border: 2px solid var(--site-border);
}

.radius-0 {
    border-radius: 0;
}

.radius-0-5 {
    border-radius: var(--space-0-5);
}

.radius-1 {
    border-radius: var(--space-1);
}

.radius-2 {
    border-radius: var(--space-2);
}

.radius-3 {
    border-radius: var(--space-3);
}

.radius-4 {
    border-radius: var(--space-4);
}

.radius-5 {
    border-radius: var(--space-5);
}

.radius-6 {
    border-radius: var(--space-6);
}

.radius-7 {
    border-radius: var(--space-7);
}

.radius-8 {
    border-radius: var(--space-8);
}

.radius-9 {
    border-radius: var(--space-9);
}

.radius-10 {
    border-radius: var(--space-10);
}

.radius-11 {
    border-radius: var(--space-11);
}

.radius-12 {
    border-radius: var(--space-12);
}

@media(max-width:767px) {
    .radius-m-0 {
        border-radius: 0;
    }

    .radius-m-0-5 {
        border-radius: var(--space-0-5);
    }

    .radius-m-1 {
        border-radius: var(--space-1);
    }

    .radius-m-2 {
        border-radius: var(--space-2);
    }

    .radius-m-3 {
        border-radius: var(--space-3);
    }

    .radius-m-4 {
        border-radius: var(--space-4);
    }

    .radius-m-5 {
        border-radius: var(--space-5);
    }

    .radius-m-6 {
        border-radius: var(--space-6);
    }

    .radius-m-7 {
        border-radius: var(--space-7);
    }

    .radius-m-8 {
        border-radius: var(--space-8);
    }

    .radius-m-9 {
        border-radius: var(--space-9);
    }

    .radius-m-10 {
        border-radius: var(--space-10);
    }

    .radius-m-11 {
        border-radius: var(--space-11);
    }

    .radius-m-12 {
        border-radius: var(--space-12);
    }
}

/* Site borders and radius */


/* Site Colors */
.bg-primary {
    background: var(--primary-color);
    color: var(--white-color);
}

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

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

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

.bg-primary .subtitle-text {
    color: var(--white-color);
    font-weight: 400;
}

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

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

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

.bg-f-white {
    background: #FFFFFF;
}

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

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

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

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



/* ================== CSS Re-usable STYLE ================== */
.site-common-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* .site-common-content .subtitle-text{margin-bottom: -15px;} */
.site-list {
    display: flex;
    flex-direction: column;
    list-style-type: disc;
    font-size: 22px;
    padding-left: 20px;
}

.num-list {
    display: flex;
    gap: 24px;
    flex-direction: column;
    list-style-type: decimal;
    font-size: 22px;
    padding-left: 20px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-list li {
    background: url(../images/white-check-mark.svg) no-repeat;
    background-position: 8px center;
    padding-left: 40px;
}

.site-common-content .site-list {
    margin-top: -10px;
}

.site-btn,
.site-btn-outline,
.site-btn-white {
    font-size: var(--text-base);
    font-weight: 500;
    padding: 16px 36px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: var(--font-main);
    width: max-content;
    transition: all 0.2s ease-in;
    height: 52px;
    line-height: 1px;
}

.site-btn-white {
    background: var(--white-color);
    color: var(--primary-color);
}

.site-btn {
    background: var(--primary-color);
    color: var(--white-color);

}

.site-btn-outline {
    background: transparent;
    color: var(--primary-color);
}

.site-btn:hover,
.site-btn-white:hover {
    background: var(--seconday-color);
    color: var(--primary-color);
}

.tab-btn {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: var(--font-main);
    transition: all 0.3s ease-in;
    max-width: 240px;
    width: 100%;
    text-transform: uppercase;
    border: 3px solid transparent;
    font-weight: 500;
    height: 52px;
    background: #F6F0E6;
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.tab-btn:not(.active):hover {
    border: 3px solid var(--primary-color);
}

/* .site-btn-outline {
     font-size: 16px;
     padding: 16px 24px;
     border: 1px solid var(--primary-color);
     border-radius: var(--space-1);
     transition: all 0.3s ease-in;
     cursor: pointer;
     font-weight: 500;
     color: var(--primary-color);
     text-transform: uppercase;
     transition: all 0.4s ease-in;
 } */

.site-btn-outline:not(.active):hover {
    background: var(--primary-color);
    color: var(--white-color);
}


.site-big-cta {
    font-size: 18px;
    padding: 20px 40px;
    border-radius: var(--site-gutters);
    transition: all .4s;
    display: inline-block;
    margin-top: 30px;
    cursor: pointer;
    font-weight: 500
}

.text-center {
    text-align: center;
}

.text-center-desk {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}


.site-card-wrap {
    display: flex;
    gap: 16px;
}

.site-card {
    border-radius: 8px;
    padding: 12px;
    flex: 1;
    position: relative;
}

.site-card .site-common-content {
    gap: 12px;
}

.site-card .site-common-content h3 {
    margin-bottom: -5px;
    line-height: 1.2;
}

.site-card .card-img {
    border-radius: 8px;
    width: 100%;
}

.site-card .card-btn {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--purple-dark-color);
    color: var(--purple-dark-color);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--heading-font);
    display: inline-flex;
    align-self: flex-start;
    position: absolute;
    bottom: 12px;
    left: 12px;
}

.site-card:has(.card-btn) {
    padding-bottom: 100px;
}

.site-btn-text {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--purple-dark-color);
    color: var(--purple-dark-color);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--heading-font);
    display: inline-flex;
    align-self: flex-start;
}

.site-tag {
    display: inline-flex;
    border: 1px solid var(--primary-color);
    border-radius: 100vmax;
    padding: 6px 24px;
    align-self: flex-start;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--heading-font);
    color: var(--primary-color);
}

.text-center .site-tag,
.text-center .site-btn {
    align-self: center;
}

/* Common CTA section Style */
.site-cta-section {
    background: var(--white-color);
    background: linear-gradient(180deg, var(--white-color) 0%, rgba(220, 229, 247, 1) 100%);
}

.site-cta-section h2 {
    font-size: 56px;
    font-weight: 400;
    color: var(--purple-dark-color);
    line-height: 1.1;
}

.site-cta-section p {
    color: var(--purple-dark-color);
}

.cta-wrap {
    display: flex;
    align-items: center;
}

/* Common CTA section Style */

/* Video player style */
.custom-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.custom-video-wrapper video {
    width: 100%;
    display: block;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    overflow: hidden;
}

.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    cursor: pointer;
    z-index: 5;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Video player style */

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 30px; */
    gap: 8px;
}

.page-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: white;
    border: 1px solid #D4B483;
    font-size: var(--text-base);
    cursor: pointer;
    color: #262626;
    transition: all 0.2s ease-in;
}

.pagination .page-number i {
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
}

.page-number.active {
    border-color: var(--primary-color);
}

.page-number:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--white-color);
    background: var(--primary-color);
}

.icon {
    font-size: 22px;
    line-height: 1;
}

/* Pagination */

/* UTILS */
.for-mobile {
    display: none;
}

.subtitle-text {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-group a {
    height: 52px;
}

.site-btn-outline.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.ft-primary {
    font-family: var(--font-main) !important;
}

.ft-wt-500 {
    font-weight: 500 !important;
}

.ft-wt-600 {
    font-weight: 600 !important;
}

.ft-wt-700 {
    font-weight: 700 !important;
}

.l-ht-1 {
    line-height: 1;
}

.up-case {
    text-transform: uppercase;
}

.tab-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.w-100 {
    width: 100%;
}

/* ================== Header Style ================== */
.header-bar {
    /* position: sticky;
     top: 0;
     left: 0;
     z-index: 9;
     width: 100%; */
    background: var(--body-bg-color);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    height: var(--header-height);
}

.logo-link {
    display: flex;
    align-items: center;
}

.main-hero .flex-col {
    max-width: 500px;
    text-align: left;
}

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

.navbar .menu,
.user-int-bar {
    display: flex;
    align-items: center;
}

.user-int-bar a {
    color: var(--primary-color);
}

.navbar .menu a,
.footer-navbar a {
    color: var(--site-color);
    font-size: var(--menu-text);
    font-family: var(--section-heading-font);
    font-weight: 400;
    transition: all 0.3s ease-in;
}

.navbar .menu a,
.footer-navbar a {
    position: relative;
    padding-bottom: 2px;
}

.user-int-bar a {
    transform: translateY(0);
}

.navbar .menu a:hover,
.user-int-bar a:hover,
.footer-navbar a:hover {
    color: var(--primary-color);
}

.navbar .menu a::before,
.footer-navbar a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in;
}

.navbar .menu a:hover::before,
.footer-navbar a:hover::before {
    width: 100%;
}

.cart-wrapper {
    position: relative;
}

.cart-wrapper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--black-color);
    color: var(--white-color);
    border-radius: 100vmax;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    font-family: var(--font-main);
}

.user-int-bar a {
    font-size: 22px;
}

.navbar .menu,
.navbar {
    gap: 40px;
}

.user-int-bar {
    gap: 20px;
}

.search-wrapper {
    position: relative;
}

.search-wrapper {
    & {
        input[type="search"] {
            padding: 8px;
            background: transparent;
            border-bottom: 1px solid var(--primary-color);
            width: 0%;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease-in;
            position: absolute;
            top: 0;
            right: 0;
            transform: translateY(-50%);
        }

        input[type="search"].active {
            width: 200px;
            opacity: 1;
            visibility: visible;
            background: var(--body-bg-color);
        }

        input[type="submit"] {
            padding: 8px;
            background: url(../images/search-line.svg) no-repeat;
            background-size: 20px;
            background-position: center center;
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            right: 2px;
            transform: translate(-50%, -50%);
            cursor: pointer;
        }

        input[type="search"]::-webkit-search-cancel-button {
            -webkit-appearance: none;
            display: none;
        }

        .input[type="search"],
        input[type="search"]::placeholder {
            color: var(--primary-color);
            font-family: var(--font-main);
            font-size: var(--text-base);
        }

    }
}

.dropdown-wrapper {
    position: relative;
    display: inline-block;
    padding-block: 8px;
    z-index: 9;
}

.dropdown-menu,
.knob-icon {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in;
}

.dropdown-wrapper:hover .dropdown-menu,
.dropdown-wrapper:hover .knob-icon {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu {
    top: 54px;
    width: max-content;
    padding: 24px 16px;
    border-radius: 8px;
    background: white;
    /* left: 50%;
        transform: translateX(-50%); */
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
}

.knob-icon {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 48px;
    color: white;
    z-index: -1;
}

.dropdown-link {
    padding-block: 8px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-section {
    position: relative;
    height: 660px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 60px;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 500;
}

.hero-content {
    max-width: 772px;
    width: 100%;
}


/* ================== Header Style ================== */


/* ================== Hero Style ================== */

/* SWIPER */
.trusted-section {
    & {
        .swiper {
            width: 100%;
            height: 100%;
        }
    }
}

.cat-section .cat-card .cat-box {
    height: 350px;
    overflow: hidden;
}

.cat-section .cat-card img,
.about-img img {
    scale: 1;
    transition: all 0.3s;
}

.cat-section .cat-card:hover img,
.about-img:hover img {
    scale: 1.03;
}

.cat-card {
    color: var(--black-color);
}

.cat-section .grid {
    row-gap: 40px;
    column-gap: 24px;
}

.about-img {
    height: 600px;
    overflow: hidden;
}

.vision-section {
    padding-block: 32px;
}

.vision-card {
    border-radius: 16px;
    max-width: 342px;
    width: 100%;
}

.partner-card {
    align-items: flex-start;
}

.pallet-section .grid {
    column-gap: 24px;
    row-gap: 40px;
}

.design-section .grid {
    gap: 110px;
}

/* Accordian style */
.interior-accordian {
    padding: var(--site-gutters-2);
    background: var(--black-color);
    color: var(--white-color);
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.interior-accordian h2 {
    font-size: var(--site-title-h3);
    font-weight: 500;
    margin-bottom: calc(var(--site-gutters-2) + var(--site-gutters));
}

.ia-left {
    width: 60%;
    padding-inline: calc(var(--container-space) - var(--site-gutters-2));
}

.ia-right {
    width: 40%;
    text-align: right;
    height: 100%;
}

.ia-right img {
    width: 100%;
    filter: grayscale(1);
    transition: filter 2s ease;
    height: 100%;
    object-fit: cover;
}

.ia-right img:hover {
    filter: grayscale(0);
}

.accordion {
    overflow: hidden;
    display: none;
}

.accordion.active {
    display: block;
}

.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--heading-font);
    font-size: var(--site-title-h3);
    padding: 16px;
    border-radius: 4px;
    background: var(--seconday-color);
    font-weight: 500;
}

.accordion-item {
    border-radius: 8px;
    padding-bottom: var(--site-gutters);
}

.accordion-item+.accordion-item {
    margin-top: 8px;
}

.accordion-content {
    display: none;
    font-size: var(--text-base);
    letter-spacing: -0.5px;
    padding: 10px 16px;
}

.arrow {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.arrow img {
    width: 12px;
}

.accordion-header.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.accordion-header.active .arrow {
    transform: rotate(90deg);
}

.btn-group.faq-btns {
    flex-wrap: wrap;
}

.faq-btns a {
    border-radius: 100vmax;
    padding: 4px 24px;
    white-space: nowrap;
}

.faq-btns a.active {
    background: var(--purple-dark-color);
    color: var(--white-color);
}

.faq-icon {
    font-size: 16px;
    width: 30px;
    height: 30px;
    position: relative;
    font-weight: 500;
}

.faq-icon i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .4s;
}

.accordion-header.active .faq-icon i.ri-add-line {
    opacity: 0;
}


.faq-section .flex-row {
    gap: 116px;
}

.cta-section .site-container {
    max-width: 600px;
}

.footer-section {
    padding-top: 40px;
    padding-bottom: 16px;
    border-top: 1px solid #C29A69;
}

.section-divider {
    border-top: 1px solid #C29A69;
    padding-top: 8px;
}

.copyright-section a {
    color: var(--site-color);
}

.copyright-section a:hover {
    text-decoration: underline;
}

.site-hero {
    background: #F4EAE3;
}

/* ABOUT */
.about-hero {
    position: relative;
    height: 350px;
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-hero .about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
    z-index: -1;
}

.about-section-2 .about-img {
    height: 352px;
}

.xl-bar-section {
    text-align: center;
    background: #C29A69;
    color: var(--white-color);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xl-bar-section h3 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 21%;
    text-transform: uppercase;
}

.xl-bar-section h3 strong {
    font-weight: 800;
}

.industry-section .about-img {
    height: 414px;
}

.service-left-col {
    width: 400px;
}

.service-card .service-img {
    height: 300px;
    overflow: hidden;
}

.service-card .service-img img {
    scale: 1;
    transition: all 0.3s ease-in;
}

.service-card:hover .service-img img {
    scale: 1.03;
}

.certificate {
    width: 200px;
    height: auto;
}

.site-hero .flex-col {
    max-width: 773px;
    width: 100%;
}

.blog-hero {
    background: initial;
}

.blog-hero .flex-col {
    max-width: 900px;
    width: 100%;
}

.transportation-section .vehicle-img {
    overflow: hidden;
    height: 230px;
}

.vehicle-img>img {
    scale: 1;
    transition: all 0.4s ease-in;
}

.vehicle-img:hover>img {
    scale: 1.03;
}

.vehicle-img.used-pallet {
    height: 378px;
}

.intro-content {
    max-width: 1004px;
    width: 100%;
    margin-inline: auto;
}

.pallet-card .pallet-img {
    overflow: hidden;
    height: 252px;
}

.pallet-card .pallet-img img {
    scale: 1;
    transition: scale 0.4s ease-in;
}

.pallet-card:hover .pallet-img img {
    scale: 1.03;
}

.products-listing-section .grid {
    row-gap: 40px;
    column-gap: 24px;
}

.key-bullet,
.key-bullet li {
    display: flex;
    gap: 8px;
}

.key-bullet  {
    flex-direction: column;
    align-items: initial;
}

.key-bullet li {
    align-items: flex-start;
}

.key-bullet li img {
    margin-top: 8px;
}



.pallet-main-img {
    overflow: hidden;
}

.sol-card.sol-card-img,
.plastic-pallet-img {
    overflow: hidden;
}

.sol-card.sol-card-img img,
.plastic-pallet-img img {
    scale: 1;
    transition: all 0.3s ease-in;
}

.sol-card.sol-card-img:hover img,
.plastic-pallet-img:hover img {
    scale: 1.03;
}

.plastic-pallet-grid .key-bullet {
    gap: 40px;
}

.plastic-pallet-grid .key-bullet li {
    align-items: flex-start;
    gap: 16px;
}

.plastic-pallet-grid .key-bullet li img {
    margin-top: 8px;
}

.kayu-section .about-img {
    height: 370px;
}

.size-bar {
    padding: 40px;
    border-radius: 24px;
}

.material-info {
    position: relative;
}

.material-info h3 {
    font-size: 28px;
}

.num,
.num-2 {
    position: absolute;
    font-size: 200px;
    top: 28px;
    line-height: 1;
    font-weight: 900;
    color: #C29A69;
    opacity: 0.1;
}

.num {
    right: 0;
}

.num-2 {
    right: -86px;
}

.about-img.plywood-img {
    height: 530px;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    & {

        input[type="text"],
        input[type="email"],
        textarea,
        select {
            display: block;
            width: 100% !important;
           border-radius: 8px;
            height: var(--inpt-field-ht);
            padding: 12px 16px;
            font-family: var(--font-main);
            color: var(--black-color);
            font-size: var(--text-base);
            outline: none;
            border: none;
        }

        .form-row {
            width: 100%;
            display: flex;
            gap: 8px;
        }

        select {
            appearance: none;
            background-image: url(../images/select-down-icon.svg);
            background-size: 12px;
            background-repeat: no-repeat;
            background-position: right 16px center;
            cursor: pointer;
            border: none;
        }

        textarea {
            height: 124px;
        }

        input::placeholder,
        textarea::placeholder,
        select option {
            font-family: var(--font-main);
            color: var(--black-color);
            font-size: var(--text-base);
        }

        input[type="checkbox"] {
            appearance: none;
            width: 24px;
            height: 24px;
            border: 1px solid #B0AE8D;
            background: transparent;
            border-radius: 1px;
            position: relative;
            transition: all 0.3s ease;
        }

        input[type="checkbox"]:checked {
            background-color: var(--primary-color);
            border: 2px solid var(--primary-color)
        }

        input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            width: 4px;
            height: 9px;
            border: solid var(--white-color);
            border-width: 0 2px 2px 0;
        }

        input[type="submit"] {
            width: 100%;
            margin-top: 16px;
            background: var(--black-color);
            border: 2px solid transparent;
            transition: all 0.3s ease-in;            
        }

         input[type="submit"]:hover {
            background: transparent;
            border: 2px solid var(--white-color);
            color: white;

         }
    }
}

.contact-form-section {
    position: relative;
}

.contact-form-section .form-bg {
    background: var(--brand-color-2);
    border-radius: 16px;
    padding: 24px;
}

.ht-hero{
    padding-top: 160px;
    height: 900px !important;
    justify-content: center;
    padding-bottom: initial;
}

.ht-hero .about-img {
height: 532px;
}

.e-icon {
    width: 20px;
    height: 20px;
}

.map iframe {
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    border: none;
}

.tag {
    border: 1px solid var(--primary-color);
    width: 160px;    
    height: 34px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: var(--primary-color);
}

.trusted-slider .text-main {
    text-wrap: nowrap;
}

.footer-navbar {
    flex-wrap: wrap;
}

.footer-section>.site-container {
    position: relative;
}

.menu-icn {
    font-size: 24px;
}

.quality-row {
    max-width: 942px;
    width: 100%;
    margin-inline: auto;
}


