/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
    text-decoration: none;
    list-style: none;
    font-family: "Inter", sans-serif;
    -webkit-tap-highlight-color: transparent !important;
}

:root {

    /* Typography Colors */
    --text_high: #1D1D1F;
    --text_mid: #424245;
    --text_low: #6E6E73;
    --text_dark_high: #F5F5F7;
    --text_dark_mid: #CCCDD7;
    --text_dark_low: #86868B;
    --text_white: #FFFFFF;
    --text_black: #000000;
    --custom-text-dark: #0A3934;
    --custom-para-dark: #414C4B;

    /* Section Background Colors */
    --primary_bg: #FFFFFF;
    --secondary_bg: #F5F5F7;
    --dark_primary_bg: #000000;
    --dark_secondary_bg: #1D1D1F;
    --dark_bg: #002013;

    /* Border Colors */
    --border_light: #D2D2D7;
    --border_dark: #424245;

    /* Brand Colors */
    /* --strong_high: #007343; */
    --strong_high: #1a6c63;
    /* --strong_mid: #00804A; */
    --strong_mid: #1A6C63;
    --strong_low: #198D5C;
    --light_high: #BFDFD2;
    --light_mid: #D9ECE4;
    --light_low: #F2F9F6;

    /* Status Colors */
    --success: #038153;
    --warning: #AD5918;
    --error: #CC3340;

}

html,
body {
    scroll-behavior: smooth !important;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 220px !important;
}

body {
    overflow-x: hidden;
}

body.post,
body.page {
    /* background-color: var(--secondary_bg); */
    margin: 0;
    padding: 0;
}

video {
    outline: none;
    border: none;
}

img:is([sizes="auto" i], [sizes^="auto," i]) {
    /* fallback if needed */
    width: 100%;
    height: auto;

    /* modern browsers */
    contain-intrinsic-size: 3000px 1500px;
}

/* Base: 1920: Container: 1704 as per Figma */
.container,
.container_small {
    width: 100%;
    margin: 0 auto;
}

.container {
    /* max-width: 1744px; */
    max-width: 1300px;
    padding: 0 20px;
}

.container_small {
    max-width: 1128px;
}

.common_space {
    padding: clamp(30px, 3.125vw, 60px) 0;
}

/* Default Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin: 0;
}

ul,
ul li ul,
ol,
ol li ol,
ul li ol,
p {
    margin: 0;
}


.display_large {
    font-size: clamp(38px, 3.75vw, 72px);
    line-height: 116%;
    letter-spacing: -0.04em;
    color: var(--text_high);
}

.display_medium {
    font-size: clamp(34px, 3.333vw, 64px);
    line-height: 118%;
    letter-spacing: -0.04em;
    color: var(--text_high);
}

.display_small {
    /* font-size: clamp(26px, 2.396vw, 46px); */
    font-size: clamp(30px, 3.021vw, 58px);
    line-height: 124%;
    letter-spacing: -0.04em;
    color: var(--text_high);
}

h2.display_small {
    font-size: clamp(26px, 2.396vw, 46px);
}

.header h2 span {
    color: var(--strong_high);
}

.heading_large {
    font-size: clamp(26px, 2.396vw, 46px);
    line-height: 122%;
    letter-spacing: -0.03em;
    color: var(--text_high);
}

.heading_medium {
    font-size: clamp(24px, 1.875vw, 36px);
    line-height: 133%;
    letter-spacing: -0.02em;
    color: var(--text_high);
}

.heading_small {
    font-size: clamp(22px, 1.458vw, 28px);
    line-height: 143%;
    letter-spacing: -0.01em;
    color: var(--text_high);
}

.title_large {
    font-size: clamp(20px, 1.146vw, 22px);
    line-height: 146%;
    color: var(--text_high);
}

.title_medium {
    font-size: clamp(18px, 1.042vw, 20px);
    line-height: 140%;
    color: var(--text_high);
}

.title_small {
    font-size: clamp(16px, 0.938vw, 18px);
    line-height: 155%;
    color: var(--text_high);
}

.label_small {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: var(--text_high);
    display: block;
}

.p_18 {
    font-size: clamp(16px, 0.938vw, 18px);
    font-weight: 400;
    line-height: 155%;
    color: var(--text_high);
}

p,
.p_16 {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--text_high);
}

.p_14 {
    font-size: clamp(12px, 0.729vw, 14px);
    font-weight: 400;
    line-height: 143%;
    color: var(--text_high);
}



/* Image Default */
img {
    max-width: 100%;
    height: auto;
}




/* Background Button */
/* a.theme_btn:visited,
.theme_btn:visited {
    color: var(--text_dark_high) !important;
} */

.transparent_btn,
.theme_btn {
    display: inline-block;
    padding: 12px clamp(28px, 1.667vw, 32px) 12px clamp(28px, 1.667vw, 32px);
    position: relative;
    border-radius: 50px;
    transition: all .3s ease-in-out;
    background-color: var(--strong_mid);
    color: var(--text_dark_high);
    cursor: pointer;
}

.transparent_btn {
    background-color: var(--secondary_bg);
    color: var(--strong_mid);
    border: 1px solid var(--strong_mid);
}

.theme_btn:hover {
    background-color: var(--strong_low);
}

.theme_btn.disabled {
    background-color: var(--secondary_bg);
    color: var(--text_low);
    cursor: not-allowed;
}


/* Icon Button */
.theme_btn.theme_icon {
    padding: 14px 56px 14px 32px;
}

.theme_btn.theme_icon::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url('../images/right_tirangle.svg');
    background-repeat: no-repeat;
    background-size: contain;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .2s ease-in-out;
}

.theme_btn.theme_icon:hover::after {
    right: 20px;
}

/* underline Button */
.link_btn,
.line_btn {
    display: inline-block;
    font-size: 16px;
    line-height: 150%;
    color: var(--text_high);
    position: relative;
    transition: all .3s ease-in-out;
}

.line_btn::after,
.line_btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: all .3s ease-in-out;
}

.line_btn::after {
    background-color: var(--border_light);
}

.line_btn::before {
    width: 0;
}

.line_btn:hover::before {
    background-color: var(--border_dark);
    z-index: 2;
    width: 100%;
}


/* Link Button */
.link_btn {
    color: var(--strong_mid);
}

.link_btn:hover {
    color: var(--text_high);
}

.center {
    display: flex;
    justify-self: center;
}

/* Form Elements Style */
textarea,
input {
    border-radius: 8px !important;
    border: 1px solid var(--border_light) !important;
    padding: 13px 16px !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 150% !important;
    color: var(--text_high) !important;
}

textarea:hover,
input:hover,
input:focus {
    border: 1px solid var(--border_dark);
}

textarea {
    resize: none;
}

input[type="radio"],
input[type="checkbox"]:checked {
    accent-color: var(--text_high);
}

select {
    appearance: none;
    background-image: url('../images/down_arrow.svg');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 24px;
    border-radius: 8px;
    border: 1px solid var(--border_light);
    padding: 13px 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--text_high);
}


/* Header Design Start */
header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background: var(--primary_bg);
    z-index: 999;
    padding: 0px;
    transition: all .4s ease-in-out;
}

header.scrolled {
    box-shadow: 0px 2px 16px 4px rgba(40, 44, 63, 0.07);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.8);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

header nav .menu ul li {
    display: inline-block;
}

header nav .menu ul li:not(:last-child) {
    margin-right: clamp(15px, 1.823vw, 35px);
    padding: 30px 0;
    transition: all .4s ease-in-out;
}

header nav .menu ul li:not(:last-child) a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

header nav .menu ul li:not(:last-child) a span {
    transition: all .4s ease-in-out;
}

header.scrolled nav .menu ul li:not(:last-child) {
    padding: 20px 0;
}

/* Remove Margin left */
/* header nav .menu ul li:last-child {
    margin-left: clamp(20px, 2.344vw, 45px);
} */

header nav .menu ul li:not(:last-child) a>em,
.footer_social_icon a,
.footer_contact a,
.footer_links li a,
footer .footer_links ul li a,
header nav .menu ul li a {
    transition: all .3s ease-in-out;
    position: relative;
}

header nav .menu ul li:not(:last-child) a>em {
    font-style: normal !important;
}

.footer_social_icon a::before,
.footer_contact a::before,
.footer_links li a::before,
footer .footer_links ul li a::before,
header nav .menu ul li:not(:last-child) a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--strong_high);
    left: 0;
    top: 110%;
    transition: all .2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.footer_social_icon a:hover {
    filter: drop-shadow(0 0 0.75rem var(--primary_bg));
}

