@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


:root {
    /* ===== Colors ===== */
    --body-bg-color: #FFF9F4;
    --primary-color: #505F2D;
    --seconday-color: #B0AE8D;
    --bg-smokey-dark: #EBE9D5;
    --bg-smokey-light: #ECE9D5;


    --black-color: #181818;
    --white-color: #FFF9F4;

    --primary-light-color: #EEECF5;
    --secondary-light-color: #FEF2F3;

    --gray-light-color: #D1D5DB;
    --lighter-gray-color: #F8FAFC;
    --lighter-color: #FAFAFA;

    --green-color: #B0E1BC;
    --green-dark-color: #09543D;

    --purple-color: #D8C4FB;
    --purple-dark-color: #3D285F;

    --orange-color: #FFE0CA;
    --orange-dark-color: #B84C1A;

    --pink-color: #FFDDE8;
    --pink-dark-color: #AA4C78;

    --blue-color: #DCE5F7;
    --blue-dark-color: #406C9D;

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

    /* ===== Typography ===== */
    --font-main: "Manrope", sans-serif;
    --heading-font: "Manrope", sans-serif;

    --h1: 70px;
    --h2: 48px;
    --h3: 32px;
    --h4: 20px;

    --text-base: 18px;
    --text-small: 14px;
    --menu-text: 20px;
    --site-img-rad: 24px;

    --line-height: 1.5;
    --letter-spacing: -0.5px;

    /* ===== 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: 100px;

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

    --site-container: 1200px;
    --site-container-fluid: 1200px;
    --site-line-height: 1.5;

    /* ========================= 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);
    letter-spacing: normal;
    color: var(--black-color);
    width: 100%;
    overflow-x: hidden;
    font-weight: 500;
}

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

img {
    max-width: 100%;
}

.site-container {
    width: 100%;
    max-width: var(--site-container);
    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);
}

ul {
    list-style-type: none;
}

.site-divider {
    margin-block: var(--site-gutters);
    width: 100%;
    height: 1px;
}

.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,
.contact-img img {
    height: 100% !important;
}

.contact-img {
    height: 630px;
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    text-transform: capitalize;
    font-weight: 500;
}

.site-title-h1 {
    font-size: var(--h1);
    line-height: 1.06;
    letter-spacing: -5%;
}

.site-title-h2 {
    font-size: var(--h2);
    line-height: 1.1;
    letter-spacing: -2%;
    font-weight: 600;
}

.site-title-h3 {
    font-family: var(--font-main);
    font-size: var(--h3);
    line-height: 1.3;
}

.site-title-h4 {
    font-size: var(--h4);
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--font-main);
}

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

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

/* Typography */
.site-title-h2 span {
    font-weight: 700 !important;
}

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

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

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

/* .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 !important;
    }

    .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;
    }
}

@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;} */
.wh-fluid {
    width: 100%;
    height: 100%;
}

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

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

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

.flex-row-reverse {
    display: flex;
    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;
}

.gap-20 {
    gap: 20px;
}

.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);
}

.bg-secondary {
    background: #B0AE8D;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-none {
    background: transparent;
}

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

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

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

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

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



/* ================== CSS Re-usable STYLE ================== */
.img-rad {
    border-radius: 24px;
    overflow: hidden;
}

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

.site-common-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

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

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

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

