/** Shopify CDN: Minification failed

Line 108:12 Expected identifier but found whitespace
Line 108:13 Unexpected "700"

**/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*,
:before,
:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --blue: #001B4B;
  --light-blue: #33496F;
  --btn-color-mix: linear-gradient(180deg,#ff8949,#ff6b1b);
  --btn-color: #6179FA;
  --banner-color: #FEF0E5;
  --font-Poppins: 'Poppins', sans-serif;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-medium: 500;
}

html {
	font-size: 62.5%;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	font-size: 16px;
	line-height: 1.5 !important;
	font-weight: normal !important;
	color: var(--black);
	font-family: var(--font-Poppins) !important;
	letter-spacing: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

.h0 span,
.h1 span,
.h2 span,
.h3 span,
.h4 span,
.h5 span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
.h0 i,
.h1 i,
.h2 i,
.h3 i,
.h4 i,
.h5 i,
h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
.h0 em,
.h1 em,
.h2 em,
.h3 em,
.h4 em,
.h5 em,
h1 em,
h2 em,
h3 em,
h4 em,
h5 em {
	font-family: var(--font-Poppins)!important;
	color: var(--black)!important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	color: var(--blue)!important;
	font-family: var(--font-Poppins)!important;
    font-weight: var(--font-weight-bold)!important;
	line-height: 1.2!important;
	text-transform: inherit!important;
	letter-spacing: normal!important;
	margin: 0 0 15px!important;
}

font-weight: 700;

p {
	font-family: var(--font-Poppins)!important;
	color: var(--black);
	margin: 0 0 15px 0;
}

p:last-child {
	margin-bottom: 0;
}

p:empty {
	display: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

img {
	display: block;
	max-width: 100%;
}

video,
iframe {
	display: block;
	width: 100%;
}

a {
	color: var(--btn-color);
	-webkit-transition: ease 0.45s;
	transition: ease 0.45s;
}

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

:focus,
:focus-visible {
	outline: none !important;
}


/* firast hero banner section css start */
.indexBannerWrap {
    padding: 4rem 0;
}
.indexBannerMain {
  background:var(--banner-color);
  text-align: center;
  padding: 4rem;
  border-radius: 32px;
  margin: 0 auto;
}

.banner-content p {
    font-weight: var(--font-weight-medium);
    color: var(--light-blue);
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0.2px;
    text-align: center;
}
.headingWrap .banner-btn {
  margin-bottom: 1.5rem;
}

.headingWrap .banner-btn .btn {
    color: var(--white);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    max-width: 189px;
    width: 100%;
    background: var(--btn-color-mix);
    border-radius: 32px;
    justify-content: center;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
}
.banner-footer-btn .btn {
    transition: all 0.3s ease;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    gap: 10px;
    width: 200px;
    background: var(--btn-color);
    border-radius: 32px;
    color: #fff;
    font-weight: var(--font-weight-semibold);
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.2px;
}

.banner-img-wrap {
    margin: 3.2rem 0;
}
.banner-img-wrap img {
    max-height: 292px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: contain;
}
.banner-footer-btn span {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.2px;
    text-align: center;
    color: #667693;
    margin-top: 0.8rem;
    display: block;
}
/* firast hero banner section css end */

/* 2nd section  Feature Cards Section starts here */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
    background: #F9FAFF;
    padding: 4rem;
    max-width: 580px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 447px;
    height: 100%;
    border-radius: 24px;
}
.feature-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 6px 24px rgba(0,0,0,0.08); */
}
.feature-card .feature-title {
    font-weight: var(--font-weight-bold);
    font-size: 24px;
    line-height: 100%;
    text-align: center;
}
p.feature-text {
    line-height: 1.3;
}
.feature-text {
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: var(--light-blue);
}
/* 2nd section  Feature Cards Section ends here */

/* 3rd section how it's work css start */
.how-it-works {
    padding: 2.2rem 0 6rem;
}
p.announcement-bar__message.h5 {
    margin: 0!important;
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
h2.hiw-title {
    padding-bottom: 4rem;
    margin-bottom: 0!Important;
}
.hiw-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    gap: 11.28px;
    background: #FFFBF9;
    border-radius: 24px;
}
h3.hiw-card-title {
    font-weight: var(--font-weight-semibold)!important;
    font-size: 19.33px;
    letter-spacing: 0.27px!important;
    margin: 0!important
}
p.hiw-card-text {
    font-weight: var(--font-weight-medium)!important;
    color: var(--light-blue)!important;
    font-size: 17.18px;
    line-height: 1.5;
    letter-spacing: 0.27px;
}
/* 3rd section how it's work css end */

/* 4th section video css start*/

.meal-video-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    margin: 0 0 7rem 0;
}
.vdo-wrap {
    display: flex;
    position: relative;
    padding-top: 56.25%;
    height: 0;
    line-height: 0;
    overflow: hidden;
}
.vdo-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 24px
}

.meal-video-wrap .thumb-btn-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
}
.meal-video-wrap .thumb-btn-wrap .thumb-sec {
    line-height: 0;
    display: flex;
    width: 100%;
}
.meal-video-wrap .thumb-btn-wrap .vdo-btn-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.meal-video-wrap .thumb-btn-wrap .vdo-btn-wrap:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background: url('https://cdn.shopify.com/s/files/1/0693/2132/6636/files/Group_20.png?v=1758282838') no-repeat center center;
    background-size: contain;
    pointer-events: none;
}
.meal-video-wrap .thumb-btn-wrap .vdo-btn-wrap .vdo-btn {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    color: var(--whiteColor);
    cursor: pointer;
    transition: all ease-in-out .3s;
    padding: 0;
    border-radius: 50%;
}
.thumb-sec img {
    border-radius: 24px;
    height: 100%;
}
/* 4th section video css end*/

/* 5th last section starts from here */
section.app-banner {
    background-image: linear-gradient(to right, #001B4B, #6179FA);
}
.app-banner-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    gap: 20px;
}
.app-banner-left {
    max-width: 70%;
    /* padding: 5.7rem 0; */
}
/* .app-banner-right {
    margin-top: -84px;
    z-index: 1;
    position: absolute;
    right: 50px;
} */
.app-banner-left h2 {
    line-height: 1.5;
    color: var(--white)!important;
}
.playIcons {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.playIcons {
    display: none;
}
.app-banner-left p {
    font-weight: var(--font-weight-medium)!important;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0px;
    color: var(--white);
}
.store-buttons img {
  height: 50px;
  margin-right: 10px;
}
.app-banner-right img {
  max-width: 100%;
  height: auto;
}
.app-banner-right {
    margin-top: -100px;
    z-index: 1;
}

/* 5th last section ends  here */

/* footer css */
.newsHeading h4 {
    color: #fff!important;
}
.grid__item h2 {
    color: #fff!important;
}