.footer_contact a:hover::before,
.footer_links li a:hover::before,
footer .footer_links ul li a:hover::before,
header nav .menu ul li:not(:last-child):hover a::before {
    width: 100%;
}

.footer_contact a:hover::before,
.footer_links li a:hover::before,
footer .footer_links ul li a:hover::before {
    background-color: var(--primary_bg);
}

.footer_links li.current_page_item a::before {
    width: 100%;
    background-color: var(--text_white);
}

header nav .menu ul li.current-menu-item a::before {
    width: 100%;
    color: var(--strong_high);
}

header nav .menu ul li a:visited {
    color: inherit;
}

header nav .menu ul li:last-child a.theme_btn {
    font-size: 16px;
    padding: 12px 18px;
}

header nav .menu ul li:not(:last-child):hover a {
    color: var(--strong_high);
}

@media(max-width: 1200px) {
    header nav .menu ul li:not(:last-child) a::before {
        display: none;
    }

    header nav .menu ul li:not(:last-child) a>em::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        background-color: var(--strong_high);
        left: 0;
        top: 110%;
        transition: all .2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    header nav .menu ul li.current-menu-item a>em::before {
        width: 100%;
        color: var(--strong_high);
    }
}

a.theme_btn:hover {
    color: var(--text_dark_high);
}

.logo .hambar {
    display: none;
    width: 30px;
    height: 25px;
}

.logo .hambar span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: var(--text_high);
    transition: all .3s ease-in;
}

.logo .hambar span:nth-child(1) {
    margin-bottom: 5px;
}

.logo .hambar span:nth-child(2) {
    margin-bottom: 5px;
}

.logo .hambar.active span:nth-child(2) {
    visibility: hidden;
    width: 0;
}

.logo .hambar.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.logo .hambar.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Single Dropdown Menu */
header ul li.has_submenu {
    position: relative;
}

header ul li.has_submenu .submenu {
    position: absolute;
    background-color: var(--primary_bg);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: max-content;
    left: 50%;
    top: 100%;
    transform: translateX(-60%);
    transform-style: preserve-3d;
    min-width: 350px;
    padding: 16px 8px;
    border-radius: 16px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

header ul li.has_submenu:hover .submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: visible;
    transform: translateX(-50%);
}

header ul li.has_submenu:hover>a>span {
    transform: rotate(-180deg);
}

header ul li.has_submenu .submenu .submenu_card a {
    display: flex;
    border-radius: 8px;
    padding: 8px;
    gap: 15px;
}

header ul li.has_submenu .submenu .submenu_card a::before {
    all: unset;
}

header ul li.has_submenu .submenu .submenu_card a:hover {
    background-color: var(--light_low);
}

header ul li.has_submenu .submenu .submenu_card:not(:last-child) {
    margin-bottom: 15px;
}

header ul li.has_submenu .submenu .submenu_card .submenu_card_icon {
    background-color: var(--strong_high);
    width: 40px;
    border-radius: 8px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header ul li.has_submenu .submenu .submenu_card .submenu_card_icon img {
    width: 26px;
    height: 26px;
    display: block;
    object-fit: contain;
}

header ul li.has_submenu .submenu .submenu_card p {
    font-size: 12px;
}

header ul li.has_submenu .submenu .submenu_card .submenu_btn {
    margin-left: auto;
    width: 25px;
    height: 25px;
    transform: translateX(-15px) rotate(-180deg);
    transition: all .4s ease-in-out;
    opacity: 0;
}

header ul li.has_submenu .submenu .submenu_card a:hover .submenu_btn {
    transform: translateX(0px) rotate(-180deg);
    opacity: 1;
}

/* Header Design End */

/* Footer Design Start */
footer {
    padding: clamp(44px, 3.333vw, 64px) 0 24px 0;
    background-color: var(--strong_mid);
}

footer .grid_wrapper {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 30px;
    padding-bottom: clamp(35px, 2.76vw, 53px);
    border-bottom: 1px solid var(--border_light);
}

footer .grid_wrapper .grid_item:first-child .footer_contact a {
    letter-spacing: 1.3px;
}

footer .footer_content {
    margin-bottom: clamp(30px, 2.604vw, 50px);
}

footer .footer_content .footer_site_logo {
    margin-bottom: 6px;
}

footer .footer_content p {
    color: var(--text_dark_high);
}

footer .footer_bottom .footer_links,
footer .footer_links ul,
footer .footer_contact {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 48px);
    flex-wrap: wrap;
}

footer .grid_wrapper .grid_item:last-child {
    text-align: end;
    display: flex;
    justify-content: end;
    align-items: end;
}

footer .footer_links ul {
    justify-content: end;
}

footer .footer_links ul li a {
    letter-spacing: 1.05px;
}

footer .footer_bottom .p_16,
footer .footer_bottom .footer_links a,
footer .footer_links ul li a,
footer .footer_contact a {
    color: var(--text_dark_high);
}


footer .grid_wrapper .grid_item:last-child .footer_content {
    margin-top: auto;
    margin-bottom: -6px;
}

footer .footer_content .footer_social_icon {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: end;
    margin-bottom: clamp(20px, 2.5vw, 48px);
}

footer .footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
}

/* Footer Design End */



/* Hero Bannner Section Start */
.hero_banner {
    /* background-image: linear-gradient(to bottom, #f4f6f5fa 70%, #ffffff 30%); */
    /* background-image: linear-gradient(to top, #ffffff, #f4f6f5fa); */
    background-color: #FFFFFF;
    position: relative;
    height: calc(100vh - 84px);
}

/* .hero_banner::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/uploads/2025/01/grid_object.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
} */

.hero_banner.modified .container {
    height: 100%;
}

@media(max-width: 1600px) {
    .hero_banner {
        padding-top: 10px;
        height: max-content;
    }
}

@media(min-width: 1921px) {
    .hero_banner {
        height: max-content;
        padding-top: 10px;
    }
}

.hero_banner .hero_banner_content .hero_box p,
.hero_banner .hero_banner_content .hero_box h1 {
    margin-bottom: 16px;
}

.hero_banner .hero_banner_content .hero_box p {
    letter-spacing: 0.39px;
}

.hero_banner.modified .container .hero_banner_content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.hero_banner.modified .container .hero_banner_content .hero_box {
    max-width: 46.875vw;
    margin: 0 auto;
    width: 100%;
}

@media(max-width: 767px) {
    .hero_banner.modified .container .hero_banner_content .hero_box {
        max-width: max-content;
    }
}

.hero_banner.modified .container .hero_banner_content .hero_box .hero_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.hero_banner.modified .container .hero_banner_content .hero_box .link_btn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
    color: #0A3934;
    transition: all .4s ease-in-out;
}

.hero_banner.modified .container .hero_banner_content .hero_box .link_btn:hover {
    font-weight: 600;
}