.site-btn {
    background: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 100vmax;
    transition: all .4s;
    cursor: pointer;
    color: var(--black-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: var(--font-main);
    transition: all 0.4s ease-in;
    border: 2px solid var(--white-color);
    width: max-content;
    height: 56px;
}

.pill-green {
    background: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

.site-btn:hover {
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
}

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

.hero-cta {
    max-width: 485px;
    width: 100%;
    margin-left: auto;
}

.tab-btn {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 100vmax;
    transition: all .4s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-main);
    transition: all 0.3s ease-in;
    border: 3px solid transparent;
}

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

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

.site-btn-outline {
    display: inline-flex;
    font-size: 16px;
    padding-bottom: 8px;
    color: var(--black-color);
    transition: all 0.4s;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 2px solid var(--black-color);
    /* text-transform: uppercase; */
    transition: all 0.3s ease-in;
    width: max-content;
    margin-top: 16px;
}

.site-btn-outline:hover {
    border-bottom: 2px solid var(--primary-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
}

/* 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 #CBD5E1;
    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;
}

.page-number.active {
    border-color: #262626;
}

.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 {
    font-size: 20px;
    font-weight: 400;
}

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

.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-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: 4px;
}

.w-100 {
    width: 100%;
}

/* ================== Header Style ================== */
.main-hero {
    position: relative;
    color: var(--white-color);
    padding-top: 200px;
    padding-bottom: 60px;
}

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

header {
    position: absolute;
    top: 20px;
    z-index: 2;
    max-width: var(--site-container);
    width: 100%;
    ;
    left: 50%;
    transform: translateX(-50%);
    padding-inline: var(--space-2);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    align-items: center;
    height: 82px;
    border-radius: 100vmax;
}

.header-wrap,
.header-logo {
    height: 100px;
}

.header-logo img {
    height: 100%;
}

.navbar .menu {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 36px;
}

.navbar .menu a {
    color: var(--white-color);
    font-size: var(--menu-text);
    font-weight: 700;
    transition: all 0.3s ease-in;
}

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

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

.navbar .menu a {
    position: relative;
}

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

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


/* ================== Subs-Section ================== */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.intro-card .hover-img {
    margin-bottom: 16px;
}

.intro-card:nth-child(even) {
    margin-top: 40%;
}

.intro-snap {
    height: 350px;
}

.contact-section .bg-f-white {
    padding-block: 64px;
    padding-inline: 16px;
    border-radius: 8px;
}

.contact-form form {

    & {

        p {
            width: 100%;
        }

        br {
            display: none;
        }

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

        textarea {
            height: 124px;
        }

        input::placeholder,
        textarea::placeholder,
        input[type="tel"]::placeholder,
        select::placeholder {
            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(--primary-color);
            color: var(--white-color);
            border-color: var(--primary-color);
        }

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

.contact-form form,
.contact-form select {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.intro-card .site-title-h4 {
    font-weight: 600 !important;
}

.mid-hero-section {
    position: relative;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    margin-inline: 8px;
    padding-block: 60px;
}

.mid-hero-section .site-title-h2 {
    font-weight: 500;
}

.mid-hero-snap {
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.mh-title {
    max-width: 654px;
    width: 100%;
}

.crop-section img {
    border-radius: var(--site-img-rad);
    height: 500px;
}

.crop-snap {
    margin-bottom: 8px;
}

.crop-swiper .swiper-wrapper {
    padding-bottom: 60px;
}

.primary-pagination .swiper-pagination-bullet-active {
    background: #505F2D;
}

.primary-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
}

.mission-section {
    position: relative;
}

.mission-section .mv-snap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.mv-wrapper {
    width: 600px;
    margin-right: initial !important;
}

.mv-wrapper .swiper-slide {
    position: relative;
}

.mv-wrapper .mv-content {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--black-color);
    max-width: 300px;
    width: 100%;
}

.mv-wrapper .mv-content p {
    font-size: 16px;
}

.mv-swiper-col {
    max-width: 70%;
    width: 100%;
    margin-left: auto;
}

.custm-sb-cont {
    position: relative;
}

.custm-sb {
    position: initial !important;
    margin-top: initial !important;
    width: 56px !important;
    height: 56px !important;
    background: var(--white-color);
    color: var(--black-color);
}

.custm-sb i {
    color: var(--black-color);
    font-size: 24px;
}

.swiper-btn-wrapper {
    align-items: flex-end;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.serve-col {
    gap: 12px;
}

.serve-col .flex-col+.flex-col {
    border-top: 1px solid rgba(80, 95, 45, 0.514);
    padding-top: 16px;
    margin-top: 16px;
}

.serve-img {
    height: 700px;
}

.s-content p {
    max-width: 444px;
    width: 100%;
}

.pos-rel {
    position: relative;
}

.site-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}

.counter-section {
    height: 776px;
    padding-block: 50px;
}



.counter-card {
    padding: 24px;
    border-radius: 20px;
}

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

.counter {
    font-size: 48px;
}

.social-wrapper {
    gap: 20px;
}

footer .flex-row {
    padding-block: 10px;
}

.counter-card .site-btn {
    margin-top: 4px;
}

.menu-icn {
    color: var(--white-color);
    display: none;
}

.mv-swiper-col .swiper-slide {
    height: 496px;
}

.hyper-link:hover {
    text-decoration: underline;
    color: var(--black-color);
}

.site-hero {
    position: relative;
    height: 500px;
    color: var(--white-color);
    padding-top: 32px;
    padding-bottom: 100px;
}

.site-intro-section {
    max-width: 1038px;
    width: 100%;
    margin-inline: auto;
}

.mop-snap {
    height: 500px;
}

.cta-section {
    height: 570px;
}

.cta-section .site-container {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
}

.crop-snap {
    height: 394px;
}

.social-link a,
.social-link p {
    position: relative;
    color: var(--black-color);
    font-size: 16px;
    transition: all 0.4s ease-in;
}

.social-link a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    height: 2px;
    width: 0%;
    transition: all 0.2s ease-in;
}

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

.social-link a:hover:before {
    width: 100%;
}

.address-wrapper {
    max-width: 940px;
    margin-inline: auto;
    width: 100%;
    gap: 40px;
}

.social-link h3 {
    font-size: 22px;
}

.tab-pallet {
    display: none;
}

.tab-pallet.active {
    display: block;
}

.popup-outer-layer {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9;
}

.popup-outer-layer.active {
    opacity: 1;
    visibility: visible;
}

.popup-outer-layer .contact-form {
    max-width: 650px;
    margin-inline: auto;
    background: var(--black-color);
    padding: 16px;
    border-radius: 8px;
    position: relative;
}

.popup-outer-layer .cross-icn {
    position: absolute;
    top: -16px;
    right: -8px;
    font-size: 24px;
    cursor: pointer;
}

.popup-outer-layer .contact-form {
    & {

        input[type="text"],
        input[type="tel"],
        input[type="email"],
        textarea {
            border-radius: 4px;
        }

        .site-btn:hover {
            background: transparent;
            border-color: var(--white-color);
            color: var(--white-color);
        }
    }
}


.form-row,
.form-row>p {
    display: flex;
    gap: 16px;
}

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

.form-row p,
.wpcf7-form-control-wrap {
    width: 100%;
}



.form-section .site-container {
    max-width: 650px !important;
}

.wpcf7-list-item {
    margin: initial !important;
}

.accept-row label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    /* space for icon */
}

.select-wrapper::after {
    content: "\ea4e";
    /* Remixicon down arrow */
    font-family: 'remixicon';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 18px;
}

.form-card {
    background: white;
    padding: 16px;
    border-radius: 16px;
}

.contact-form .body-text {
    margin-bottom: 8px;
}

.wpcf7-response-output {
    width: 100%;
    margin-inline: initial !important;
}

.intro-section-2 .site-container {
    max-width: 730px;
}

.product-snap {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.product-snap img {
    height: 350px;
    width: auto;
}

.product-section h3 {
    margin-top: 8px;
    text-align: center;
}

.product-section .grid {
    row-gap: 48px;
    column-gap: 16px;
}

.site-btn.green-btn {
    background: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

.site-btn.green-btn:hover {
    background: transparent;
    color: var(--white-color);
    border: 2px solid white;
}

.product-snap {
    position: relative;
}

.pro-tag {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    font-size: 20px;
    align-items: center;
    max-width: 100%;
    border-top-right-radius: 6px;
    color: #fff;
    padding-inline: 16px;
    font-weight: 600;
}

.pro-tag.fungicide {
    background-color: #00a0df;
}

.pro-tag.bio-stim {
    background-color: var(--black-color);
}

.pro-tag.fertilizer {
    background-color: red;
}