.hero_banner.modified .container .hero_banner_content .hero_box .link_btn span {
    display: inline-block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.hero_banner .flex_wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.hero_banner .flex_wrapper .flex_item h1 span {
    position: relative;
    background: linear-gradient(93.69deg, #41C991 0%, #38A875 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .hero_banner .flex_wrapper .flex_item h1 span::after {
    position: absolute;
    content: "";
    background-image: url('../images//highlight.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 0;
    height: 48px;
    right: -4px;
    top: 92%;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

.hero_banner .flex_wrapper .flex_item h1 span.loaded::after {
    width: 100%;
}

.hero_banner .flex_wrapper .flex_item .hero_videobox {
    width: 100%;
}

.hero_banner .flex_wrapper .flex_item .hero_videobox iframe,
.hero_banner .flex_wrapper .flex_item .hero_videobox video {
    width: 100%;
    border-radius: 8px;
}

.hero_banner .flex_wrapper .flex_item .hero_videobox .mobile_image {
    display: none;
}

@media(max-height: 800px) {
    .hero_banner {
        height: max-content;
    }
}

@media(max-width: 1440px), (max-height: 600px) {
    .hero_banner {
        height: max-content;
    }
}

/* Hero Bannner Section End */


/* Readymade Grocery Start */
.readymade_grocery .header {
    text-align: center;
    margin: 0 auto;
    max-width: 75ch;
}

.readymade_grocery .header h2 {
    margin-bottom: 7px;
}

.readymade_grocery .homepage_tab_wrapper {
    background-color: rgb(0 252 155 / 9%);
    padding: 30px;
    border-radius: 16px;
    margin-top: 32px;
}

.readymade_grocery .homepage_tab_wrapper .tab_list_parent {
    position: relative;
}

.readymade_grocery .homepage_tab_wrapper .tab_list_parent ul {
    text-align: center;
    margin-bottom: 25px;
}

.readymade_grocery .homepage_tab_wrapper .tab_list_parent ul li {
    min-width: 120px;
}

.readymade_grocery .homepage_tab_wrapper .tab_list_parent ul li.theme_btn {
    border: 1px solid var(--strong_mid);
    background-color: var(--primary_bg);
    color: var(--text_high);
}

.readymade_grocery .homepage_tab_wrapper .tab_list_parent ul li.theme_btn.active {
    background-color: var(--strong_mid);
    color: var(--primary_bg);
}

.readymade_grocery .homepage_tab_wrapper .tab_list_parent ul li:not(:last-child) {
    margin-right: 24px;
}

.readymade_grocery .header p {
    letter-spacing: 0.35px;
}

.readymade_grocery .grocery_wrapper .grocerybox .grocerybox_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: clamp(20px, 2.083vw, 40px);
}

.readymade_grocery .grocery_wrapper .grocerybox .link_box {
    padding-top: 20px
}


.readymade_grocery .homepage_tab_wrapper .grocerybox {
    display: none;
}

.readymade_grocery .homepage_tab_wrapper .grocerybox h3 {
    margin-bottom: 8px;
}

.readymade_grocery .grocery_wrapper .grocerybox:nth-child(odd) {
    flex-direction: row-reverse;
}

.readymade_grocery .grocery_wrapper .grocerybox .grocery_img img {
    position: relative;
    left: 22px;
}

.readymade_grocery .grocery_wrapper .grocerybox:nth-child(even) .grocery_img img {
    position: relative;
    left: -22px;
}

.readymade_grocery .grocery_wrapper .grocerybox .grocery_content {
    width: 100%;
    max-width: max(250px, 400px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.readymade_grocery .grocery_wrapper .grocerybox .grocery_content .grocery_vtabs .vtab_card {
    background: linear-gradient(270deg, rgb(246 246 246 / 12%), var(--primary_bg));
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 16px;
    max-width: 416px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    cursor: default;
    border: 1px solid transparent;
    transition: all .4s ease-in-out;
}

.readymade_grocery .grocery_wrapper .grocerybox .grocery_content .grocery_vtabs .vtab_card.hovered {
    border: 1px solid var(--strong_high);
    transform: translateX(10px);
}

.readymade_grocery .grocery_wrapper .grocerybox .grocery_content .grocery_vtabs .vtab_card .vtab_img {
    display: inline-flex;
    flex-shrink: 0;
    background-color: var(--strong_high);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    /* border-radius: 50px; */
}

.readymade_grocery .grocery_wrapper .grocerybox .grocery_content .grocery_vtabs .vtab_card .vtab_img img {
    width: 100%;
    /* height: 24px; */
    display: block;
    object-fit: contain;
}


.readymade_grocery .grocery_wrapper .grocerybox .grocery_content ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--text_high);
    position: relative;
    padding-left: 32px;
}

.readymade_grocery .grocery_wrapper .grocerybox .grocery_content ul li:not(:last-child) {
    margin-bottom: 16px;
}

.readymade_grocery .grocery_wrapper .grocerybox .grocery_content ul li::before {
    position: absolute;
    content: "";
    background-image: url('../images/check.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.readymade_grocery .grocery_wrapper .grocerybox .grocery_img {
    flex: 1;
}

.readymade_grocery .grocery_wrapper .grocerybox .grocery_img img {
    display: block;
    margin: 0 auto;
    max-width: 740px;
    height: clamp(224px, 22.917vw, 440px);
    object-fit: contain;
    width: 100%;
}

/* Readymade Grocery End */


/* Tech Stack Section Start */
.stack_section.readymade_grocery .grocery_wrapper .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px;
}

.stack_section.readymade_grocery .homepage_tab_wrapper {
    background-color: var(--secondary_bg);
}

.stack_section.readymade_grocery .grocery_wrapper .grid-4 .tech__card {
    background-color: var(--primary_bg);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all .4s ease-in-out;
    cursor: default;
}

.stack_section.readymade_grocery .grocery_wrapper .grid-4 .tech__card .title_large {
    margin-bottom: 8px;
}

.stack_section.readymade_grocery .grocery_wrapper .grid-4 .tech__card .tech__card_icon {
    margin-bottom: 20px;
}

.stack_section.readymade_grocery .grocery_wrapper .grid-4 .tech__card .tech__card_icon img {
    border-radius: 8px;
    transition: all .4s ease-in-out;
}

.stack_section.readymade_grocery .grocery_wrapper .grid-4 .tech__card:hover {
    background-color: var(--primary_bg);
    transform: translateY(-10px);
}

.stack_section.readymade_grocery .grocery_wrapper .grid-4 .tech__card:hover .tech__card_icon img {
    border-radius: 50px;
}

@media(max-width: 1024px) {
    .stack_section.readymade_grocery .grocery_wrapper .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 767px) {
    .stack_section.readymade_grocery .grocery_wrapper .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
}

@media(max-width: 575px) {
    .stack_section.readymade_grocery .grocery_wrapper .grid-4 {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Tech Stack Section End */


/* Trusted Section Start */

.trusted_section h2 {
    text-align: center;
}
.trusted_section h2.title_large{
    text-align: left;
}
.trusted_section .grid_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 3.333vw, 64px);
    margin-top: clamp(20px, 2.083vw, 40px);
    max-width: 1640px;
}

.trusted_section .trusted_card h2,
.trusted_section .trusted_card h3,
.trusted_section .trusted_card .trusted_icon {
    margin-bottom: 7px;
}

.trusted_section .trusted_card p {
    padding-right: 5px;
    letter-spacing: 0.1px;
}

@media(max-width: 767px) {
    .trusted_section .grid_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .trusted_section h2 {
        text-align: start;
    }

    .trusted_section .trusted_card .trusted_icon img {
        width: 40px;
        height: 40px;
    }
}



/* Reliable Section Start  */
.reliable__section .header {
    text-align: center;
    margin-bottom: clamp(20px, 2.083vw, 40px);
}

.reliable__section .header h2 {
    margin-bottom: 8px;
}

.reliable__section .reliable__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reliable__section .reliable__wrapper .reliable_card {
    min-height: clamp(200px, 15.625vw, 300px);
    border-radius: 16px;
    padding: 20px;
    transition: all .4s ease-in-out;
    position: relative;
}

.reliable__section .reliable__wrapper .reliable_card .reliable_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.reliable__section .reliable__wrapper .reliable_card .reliable_icon img {
    width: 100%;
    display: block;
    object-fit: contain;
}

.reliable__section .reliable__wrapper .reliable_card .reliable__data h3 {
    margin-bottom: 20px;
}

.reliable__section .reliable__wrapper .reliable_card:hover {
    transform: translateY(-10px);
    cursor: default;
}

.reliable__section .reliable__wrapper .reliable_item:nth-child(1) .reliable_card {
    background-color: rgb(126 252 0 / 16%);
    box-shadow: rgb(128 213 48) 0px 1px 1px;
}

.reliable__section .reliable__wrapper .reliable_item:nth-child(2) .reliable_card {
    background-color: rgb(252 143 0 / 12%);
    box-shadow: rgb(223 163 187) 0px 1px 1px;
}

.reliable__section .reliable__wrapper .reliable_item:nth-child(3) .reliable_card {
    background-color: rgb(0 252 155 / 9%);
    box-shadow: rgb(138 211 182) 0px 1px 1px;
}

.reliable__section .reliable__wrapper .reliable_item:nth-child(4) .reliable_card {
    background-color: rgb(244 0 252 / 5%);
    box-shadow: rgb(201 162 205) 0px 1px 1px;
}

.reliable__section .reliable__wrapper .reliable_item:nth-child(5) .reliable_card {
    background-color: rgb(0 11 252 / 7%);
    box-shadow: rgb(176 180 249) 0px 1px 1px;
}

.reliable__section .reliable__wrapper .reliable_item:nth-child(6) .reliable_card {
    background-color: rgb(214 252 0 / 12%);
    box-shadow: rgb(199 209 147) 0px 1px 1px;
}

.thrive_section .grid_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.thrive_section .grid_wrapper .thrive_card {
    border-radius: 16px;
    padding: 24px;
    background-color: var(--light_low);
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.thrive_section .grid_wrapper .thrive_card:hover {
    filter: drop-shadow(0px 0px 1px #007343);
}

.thrive_section .grid_wrapper .thrive_card .title_medium,
.thrive_section .grid_wrapper .thrive_card .thrive_icon {
    margin-bottom: 20px;
}

.thrive_section .grid_wrapper .thrive_card .title_small {
    color: var(--text_mid);
    margin-bottom: 5px;
}

.thrive_section .grid_wrapper .thrive_card .half_line {
    display: block;
    width: 30%;
    border: 1px solid var(--border_light);
    margin-bottom: 20px;
}

.secure_wrapper {
    padding: 0 clamp(20px, 3.125vw, 60px);
}

.secure_slider_wrapper .swiper-slide {
    height: auto;
    display: flex;
}

.secure_slider_wrapper .secure_card {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    background-color: var(--light_low);
    transition: all .3s ease-in-out;
    position: relative;
}

.secure_slider_wrapper .secure_card:hover {
    background-color: transparent;
    border: 1px solid var(--border_light);
    cursor: default;
}

.secure_slider_wrapper .secure_card .secure_heading {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

@media(max-width: 820px) {

    .thrive_section .grid_wrapper,
    .reliable__section .reliable__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media(max-width: 767px) {

    .thrive_section .grid_wrapper,
    .reliable__section .reliable__wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .reliable__section .header {
        text-align: start;
    }

    .thrive_section br {
        display: none;
    }
}

/* Reliable Section End */

/* Unique Section Start */
.unique_section {
    position: relative;
}

.unique_section .header {
    text-align: center;
}

.unique_section .header h2 {
    margin-bottom: 8px;
}

.unique_section .header h2 span {
    color: var(--strong_high);
}

.unique_section .unique_container {
    margin-top: clamp(20px, 2.083vw, 40px);
}

.unique_section .unique_container .swiper-slide.unique_box {
    height: auto !important;
}

.unique_section .unique_container .swiper-slide.unique_box .unique_card {
    height: 100%;
}

.unique_section .unique_card {
    background-color: rgb(0 252 155 / 9%);
    padding: 20px;
    border-radius: 16px;
}

.unique_section .unique_card .title {
    margin-bottom: 8px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.unique_section .unique_card .title span {
    display: block;
}

.unique_section .unique_navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.unique_section .unique_navigation .next,
.unique_section .unique_navigation .prev {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: var(--light_low);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.unique_section .unique_navigation .next:hover,
.unique_section .unique_navigation .prev:hover {
    background-color: var(--strong_high);
}

.unique_section .unique_navigation .next img,
.unique_section .unique_navigation .prev img {
    width: 14px;
    height: 14px;
}

.unique_section .unique_navigation .next:hover img,
.unique_section .unique_navigation .prev:hover img {
    filter: invert(1);
}

.unique_section .unique_navigation .next {
    transform: rotate(180deg);
}

/* Unique Section End */

/* Trusted Section End */




/* Testimonial Section Start */
/* .common_space.testimonial_section {
    background-color: #e8fff6;
} */

.testimonial_section .header {
    margin-bottom: clamp(30px, 2.917vw, 56px);
    text-align: center;
}

.testimonial_section .grid_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 2.969vw, 57px);
}

.testimonial_section .grid_wrapper .grid_item iframe,
.testimonial_section .grid_wrapper .grid_item video {
    border-radius: 16px;
}

.testimonial_section .testimonial_card {
    margin-top: -2px;
    /* height: 100%; */
}

.testimonial_section .testimonial_card .swiper-slide>p {
    line-height: 146%;
    font-weight: 600;
}

.testimonial_section .testimonial_card .swiper-slide .testimonial_slidebox {
    /* background-color: var(--primary_bg); */
    background-color: var(--light_low);
    padding: 30px clamp(20px, 2.604vw, 50px);
    border-radius: 20px;
}

.testimonial_section .testimonial_card .testimonial_profile {
    margin: 32px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial_section .testimonial_card .testimonial_profile div:first-of-type {
    flex-shrink: 0;
}

.testimonial_section .testimonial_card .testimonial_profile img {
    border-radius: 50%;
}

.testimonial_section .testimonial_card .testimonial_profile h3 {
    margin-bottom: 4px;
}

.testimonial_section .grid_item {
    position: relative;
    overflow: hidden;
}

.testimonial_section .grid_item:nth-child(2) {
    border-radius: 20px;
}

.testimonial_section .next_slide,
.testimonial_section .prev_slide,
.testimonial_section .testimonial_card .next_slide,
.testimonial_section .testimonial_card .prev_slide {
    width: 48px;
    height: 48px;
    background-color: var(--light_low);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.testimonial_section .next_slide:hover,
.testimonial_section .prev_slide:hover {
    background-color: var(--strong_high) !important;
}

.testimonial_section .next_slide:hover img,
.testimonial_section .prev_slide:hover img {
    filter: invert(1);
}

.testimonial_section .next_slide img,
.testimonial_section .prev_slide img,
.testimonial_section .testimonial_card .next_slide img,
.testimonial_section .testimonial_card .prev_slide img {
    width: 14px;
    height: 12px;
}

.testimonial_section .next_slide,
.testimonial_section .testimonial_card .next_slide {
    left: 55%;
    /* left: 64px; */
    transform: rotate(180deg);
}

.testimonial_section .testimonial_card .swiper-slide {
    transition: opacity .5s ease;
    display: flex;
    height: auto !important;
}

.testimonial_btn {
    margin-top: 20px;
    text-align: center;
}

.testimonial_section .next_slide,
.testimonial_section .prev_slide {
    position: relative;
    transform: unset;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    display: inline-flex;
    margin-right: 24px;
}

.testimonial_section .next_slide {
    transform: rotate(180deg);
}

.testimonial_section .testimonial_card .swiper-slide .link_btn {
    position: relative;
}

.testimonial_section .testimonial_card .swiper-slide .link_btn span {
    display: inline-block;
}

.testimonial_section .testimonial_card .swiper-slide .link_btn span svg {
    transform: rotate(-90deg);
    position: relative;
    top: 7px;
    left: -2px;
    transition: all .3s ease-in-out;
}

.testimonial_section .testimonial_card .swiper-slide .link_btn:hover span svg {
    left: 3px;
}

.testimonial_section .testimonial_card .swiper-slide .link_btn span svg path {
    stroke: var(--strong_mid);
    transition: all .3s ease-in-out;
}

.testimonial_section .testimonial_card .swiper-slide .link_btn:hover span svg path {
    stroke: var(--text_high);
}

.testimonial_section .video_section video {
    width: 100%;
}

@media (min-width: 821px) and (max-width: 1300px) {

    .testimonial_section .testimonial_card .next_slide,
    .testimonial_section .testimonial_card .prev_slide {
        left: unset;
        right: 0;
    }

    .testimonial_section .testimonial_card .prev_slide {
        right: 64px;
    }
}

@media(max-width: 820px) {
    .testimonial_section .grid_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .testimonial_section .grid_wrapper .grid_item:first-of-type {
        order: 2;
    }
}

/* Testimonial Section End */




/* Logo Section Start*/

/* Hide Temporary  */
.logo_section {
    display: none;
}

.logo_section .swiper {
    width: 100%;
    overflow: hidden;
}

.logo_section .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}

.logo_section .swiper-wrapper .logo_slide {
    display: flex;
    align-items: center;
}

.swiper-slide.logo_slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide.logo_slide img {
    display: block;
    width: clamp(180px, 13.75vw, 264px);
    max-width: 100%;
    object-fit: contain;
    height: auto;
}

@media(max-width: 991px) {
    .logo_section .swiper-slide .logo_slide_img {
        flex-shrink: 0;
    }

    .logo_section .swiper-wrapper .logo_slide {
        width: auto !important;
    }
}

/* Logo Section End*/



/* Awarded for excellence section Start */
.award_section {
    background-color: rgb(0 252 155 / 9%);
}

.award_section .header {
    text-align: center;
    margin-bottom: clamp(20px, 2.5vw, 48px);
}


.award_section .grid_wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(20px, 4.219vw, 81px);
}

.award_section .flex_wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.award_section .flex_wrapper .flex_item {
    /* padding: 25px clamp(20px, 2.604vw, 50px) 15px clamp(20px, 2.604vw, 50px); */
    padding: 22px clamp(20px, 3.125vw, 60px);
    border-radius: 16px;
    background-color: var(--primary_bg);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    border: 1px solid transparent;
    transition: all .4s ease-in-out;
}

.award_section .flex_wrapper .flex_item:hover {
    border-color: #ececec;
}

.award_section .flex_wrapper .flex_item img {
    max-width: 100px;
}

@media(max-width: 767px) {
    .award_section .grid_wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(20px, 4.219vw, 81px);
    }
}

/* Awarded for excellence section End */



/* Getting Started Section Start */
/* .getting_start {
    background-color: var(--primary_bg);
} */

.getting_start .header {
    text-align: center;
    margin-bottom: 32px;
}

.getting_start .header h2 {
    margin-bottom: 5px;
}

.getting_start .flex_wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 3.333vw, 64px);
}

.getting_start .flex_wrapper .flex_item {
    padding: clamp(30px, 3.333vw, 64px) clamp(30px, 3.333vw, 64px) 0 clamp(30px, 3.333vw, 64px);
    background-color: rgb(0 252 155 / 9%);
    border-radius: 16px;
    /* border: 1px solid var(--strong_mid); */
}

.getting_start .flex_box {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.getting_start .flex_content {
    flex: 1;
    max-width: max(250px, 400px);
}

.getting_start .flex_content .title_small {
    margin-bottom: 5px;
    display: inline-block;
}

.getting_start .flex_content h3 {
    margin-bottom: 8px;
}

.getting_start .flex_imgbox {
    flex: 1;
    /* max-width: 944px; */
}

.getting_start .flex_imgbox img {
    max-height: 571px;
    object-fit: contain;
}

.getting_start .flex_item:first-of-type img {
    max-width: 841px;
    width: 100%;
    margin-left: auto;
    display: block;
}

.getting_start .flex_item {
    position: sticky;
    top: 70px;
}

.getting_start .tab_list_parent {
    text-align: center;
    margin-bottom: 32px;
}

.getting_start .tab_list_parent li.theme_btn {
    border: 1px solid var(--strong_mid);
    background-color: transparent;
    color: var(--text_high);
}

.getting_start .tab_list_parent li.theme_btn:hover,
.getting_start .tab_list_parent li.theme_btn.active {
    background-color: var(--strong_mid);
    color: var(--primary_bg);
}

.getting_start .tab_list_parent li.theme_btn:hover span {
    color: var(--text_high);
}

.getting_start .tab_list_parent li.theme_btn.active span {
    color: var(--text_high);
}

.getting_start .tab_list_parent li:not(:last-child) {
    margin-right: 24px;
}

.getting_start .tab_list_parent li span {
    background-color: var(--primary_bg);
    border-radius: 50%;
    padding: 10px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.getting_start .flex_wrapper .flex_item {
    display: none;
}

/* Getting Started Section End */



/* Insights Section Start  */
.insight_section .header h2 {
    text-align: center;
}

.insight_section .header a {
    margin-top: 10px;
}


.insight_section .header a.link_btn span svg {
    transform: rotate(-90deg);
    position: relative;
    top: 0;
    left: -2px;
    transition: all .3s ease-in-out;
}

.insight_section .header a.link_btn span svg path {
    stroke: var(--strong_mid);
}

.insight_section .header a.link_btn:hover span svg {
    left: 3px;
}

.insight_section .header a.link_btn:hover span svg path {
    stroke: var(--text_high);
}

.insight_section .header {
    margin-bottom: clamp(20px, 2.917vw, 56px);
}

.insight_section .grid_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(40px, 3.333vw, 64px);
}

.insight_section .grid_wrapper .insight_topbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.insight_section .grid_wrapper .insight_img {
    margin-bottom: 16px;
}

.insight_section .grid_wrapper .insight_img img {
    display: block;
}

.insight_section .grid_wrapper .insight_content h3 {
    margin: 8px 0;
    min-height: 64px;
}

.insight_section .grid_wrapper .insight_content h3 a {
    color: var(--text_high);
}

.insight_section .grid_wrapper .insight_content h3,
.insight_section .grid_wrapper .insight_content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.insight_section .grid_wrapper .insight_content p {
    -webkit-line-clamp: 3;
    margin-bottom: 8px;
}

.insight_section .grid_wrapper .insight_content p:empty {
    display: none;
}

.insight_section .grid_wrapper .insight_content a.link_btn {
    position: relative;
    padding-right: 20px;
    color: var(--text_high);
}

.insight_section .grid_wrapper .insight_content a.link_btn svg {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    right: 0;
    top: 5px;
    transform: rotate(-90deg);
}

.insight_section .grid_wrapper .insight_content a.link_btn:hover {
    color: var(--strong_high);
}

.insight_section .grid_wrapper .insight_content p.p_16 {
    color: var(--text_low);
}

.insight_section .grid_wrapper .grid_item:first-of-type {
    grid-column-start: 1;
    grid-column-end: -1;
}

.insight_section .grid_wrapper .grid_item:first-of-type {
    display: none;
}

.insight_section .grid_wrapper .grid_item:first-of-type .insight_card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.083vw, 40px);
    align-items: center;
}

.insight_section .grid_wrapper .grid_item .insight_img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.insight_section .grid_wrapper .grid_item .insight_card .insight_img img {
    transition: all 0.6s ease-in-out;
    display: block;
    width: 100%;
    height: 251px;
    object-fit: cover;
}

.insight_section .grid_wrapper .grid_item .insight_card:hover .insight_img img {
    transform: scale(1.1);
}

.insight_section .grid_wrapper .grid_item .insight_card:hover h3 a {
    color: var(--strong_high);
}

.insight_section .grid_wrapper .grid_item:first-of-type img {
    width: 100%;
}

.insight_section .grid_wrapper .grid_item:first-of-type .insight_content h3 {
    margin: 16px 0;
    font-size: clamp(20px, 1.875vw, 36px);
    line-height: 133%;
    letter-spacing: -0.02em;
    color: var(--text_high);
    display: block;
    -webkit-line-clamp: none;
    -webkit-box-orient: none;
    overflow: unset;
    text-overflow: unset;
}

.insight_section .grid_wrapper .grid_item:first-of-type .insight_content p {
    display: block;
    -webkit-line-clamp: none;
    -webkit-box-orient: none;
    overflow: unset;
    text-overflow: unset;
}

.insight_linkbox {
    text-align: center;
    margin-top: clamp(20px, 2.5vw, 45px);
}

/* Insights Section End */


/* CTA Section Start */
.cta_section .cta_box {
    text-align: center;
    background-color: var(--dark_bg);
    position: relative;
    z-index: 1;
    border-radius: 16px;
}

.cta_section .cta_box::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/circular_object.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: -1;
}

.cta_section .cta_box h2 {
    margin-bottom: 8px;
    color: var(--primary_bg);
}

.cta_section .cta_box p {
    color: var(--text_dark_high);
    margin-bottom: 24px;
}

/* CTA Section End */



/* Faqs Start */
.faq_section .header {
    text-align: center;
    padding-bottom: clamp(30px, 3.333vw, 64px);
}

.faq_section .faq_wrapper .faq_box {
    padding: 20px;
    border: 1px solid transparent;
    background-color: var(--light_low);
    margin-bottom: 15px;
    border-radius: 16px;
    border: 1px solid transparent;
}

.faq_section .faq_wrapper .faq_box.active {
    border: 1px solid var(--strong_high);
}

.faq_section .faq_wrapper .content {
    display: none;
    padding-top: 16px;
}

.faq_section .faq_wrapper .faq_box .title h3 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.faq_section .faq_wrapper .faq_box:hover {
    color: var(--strong_high);
}

.faq_section .faq_wrapper .faq_box:hover h3 {
    color: var(--strong_high);
}

.faq_section .faq_wrapper .faq_box .title.on h3 {
    color: var(--strong_high);
}

.faq_section .faq_wrapper .faq_box .title.on+.content {
    display: block;
}

.faq_section .faq_wrapper .faq_box .title svg {
    transition: all .3s ease-in-out;
}

.faq_section .faq_wrapper .faq_box .title.on svg {
    transform: rotate(180deg);
}

.faq_section .faq_wrapper .faq_box .title.on svg path {
    stroke: var(--strong_high);
}

/* Faqs End */


/* Banner Section Start */
.common_banner {
    position: relative;
    overflow: visible;
    background-size: cover;
    background-repeat: no-repeat;
}

.common_banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url('../images/circle_object.svg');
    background-repeat: no-repeat;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* max-width: 75%; */
    background-size: cover;
    z-index: -1;
}

.common_banner .header {
    text-align: center;
}

.common_banner .header h1 {
    margin-bottom: 8px;
}

.common_banner .header p {
    letter-spacing: 1px;
    line-height: 176%;
    font-weight: 600;
    margin-bottom: 20px;
}

.solution_page {
    padding-bottom: clamp(40px, 7.5vw, 144px);
}

/* Banner Section End */



/* Blog Listing Page Css Start */
section.blog_page {
    min-height: 400px;
    display: grid;
    background-position: center center;
    background-repeat: no-repeat;
    place-content: center;
}


section.blog_page .container .header p,
section.blog_page .container .header h1 {
    color: var(--text_dark_high);
}

section.category_section {
    padding: 30px 0;
}

section.category_section .custom-toplink ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

section.category_section .custom-toplink select {
    width: 100%;
}

section.category_section .custom-toplink ul li.li-margin a {
    color: var(--text_high);
    padding: 6px 12px;
    min-width: 100px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    border: 1px solid var(--border_dark);
    transition: all .4s ease-in-out;
}

section.category_section .custom-toplink ul li.li-margin.current-cat a,
section.category_section .custom-toplink ul li.li-margin a:hover {
    background-color: var(--strong_high);
    color: var(--primary_bg);
    border-color: var(--strong_high);
}

section.category-post-section ul.category-post-list,
.blog_post_container ul.latest-post-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 85ch;
}

.blog_wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.blog_post_container .blog_postdata:not(:first-of-type) {
    margin-top: clamp(30px, 3.333vw, 64px);
}

.blog_post_container .blog_postdata:first-of-type ul.latest-post-list li:first-of-type {
    grid-area: 1 / 1 / 2 / 3;
}

.blog_post_container .blog_postdata:first-of-type ul.latest-post-list li:first-of-type .latest-post-image img {
    max-width: 100%;
    width: 100%;
    max-height: 418px;
    object-fit: cover;
}

.blog_post_container .blog_postdata ul.latest-post-list li .latest-post-image {
    overflow: hidden;
}

.blog_post_container .blog_postdata ul.latest-post-list li a:hover h3 {
    color: var(--strong_high);
}

.blog_post_container .blog_postdata ul.latest-post-list li .latest-post-image img {
    display: block;
    max-width: 100%;
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.blog_post_container .blog_postdata ul.latest-post-list li .latest-post-image:hover img {
    transform: scale(1.1);
}

.single_detail .grid-2 aside,
.blog_wrapper aside .sidebar_content {
    position: sticky;
    top: 120px;
}

.blog_post_container .blog_postdata:first-of-type ul.latest-post-list li:first-of-type h3 {
    font-size: clamp(22px, 1.458vw, 28px);
    ;
}

.blog_post_container .blog_postdata ul.latest-post-list li h3 {
    margin: 12px 0;
}

.blog_post_container .blog_postdata .showmore_btn {
    text-align: end;
    margin: 15px 0;
}

.blog_post_container .blog_postdata h2 {
    margin-bottom: 25px;
}

.blog_post_container .blog_postdata h2 span {
    display: inline-block;
    border: 1px solid var(--border_light);
    padding: 5px 10px;
    border-radius: 50px;
    background-color: var(--secondary_bg);
}

.author_section .author_flex .author_icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author_section .author_flex .author_icon img {
    width: 70px;
    height: 70px;
    display: block;
    object-fit: contain;
    margin: 0;
}

.single_detail .grid-2 .blog_content .author_section p.p_18 {
    margin-top: 0;
}

/* Blog Listing Page Css End */


/* Blog Detail Page Start */
.single_detail .grid-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.single_detail .grid-2 .blog_content ul,
.single_detail .grid-2 .blog_content p,
.single_detail .grid-2 .blog_content img,
.single_detail .grid-2 .blog_content h2,
.single_detail .grid-2 .blog_content h3,
.single_detail .grid-2 .blog_content h4 {
    margin: 15px 0 20px;
}

.single_detail .grid-2 .blog_content p a {
    color: var(--strong_high);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.single_detail .grid-2 .blog_content p {
    font-size: clamp(16px, 0.938vw, 18px);
    font-weight: 400;
    line-height: 155%;
    color: var(--text_high);
}

.single_detail .grid-2 .blog_content ul {
    margin-left: 18px;
}

.single_detail .grid-2 .blog_content ul li {
    list-style: square;
}

.single_detail .grid-2 .blog_content h2 span,
.single_detail .grid-2 .blog_content h3 span {
    font-weight: 600 !important;
}

.single_detail .grid-2 .blog_content h2 {
    font-size: clamp(22px, 1.458vw, 28px);
    line-height: 143%;
    letter-spacing: -0.01em;
    color: var(--text_high);
}

.single_detail .grid-2 .blog_content h3 {
    font-size: clamp(20px, 1.146vw, 22px);
    line-height: 146%;
    color: var(--text_high);
}

.single_detail .grid-2 .blog_content h4 {
    font-size: clamp(18px, 1.042vw, 20px);
    line-height: 140%;
    color: var(--text_high);
}

/* Blog Detail Page End */


/* 404 CSS Start */
.error-404 {
    height: calc(100vh - 438px - 84px);
    display: grid;
    place-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.uncatagorized::before,
.error-404::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    box-shadow: 0px 10px 140px 140px rgb(73 205 75 / 52%);
    left: 50%;
    top: 50%;
}

.error-404 .container {
    z-index: 99;
}

.error-404 h1 {
    margin-bottom: 25px;
}

.error-404 .container {
    text-align: center;
}

.insight_section.blog_insights .grid_wrapper .grid_item:first-of-type {
    display: unset;
}

.insight_section.blog_insights .grid_wrapper .grid_item:first-of-type {
    grid-column: auto;
}

.insight_section.blog_insights .grid_wrapper .grid_item:first-of-type .insight_card {
    display: block;
}

.insight_section.blog_insights .grid_wrapper .grid_item:first-of-type .insight_content h3 {
    font-size: clamp(20px, 1.146vw, 22px);
    margin: 8px 0;
}

/* 404 CSS End */


/* Search Page Start */
.grid-3.search {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.grid-3.search .entry-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 10px 0;
}

.grid-3.search .entry-meta .byline .author a,
.grid-3.search .entry-meta .entry-date.published {
    color: var(--strong_high);
}

.grid-3.search h2 a {
    color: var(--text_high);
    margin-bottom: 10px;
    display: block;
}

/* Search Page End */


/* No Post Available Start*/
.uncatagorized {
    height: calc(100vh - 438px - 84px);
    position: relative;
    display: grid;
    place-content: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* No Post Available End*/


/* Pagination  */
.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: clamp(15px, 1.563vw, 30px) 0;
    flex-wrap: wrap;
    gap: 20px;
}

.pagination .prev-link a,
.pagination .next-link a {
    color: var(----text_dark_high);
}

/* Pagination End */

.mobile-category-dropdown {
    display: none;
}

/* Contact Form - Country code Start */
.country_code .flag-container {
    all: unset;
}

.country_code .intl-tel-input {
    display: flex;
}

.country_code .intl-tel-input .flag-container .selected-flag {
    background-color: transparent;
    font-size: 14px;
}

.country_code .intl-tel-input .flag-container .selected-flag:hover {
    background-color: transparent;
}

.country_code .selected-dial-code {
    display: none !important;
}

.country_code .selected-flag {
    width: 50px !important;
}

/* Contact Form - Country code End */

/* Pricing Page Section Start  */

.pricing_section .header {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.pricing_card_section .header {
    text-align: center;
}

.pricing_section .header h1 {
    margin-bottom: 8px;
}

.pricing_section .header p.p_18 {
    font-weight: 600;
}

.pricing_card_section .grid_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.clone_section .pricing_card_section .header,
.pricing_card_section .header,
.pricing_card_section {
    margin-top: clamp(24px, 2.5vw, 48px);
}

.pricing_card_section .grid_wrapper .grid_item .pricing_card {
    padding: clamp(24px, 2.5vw, 48px);
    background-color: var(--light_low);
    border-radius: 20px;
}

.pricing_card_section .pricing_card .pricing_icon {
    margin-bottom: clamp(15px, 1.302vw, 25px);
}

.pricing_card_section .pricing_card .pricing_icon img {
    border-radius: 10px;
}

.pricing_card_section .pricing_card .pricing_title {
    margin-bottom: 5px;
}

.clone_section .header {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.clone_section .header h2 {
    margin-bottom: 8px;
}

@media(max-width: 767px) {
    .pricing_section .header p.p_18 {
        font-weight: 400;
    }

    .pricing_card_section .header,
    .pricing_card_section .header {
        text-align: center;
    }
}

/* Pricing Page Section End */


/* Web Solution Page Design Start */

/* Hero Banner Start */
.web_solution_banner {
    background-color: #113D38;
    min-height: 765px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.web_solution_banner .web_solution_heroimg {
    position: absolute;
    content: "";
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
}

.web_solution_banner .web_solution_heroimg img.wsh_img {
    z-index: 2;
    position: relative;
}

.web_solution_banner .web_solution_heroimg img.obj_position {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    right: 20%;
    transform: translateY(-50%);
    z-index: 0;
    width: 68%;
}

.web_solution_banner .web_solution_herobox {
    max-width: 56.12%;
    width: 100%;
}

.web_solution_banner .web_solution_herobox p,
.web_solution_banner .web_solution_herobox h1 {
    color: var(--text_white);
    margin-bottom: 24px;
}

/* Hero Banner End */

/* Hire dedicated css start */
.ws_dedicated {
    background-color: #F4f4F4;
}

.ws_dedicated .header {
    text-align: center;
    margin-bottom: clamp(20px, 2.083vw, 40px)
}


.ws_dedicated .grid_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.ws_dedicated .grid_wrapper .grid_item .ws_card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px;
    background: var(--text_white);
    border-radius: 12px;
    height: 100%;
}

.ws_dedicated .grid_wrapper .grid_item .ws_card .ws_imgbox {
    padding: 35px;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.ws_dedicated .grid_wrapper .grid_item:nth-child(1) .ws_card .ws_imgbox {
    background-color: #E9FFD7;
    width: 100%;
}

.ws_dedicated .grid_wrapper .grid_item:nth-child(2) .ws_card .ws_imgbox {
    background-color: #EDEDFF;
    width: 100%;
}

.ws_dedicated .grid_wrapper .grid_item:nth-child(3) .ws_card .ws_imgbox {
    background-color: #FEF0FF;
    width: 100%;
}

.ws_dedicated .grid_wrapper .grid_item .ws_card .ws_contentbox {
    padding: 24px;
}

.ws_dedicated .grid_wrapper .grid_item .ws_card .ws_contentbox h3 {
    margin-bottom: 16px;
}

/* Hire dedicated css end */

/* Benefit Css Start */
.ws_benefit {
    background-color: #F5FCFB;
}

.ws_dev_process .header,
.ws_benefit .header {
    margin-bottom: clamp(20px, 2.083vw, 40px);
}

.ws_benefit .grid_wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.ws_benefit .ws_benefit_card {
    padding: 32px;
    background: #FFFFFF;
    border: 1px solid #BDD7D3;
    border-radius: 16px;
    transition: all .3s ease-in-out;
    height: 100%;
    position: relative;
    z-index: 1;
}

.ws_benefit .ws_benefit_card::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F6FFFA;
    transition: all .5s ease-in-out;
    z-index: -1;
}

.ws_benefit .ws_benefit_card:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.ws_benefit .ws_benefit_card:hover {
    border: 1px solid #2E8E5B;
    box-shadow: 2px 4px 32px rgba(46, 142, 91, 0.07);
    cursor: default;
}

.ws_benefit .ws_benefit_card .ws_benefit_header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    min-height: 55px;
}

/* Benefit Css End */


/* Ws Dev Process Start  */
.ws_dev_process {
    background-color: #EEF8F4;
}

.ws_dev_process .grid_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    background-color: var(--text_white);
    padding: 80px 50px;
    border-radius: 16px;
}

.ws_dev_process .grid_wrapper .ws_dev_stack {
    position: relative;
    padding-left: 30px;
    padding-bottom: 48px;
}

.ws_dev_process .grid_wrapper .ws_dev_stack:last-child {
    padding-bottom: 0;
}

.ws_dev_process .grid_wrapper .ws_dev_stack::before {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    background-color: #E7FBF0;
    border-radius: 50%;
    left: -15px;
    top: 3px;
    z-index: 3;
}

.ws_dev_process .grid_wrapper .ws_dev_stack.active::before {
    background-color: #ebf4ef;
}

.ws_dev_process .grid_wrapper .ws_dev_stack:not(:last-child):after {
    position: absolute;
    content: "";
    background-image: url('../images/dotted_line.svg');
    width: 2px;
    height: 100%;
    background-size: cover;
    left: -2px;
    top: 15px;
}

.ws_dev_process .grid_wrapper .ws_dev_stack h3 {
    color: #535A59;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}

.ws_dev_process .grid_wrapper .ws_dev_stack h3 span img {
    transition: all .3s ease-in-out;
}

.ws_dev_process .grid_wrapper .ws_dev_stack.active h3 span img {
    filter: brightness(0);
    transform: rotate(90deg);
}

.ws_dev_process .grid_wrapper .ws_dev_stack .content {
    display: none;
}

.ws_dev_process .grid_wrapper .ws_dev_stack p {
    color: #414C4B;
    padding-top: 23px;
}

.ws_dev_process .grid_wrapper .ws_dev_stack.active h3 {
    font-weight: 500;
    color: var(--text_black);
}

.ws_dev_process .grid_wrapper .ws_dev_stack.active h3::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background-color: var(--strong_mid);
    left: -39px;
    z-index: 4;
    border-radius: 50px;
    top: 8.8px;
}

.ws_dev_process .grid_wrapper .ws_dev_img {
    height: 100%;
}

.ws_dev_process .grid_wrapper .ws_dev_img img {
    display: block;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 575px) {
    .ws_benefit .grid_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Ws Dev Process End */

/* eCommerce Web Application Start */
.ws_app_section .header {
    text-align: center;
    margin-bottom: clamp(20px, 2.083vw, 40px);
}

.ws_app_section .grid_wrapper {
    padding: 38px 26px;
    background-color: rgba(244, 244, 244, 1);
    border-radius: 16px;
}

.ws_app_section .grid_wrapper .ws_app_gridbox {
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    display: grid;
    margin-bottom: 64px;
}

.ws_app_section .grid_wrapper .ws_app_gridbox:last-child {
    margin-bottom: 0;
}

.ws_app_section .grid_wrapper .ws_app_gridbox:nth-child(even) .ws_content_hoverbox {
    order: 2;
}

.ws_app_section .grid_wrapper .ws_app_gridbox:nth-child(even) .ws_img_hoverbox {
    order: 1;
}

.ws_app_section .ws_app_gridbox .ws_content_hoverbox .ws_app_card {
    margin-bottom: 24px;
    background-color: var(--text_white);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(189, 215, 211, 1);
    transition: all .3s ease-in-out;
}

.ws_app_section .ws_app_gridbox .ws_content_hoverbox .ws_app_card.hovered,
.ws_app_section .ws_app_gridbox .ws_content_hoverbox .ws_app_card:hover {
    background: #F6FFFA;
    border: 1px solid var(--strong_mid);
    box-shadow: 2px 4px 32px rgba(46, 142, 91, 0.07);
    cursor: default;
    transform: scale(0.99);
}

.ws_app_section .ws_app_gridbox .ws_content_hoverbox .ws_app_card h3 {
    margin-bottom: 16px;
}

.ws_app_section .ws_app_gridbox .ws_content_hoverbox .ws_app_card:last-child {
    margin-bottom: 0px;
}

.ws_app_section .ws_app_gridbox .ws_img_hoverbox {
    background-color: var(--text_white);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* eCommerce Web Application End */


/* Web Solution Page Design End */


.scroll-arrow {
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    padding: 0;
    display: none;
}

.scroll-arrow img {
    width: 20px;
    object-fit: contain;
}


@media(max-width: 1536px) {
    .web_solution_banner {
        min-height: 615px;
    }
}

@media (max-width: 1440px) {
    .web_solution_banner {
        min-height: 578px;
    }
}

@media (max-width: 1366px) {
    .web_solution_banner {
        min-height: 545px;
    }
}

@media(max-width: 1280px) {
    .web_solution_banner .web_solution_herobox {
        max-width: 45%;
        width: 100%;
    }
}

@media(max-width: 1200px) {

    header {
        padding: 8px 0;
    }

    header.scrolled {
        position: fixed;
        top: 0;
        width: 100%;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
    }

    .logo .hambar {
        display: block;
    }

    header nav .menu {
        position: fixed;
        content: "";
        top: 68px;
        left: 0;
        width: 100%;
        height: calc(100vh - 68px);
        padding: 0 20px;
        transform: translateX(100%);
        transition: all .3s ease-in;
        z-index: 99;
        background-color: var(--primary_bg);
        overflow-y: auto;
    }

    header nav .menu.active {
        transform: translateX(0);
    }

    header nav .menu ul li {
        display: block;
        margin: 25px 0;
    }

    header nav .menu ul li:last-child {
        margin-left: 0;
    }

    header nav .menu ul li:not(:last-child) {
        padding: 0;
        margin-right: 0;
    }

    header.scrolled nav .menu ul li:not(:last-child) {
        padding: 0;
    }

    header ul li.has_submenu .submenu {
        position: relative;
        display: none;
        left: unset;
        transform: unset !important;
        margin: 15px 0;
        width: 100%;
        min-width: unset;
        opacity: unset;
        visibility: unset;
        display: none;
        transition: unset;
    }

    header nav .menu ul li:not(:last-child) a {
        display: flex;
        justify-content: space-between;
    }

    header ul li.has_submenu>a>span {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header ul li.has_submenu>a>span>img {
        width: 15px;
    }

}

@media(max-width: 1024px) {
    .web_solution_banner {
        min-height: 406px;
    }

    .ws_app_section .grid_wrapper .ws_app_gridbox {
        grid-template-columns: repeat(1, 1fr);
    }

    .ws_app_section .grid_wrapper .ws_app_gridbox:nth-child(even) .ws_content_hoverbox {
        order: 1;
    }

    .ws_app_section .grid_wrapper .ws_app_gridbox:nth-child(even) .ws_img_hoverbox {
        order: 2;
    }
}

@media(max-width: 991px) {

    .readymade_grocery .grocery_wrapper .grocerybox .grocery_content {
        flex: 1;
    }

    .readymade_grocery .grocery_wrapper .grocerybox:nth-child(even) .grocery_img img,
    .readymade_grocery .grocery_wrapper .grocerybox .grocery_img img {
        left: unset;
    }

    .insight_section .grid_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight_section .grid_wrapper .grid_item:first-of-type .insight_card {
        display: block;
    }

    .insight_section .grid_wrapper .grid_item:first-of-type .insight_img {
        margin-bottom: 16px;
    }

    .blog_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .single_detail .grid-2 aside,
    .blog_wrapper aside {
        display: none;
    }

    .blog_post_container ul.latest-post-list {
        max-width: 100%;
    }

    .blog_sidebar {
        display: none;
    }

    .grid-3.search {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 820px) {

    .readymade_grocery .grocery_wrapper .grocerybox:nth-child(even),
    .readymade_grocery .grocery_wrapper .grocerybox .grocerybox_wrap {
        flex-direction: column;
    }

    .readymade_grocery .grocery_wrapper .grocerybox .link_box {
        text-align: center;
    }

    .web_solution_banner .web_solution_herobox {
        margin-bottom: 60px;
        max-width: max-content;
        text-align: center;
    }

    .web_solution_banner .web_solution_heroimg {
        position: relative;
        content: unset;
        right: unset;
        top: unset;
        transform: unset;
        width: 100%;
        margin: 0 auto;
    }

    .web_solution_banner .web_solution_heroimg img.obj_position {
        width: 52%;
    }

    .ws_dev_process .grid_wrapper {
        padding: 30px;
        grid-template-columns: repeat(1, 1fr);
    }

    .ws_dev_process .grid_wrapper .ws_dev_stack h3 span {
        display: flex;
    }

    .ws_dev_process .grid_wrapper .ws_dev_stack {
        padding-bottom: 28px;
    }
}

@media(max-width: 767px) {
    .display_large {
        line-height: 126%;
        letter-spacing: -0.03em;
    }

    .display_medium {
        line-height: 129%;
        letter-spacing: -0.02em;
    }

    .display_small {
        line-height: 133%;
        letter-spacing: -0.01em;
    }

    .heading_large {
        line-height: 153%;
        letter-spacing: initial;
    }

    .heading_medium {
        line-height: 134%;
        letter-spacing: initial;
    }

    .heading_small {
        line-height: 146%;
        letter-spacing: initial;
    }

    .title_large {
        line-height: 140%;
    }

    .title_medium {
        line-height: 155%;
    }

    .title_small {
        line-height: 150%;
    }

    .p_18 {
        line-height: 150%;
    }

    .p_16 {
        line-height: 143%;
    }

    .p_14 {
        line-height: 133%;
    }

    footer .grid_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    footer .grid_wrapper .grid_item:last-child {
        text-align: start;
        justify-content: start;
    }

    footer .footer_links ul {
        justify-content: start;
        flex-direction: column;
        align-items: start;
    }

    footer .footer_content .footer_social_icon {
        justify-content: start;
    }

    footer .footer_bottom {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }



    .hero_banner .flex_wrapper {
        flex-direction: column;
    }

    .hero_banner .flex_wrapper .flex_item:first-of-type {
        padding-top: 0;
    }



    .readymade_grocery .header {
        text-align: start;
    }

    .readymade_grocery .grocery_wrapper .grocerybox .grocery_content ul li {
        padding-left: 24px;
    }

    .getting_start .tab_list_parent li.theme_btn,
    .readymade_grocery .homepage_tab_wrapper .tab_list_parent ul li {
        padding: 8px 14px;
        font-size: 14px;
    }

    .readymade_grocery .grocery_wrapper .grocerybox .grocery_content .grocery_vtabs .vtab_card .vtab_img {
        width: 35px;
        height: 35px;
    }

    .readymade_grocery .grocery_wrapper .grocerybox .grocery_content .grocery_vtabs .vtab_card .vtab_img img {
        width: 18px;
        height: 18px;
    }

    .readymade_grocery .grocery_wrapper .grocerybox .grocery_content ul li::before {
        width: 16px;
        height: 16px;
        top: 05px;
        transform: translateY(0);
    }

    .insight_section .grid_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .insight_section .grid_wrapper .insight_content h3 {
        min-height: unset;
        display: block;
    }

    .insight_section .grid_wrapper .grid_item:first-of-type .insight_content h3 {
        margin: 8px 0;
    }

    .cta_section .cta_box {
        padding: 30px 15px;
    }

    .getting_start .flex_wrapper .flex_item {
        position: static;
        top: unset;
    }

    .getting_start .flex_wrapper .flex_item .flex_box {
        flex-direction: column;
        gap: 20px;
    }

    .faq_section .header h2,
    .insight_section .header h2,
    .getting_start .header {
        text-align: start;
    }

    .center {
        justify-self: start;
    }

    .testimonial_section .testimonial_card .next_slide,
    .testimonial_section .testimonial_card .prev_slide {
        left: 40%;
    }

    .testimonial_section .testimonial_card .next_slide {
        left: 50%;
    }

    .readymade_grocery .grocery_wrapper .grocerybox:nth-child(odd) {
        flex-direction: column;
    }

    .grocery_wrapper {
        display: grid;
        gap: 40px;
    }

    .readymade_grocery .homepage_tab_wrapper .tab_list_parent ul li {
        min-width: auto;
    }

    .key_section .header,
    .unique_section .header,
    .common_banner .header {
        text-align: start !important;
    }

    .blog_post_container .blog_postdata:first-of-type ul.latest-post-list li:first-of-type {
        grid-area: auto;
    }

    .single_detail .grid-2,
    .blog_post_container ul.latest-post-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-3.search {
        grid-template-columns: repeat(1, 1fr);
    }

    .number_flex {
        padding: 5px !important;
    }

    .number_section .grid_wrapper .grid_item:nth-child(3) .backimg,
    .number_section .grid_wrapper .grid_item:nth-child(2) .backimg {
        width: 35% !important;
    }

    .getting_start .tab_list_parent li span {
        width: 25px;
        height: 25px;
    }

    .getting_start .flex_wrapper .flex_item {
        padding: 25px 15px 0;
    }

    .link_btn,
    .transparent_btn,
    .theme_btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .author_section .author_flex .author_icon img {
        width: 40px;
        height: 40px;
    }

    section.category_section {
        padding: 30px 0 0px 0;
    }

    .show_desktop {
        display: none !important;
    }

    .mobile-category-dropdown {
        display: block;
    }

    .hero_banner.modified .container .hero_banner_content .hero_box .hero_btn {
        flex-direction: column;
        gap: 8px;
    }

    .clone_section .header,
    .pricing_section .header {
        text-align: left;
    }

    .pricing_card_section .grid_wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .pricing_card_section .pricing_card .pricing_icon img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    .readymade_grocery .homepage_tab_wrapper .tab_list_parent ul {
        margin-bottom: 50px;
    }

    .scroll-arrow {
        display: flex;
        position: absolute;
        content: "";
        top: 50px;
        border: 1px solid var(--strong_high);
        background-color: var(--strong_high);
    }

    .scroll-arrow img {
        filter: invert(1);
    }

    .scroll-arrow.left-arrow {
        left: 40%;
        transform: translateY(0%) rotate(90deg);
    }

    .scroll-arrow.right-arrow {
        right: 40%;
        transform: translateX(40%) rotate(-90deg);
    }
}

@media(max-width: 575px) {
    .hero_banner .flex_wrapper .flex_item .hero_videobox .mobile_image {
        display: block;
        margin: 0 auto;
    }

    .hero_banner .flex_wrapper .flex_item .hero_videobox .dekstop_image {
        display: none;
    }

    /* .web_solution_banner .web_solution_heroimg img.obj_position{
        width: 182px;
    } */

}