/* 1. Theme default css */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /* fonts */
  --poppins: "Poppins", sans-serif;

  /* colors */
  --white-color: #fff;
  --black-color: #000;

  --primery-color: #fe710b;
  --secondry-color: #3a83e9;
  --hover-primery-color: #ffae74;

  --body-text-color: #363636;
  --heading-color: #000000;

  /* shadow */
  --shadow-1: 0px 8px 15px rgba(25, 40, 61, 0.08);
}
body {
  font-family: var(--poppins) !important;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: var(--body-text-color);
  overflow-x: hidden;
}
.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}
.f-left {
  float: left;
}
.f-right {
  float: right;
}
.fix {
  overflow: hidden;
}
a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}
a:focus,
a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
  color: #2b96cc;
  text-decoration: none;
}
a,
button {
  color: #1696e7;
  outline: medium none;
}
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--poppins) !important;
  font-weight: normal;
  color: var(--heading-color);
  margin-top: 0px;
  font-style: normal;
  font-weight: 600;
  text-transform: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 46px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
ul {
  margin: 0px;
  padding: 0px;
}
li {
  list-style: none;
}
p {
  font-weight: normal;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 28px;
  color: var(--body-text-color);
}
hr {
  border-bottom: 1px solid #eceff8;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}
label {
  color: var(--body-text-color);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}
*::-moz-placeholder {
  color: var(--body-text-color);
  font-size: 16px;
  opacity: 1;
}
*::placeholder {
  color: var(--body-text-color);
  font-size: 16px;
  opacity: 1;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

.bg-footer {
  background-color: #292d32;
}

.bg-primery {
  background-color: var(--primery-color) !important;
}
.bg-secondry {
  background-color: var(--secondry-color) !important;
}
.bg-light-blue {
  background-color: #ebf3fd !important;
}
.bg-white {
  background-color: var(--white-color) !important;
}
.bg-dark {
  background-color: var(--black-color) !important;
}

.bg-light-orange {
  background-color: #fff3e5 !important;
}

.white-text {
  color: #fff !important;
}
.black-text {
  color: var(--black-color) !important;
}
.primery-text {
  color: var(--primery-color) !important;
}
.secondry-text {
  color: var(--secondry-color) !important;
}

/* button style */

.f-btn {
  -moz-user-select: none;
  background: var(--primery-color);
  border: medium none;
  border-radius: 50px;
  color: var(--white-color);
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 1;
  margin-bottom: 0;
  padding: 18px 70px;
  text-align: center;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}

.subscribe-box .f-btn {
  padding: 16px 40px;
}

.f-btn:hover {
  color: var(--white-color);
  background-color: var(--hover-primery-color);
}

.f-btn.f-btn-secondry {
  background-color: var(--secondry-color);
}
.f-btn.f-btn-secondry:hover {
  background-color: var(--primery-color);
  color: var(--white-color);
}

.f-btn.f-btn-borderd {
  background-color: transparent;
  border: 1px solid #fff;
}
.f-btn.f-btn-borderd:hover {
  background-color: var(--primery-color);
  color: var(--white-color);
  border-color: var(--primery-color);
}

.breadcrumb > .active {
  color: #888;
}

/* f-check-box */
.f-checkbox input {
  display: none;
}
.f-checkbox label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #363636;
  font-size: 16px;
}
.f-checkbox label span {
  height: 22px;
  width: 22px;
  border: 1px solid #e0c4b0;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  border-radius: 50%;
}
.f-checkbox label span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background-color: var(--primery-color);
  transform: translate(-50%, -50%);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.f-checkbox input:checked ~ label span {
  border-color: var(--primery-color);
}
.f-checkbox input:checked ~ label span::after {
  opacity: 1;
  visibility: visible;
}

.f-checkbox-round input {
  display: none;
}
.f-checkbox-round label {
  font-size: 16px;
  color: #363636;
  display: inline-flex;
  align-items: center;
}
.f-checkbox-round label span {
  height: 22px;
  width: 22px;
  border: 1px solid #e0c4b0;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  transition: 0.3s;
}
.f-checkbox-round label span::after {
  width: 13px;
  height: 9px;
  background-image: url("../../images/new-layout/img/icons/check-sm-white.svg");
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.f-checkbox-round input:checked ~ label span {
  border-color: var(--primery-color);
  background-color: var(--primery-color);
}
.f-checkbox-round input:checked ~ label span::after {
  opacity: 1;
  visibility: visible;
}

/* f-check-box-end */

/* site-selct- */

.site-select .nice-select {
  width: 100%;
  /*line-height: 52px;*/
  height: 52px;
  font-size: 20px;
  font-weight: 500;
  padding-left: 23px;
  background-color: var(--white-color);
  border-radius: 10px;
  border: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.site-select .nice-select::after {
  width: 22px;
  height: 22px;
  border: none !important;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../../images/new-layout/img/icons/arrow-down-b.svg");
  transform: rotate(0deg);
  top: 20px;
  right: 22px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.site-select .nice-select.open::after {
  transform: rotate(180deg);
  top: 11px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.site-select .nice-select .list {
  width: 100%;
  display: inline;
}

.home-page .site-select .nice-select {
  background-color: #f6f6f6 !important;
  font-size: 18px;
}

.home-page .site-select .nice-select::after {
  background-image: url("../../images/new-layout/img/icons/arrowBlack.svg") !important;
}

/* site-selct-end */

/* font-wight */
.fw-smibold {
  font-weight: 600;
}

/* font-wight-end */

/* section-default-items-css */
.section-padding {
  padding-top: 45px;
  padding-bottom: 20px;
}
.section-title {
  margin-bottom: 30px;
}
.section-title h2 {
  display: inline-block;
  padding: 0px 30px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 0px;
}

/* section-default-items-css-end */

/* owl-carosel */
.owl-carousel .owl-stage-outer {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 35px;
}
.owl-nav {
  width: 100%;
}
.owl-nav button {
  top: 50%;
  position: absolute;
  margin-top: -25px;
  left: calc(0px - 10px);
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: #fe710b1a !important;
}
.owl-nav button.owl-next {
  left: auto;
  right: calc(0px - 10px);
}

/* owl-carosel-end */

/* header-css */

.header-top {
  background-color: #ff8c06;
}
.header-nav ul li {
  padding: 34px 26px;
}
.header-nav ul li a {
  display: inline-block;
  padding: 0px 0px;
  color: var(--white-color);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
.header-nav ul li a:hover,
.header-nav ul li a:focus {
  color: var(--primery-color);
}
.header-cart a {
  display: inline-block;
  height: 44px;
  width: 44px;
  background: rgba(255, 255, 255, 0.41);
  /*line-height: 44px;*/
  text-align: center;
  position: relative;
  border-radius: 50%;
}
.header-nav ul li a::after {
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 20px;
  height: 3px;
  content: "";
  background-color: var(--primery-color);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  opacity: 0;
  visibility: hidden;
}
.header-nav ul li.active a {
  color: var(--primery-color);
}
.header-nav ul li.active a::after {
  opacity: 1;
  visibility: visible;
}

/* offcanvas-start */
.offcanvas-wrapper {
  height: 100%;
  position: fixed;
  right: -280px;
  top: 0px;
  width: 280px;
  padding: 25px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  z-index: 12;
  background-color: var(--white-color);
}
.offcanvas-wrapper.active {
  right: 0px;
}

.offcanvas-close .close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.offcanvas-close .close img {
  max-width: 18px;
}
.offcanvas-menu ul li a {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--black-color);
  display: block;
  padding: 10px 0px;
  text-decoration: none;
}
.offcanvas-menu ul li:hover a,
.offcanvas-menu ul li.active a {
  color: var(--primery-color);
}

.offcanvas-menu {
  margin-top: 100px;
}

.offcanvas-menu .close img {
  width: 20px;
}

/* offcanvas-end */

/* header-css-end */

/* post-box-input */
.post-box input {
  height: 62px;
  width: 100%;
  background-color: var(--white-color);
  padding: 0px 30px;
  padding-right: 55px;
  color: var(--black-color);
  border: none;
  border-radius: 50px;
}
.post-box input::placeholder {
  font-weight: 500;
  color: var(--black-color);
}
.post-box button {
  border: none;
  background-color: var(--primery-color);
  height: 48px;
  width: 48px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  position: absolute;
  right: 7px;
  top: 7px;
}

/* subscribe-box-input-end */

/* .hero-content .subscribe-box {
	width: 100%;
	max-width: none;
} */
.subscribe-box input {
  padding: 12px 70px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 40px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.subscribe-box input::placeholder {
  font-weight: 500;
  color: var(--black-color);
}
.subscribe-box button.disabled {
  background-color: var(--hover-primery-color) !important;
  color: white !important;
  cursor: not-allowed;
}

/* m-menu */
.m-menu span.bar img {
  height: 35px;
  width: 35px;
}
.m-menu span.bar {
  display: inline-block;
  cursor: pointer;
}

/* m-menu-end */

/* hero-area */
.hero-area {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 110px 0 60px;
}

.hero-content {
  background: linear-gradient(
    90.37deg,
    rgba(0, 0, 0, 0.02) 0.34%,
    rgba(255, 255, 255, 0) 99.71%
  );
  backdrop-filter: blur(14px) contrast(100%);
  -webkit-backdrop-filter: blur(14px) contrast(100%);
  border-radius: 20px;
  max-width: 756px;
  padding: 40px;
  border: 1px solid #0000001c;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.hero-content .banner-title {
  font-size: 48px;
  color: black;
  line-height: 52px;
  font-weight: 700;
  padding-bottom: 7px;
}

.hero-content .banner-top {
  font-size: 20px;
  line-height: 22px;
  padding-bottom: 20px;
}

.hero-content .banner-top img {
  padding-right: 12px;
}

.hero-content .banner-subtitle {
  font-size: 18px;
  color: black;
  line-height: 21px;
  padding-bottom: 20px;
}

.hero-content .banner-description .description-list {
  font-size: 16px;
  color: black;
  line-height: 20px;
  font-weight: 700;
  position: relative;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.hero-content .banner-description .description-list img {
  padding-right: 12px;
}

.hero-content .banner-description {
  /*display: flex;
	justify-content: space-between;
	padding-top: 10px;*/
}

.hero-content .banner-button {
  padding-top: 15px;
}

.hero-content .banner-button a {
  position: relative;
  padding-right: 75px !important;
  background: black !important;
}

.hero-content .banner-button a::after {
  content: ""; /* Necessary for the pseudo-element to display */
  position: absolute;
  top: 50%; /* Centers the arrow vertically */
  right: 10%; /* Positions the arrow to the right */
  transform: translateY(-50%); /* Centers the arrow vertically */
  width: 40px; /* Adjust the width of the arrow */
  height: 16px; /* Adjust the height of the arrow */
  background-image: url("../../images/new-layout/img/icons/white_arrow.svg") !important;
  background-repeat: no-repeat; /* Prevents repeating of the background image */
  background-position: center; /* Centers the background image */
}

.hero-content span.pre-title {
  display: inline-block;
  background: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  padding: 2px 20px;
  border-radius: 40px;
  margin-bottom: 30px;
}
.hero-content h1 {
  line-height: 64px;
  margin-bottom: 13px;
}
.hero-content p {
  font-size: 28px;
  line-height: 42px;
  color: #1a1414;
}
.hero-btns {
  margin-top: 38px;
  display: flex;
  justify-content: space-between;
  max-width: 496px;
  margin-bottom: 44px;
}
.hero-btns a.f-btn {
  padding: 20px 0px;
  width: 48%;
}
.hero-content .post-box {
  max-width: 496px;
}
/* hero-area-end */

/* service-items-css */
.service-item span {
  height: 60px;
  width: 60px;
  background: rgba(255, 255, 255, 0.4);
  line-height: 60px;
  font-weight: bold;
  color: var(--white-color);
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 26px;
  margin-right: 15px;
}
.service-item h4 {
  display: inline-block;
  font-size: 26px;
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
}
.service-item h4 img {
  margin-left: 18px;
}
/* service-items-css-end */

/* meal-plan-area-start */
.plan-padding.section-padding {
  /*padding-top: 90px;*/
}
.plan-area .section-title {
  margin-bottom: 35px;
}
.plan-card {
  background: var(--white-color);
  box-shadow: 0px 8px 15px rgba(25, 40, 61, 0.08);
  border-radius: 20px;
  margin-bottom: 40px;
}
.plan-img {
  height: 320px;
  width: 100%;
}
.plan-img img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.plan-content {
  padding: 25px 20px 25px 20px;
  text-align: center;
}
.plan-content h4 {
  font-size: 22px;
  color: var(--black-color);
  margin-bottom: 25px;
}
.plan-content a.f-btn {
  padding: 15px 0px;
}
/* meal-plan-area-end */

/* meal-area */
#payment-sec {
  margin-top: 65px;
}
#card-error small {
  color: red !important;
}
.meal-area {
}
.meal-area .meal-arrow-top {
  position: absolute;
  right: 75px;
  top: -65px;
}
.meal-area.meal-popular {
}
.meal-area.section-title {
}

.meal-card {
  background-color: var(--white-color);
  border-radius: 20px;
  box-shadow: var(--shadow-1);
}
.meal-card-header span.f-badge {
  position: absolute;
  left: 18px;
  top: -21px;
  padding: 5px 15px;
  background: var(--secondry-color);
  font-weight: 600;
  color: var(--white-color);
  border-radius: 16px;
  display: inline-block;
}
.meal-card-header span.f-badge.f-badge-onsale {
  background-color: #0ccd09;
  left: auto;
  right: 10px;
}
.meal-card-header span.f-badge.f-badge-low {
  background-color: var(--secondry-color);
  left: auto;
  right: 10px;
}
.meal-card-header span.cart-item {
  padding: 7px 15px;
  background: var(--primery-color);
  font-weight: 600;
  color: var(--white-color);
  border-radius: 16px;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: -21px;
  font-size: 22px;
}
.meal-card-header span.cart-item img {
  margin-right: 10px;
}
.meal-card-header span.cart-item {
}
.cart-item {
}
.cart-item {
}

.meal-card-header span.m-card-ratting {
  position: absolute;
  right: 10px;
  bottom: 30px;
  padding: 7px 18px;
  background: var(--secondry-color);
  font-weight: 600;
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  border-radius: 16px;
  font-size: 18px;
}
.meal-card-img {
  height: 230px;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.meal-card-header span.m-card-ratting img {
  max-width: 18px;
  margin-right: 8px;
  margin-top: -1px;
}
.meal-card-img img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  object-fit: cover;
  object-position: center;
}
.meal-card-content {
  padding: 15px 20px 27px 20px;
}
.meal-card-title {
  height: 80px;
  overflow: hidden;
}
.meal-card-title h6 {
  line-height: 28px;
}
.meal-card-title h6 a {
  text-decoration: none;
}
.meal-card-title h6 a:hover {
  color: inherit;
}

.meal-card-meta {
  column-count: 2;
  margin-bottom: 18px;
}
.meal-card-meta li {
  padding: 8px 0px;
  line-height: 1;
  font-size: 14px;
  position: relative;
}
.meal-card-meta li span {
  position: absolute;
  left: 70px;
  top: 9px;
  font-weight: 600;
  color: #000000;
}

.meal-card-bottom {
}

.meal-card-price {
}
.meal-card-price h5 {
  font-size: 22px;
  color: var(--black-color);
}
.meal-card-price h5 del {
  display: block;
  color: #ff0404;
  font-size: 18px;
  font-weight: normal;
}

.meal-card-qty .qty .nice-number {
  width: 85px;
  height: 50px;
  background: #fff8f3;
  border: 1px solid #fe710b;
  border-radius: 60px;
  /*display: flex;*/
}
.meal-card-qty .qty .nice-number button {
  border: none;
  background-color: transparent;
  width: 40px;
  padding: 0px !important;
  font-weight: normal;
  color: var(--black-color);
  font-size: 20px;
}

.meal-card-qty .qty .nice-number input {
  border: none;
  background-color: transparent;
  font-size: 20px;
  font-weight: 500;
  color: var(--primery-color);
  width: 10px;
}

.meal-card-qty button.meal-card-button {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  content: "";
  background-color: var(--primery-color);
  line-height: 50px;
  border: none;
  margin-left: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.meal-card-qty button.meal-card-button.meal-item-remove {
  background-color: transparent;
  border: 1px solid var(--primery-color);
}
.meal-card-qty button.meal-card-button.meal-item-remove:hover {
  background-color: #fff8f3;
}
.meal-card-qty button.meal-card-info {
  background-color: transparent;
  border: none;
  padding: 0px;
  margin-left: 18px;
}

.meal-card-qty button.meal-card-button img {
  width: auto !important;
}
.meal-card-qty button.meal-card-button:hover {
  background-color: var(--hover-primery-color);
}

.meal-slide-active.owl-carousel .owl-stage-outer {
  padding-top: 24px;
}
/* meal-area-end */

/* unsure-area */
.unsure-area.section-padding {
  padding-bottom: 60px;
}

.unsure-wrapper {
  background-color: #3a83e91a;
  padding: 60px 60px 90px;
  border-radius: 40px;
}

.unsure-content {
  max-width: 891px;
}
.unsure-desc {
  max-width: 712px;
  margin-bottom: 25px;
}
.unsure-content h2 {
  margin-bottom: 22px;
}
.unsure-desc p {
  font-size: 20px;
  line-height: 36px;
}

.unsure-gender p {
  font-size: 20px;
  margin-bottom: 44px;
}
.unsure-img span {
  height: 470px;
  width: 470px;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  background: #ffffff80;
  border-radius: 50%;
  padding-left: 31px;
  position: absolute;
  right: -25px;
  top: 58px;
  padding-top: 58px;
}
.unsure-shap {
  position: absolute;
  right: 48px;
  bottom: 0px;
}

.unsure-content-inner p.primery-text {
  font-size: 20px;
  margin-bottom: 20px;
}

/* unsure-area-end */

/* testimonial-area */
.testimonial-area.section-padding {
  padding-top: 60px;
  padding-bottom: 70px;
}
.testimonial-padding {
  padding-top: 100px;
  padding-bottom: 125px;
}

.testimonial-slide-active {
  max-width: 892px;
  margin: 0 auto;
}
.testimonial-item {
  background: #ffffff;
  border: 1px solid #b4c9e8;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 58px 40px;
  padding-left: 73px;
  max-width: 892px;
  margin: 0 auto;
}
.testimonial-author-img {
  height: 106px;
  width: 106px;
  margin-right: 30px;
}
.testimonial-author-img img {
  border: 6px solid rgba(254, 113, 11, 0.4);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author-info h4 {
  font-size: 26px;
  margin-bottom: 13px;
}
.testimonial-header {
  margin-bottom: 20px;
}

.testimonial-desc::after,
.testimonial-desc::before {
  position: absolute;
  left: -32px;
  width: 65px;
  height: 57px;
  background-image: url("../../images/new-layout/img/testimonial/qoute.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  top: 0px;
}
.testimonial-desc::before {
  right: 0px;
  bottom: 0px;
  transform: rotate(180deg);
  left: auto;
  top: inherit;
}
.autor-rating img {
  max-width: 22px;
  width: 100% !important;
  display: inline-block !important;
}
.testimonial-slide-active.owl-carousel .owl-stage-outer {
  padding: 0px;
  margin: 0px;
  overflow: inherit !important;
}
.testimonial-slide-active.owl-carousel .owl-nav button {
  left: -25px;
  background-color: var(--primery-color) !important;
}
.testimonial-slide-active.owl-carousel .owl-nav button.owl-next {
  right: -25px;
  left: auto;
}

/* testimonial-area-end */

/* secret-area */

.secret-area.section-padding {
  padding-top: 60px;
}

.secret-item {
  background: var(--white-color);
  box-shadow: 0px 8px 24px rgba(25, 40, 61, 0.08);
  border-radius: 30px;
  min-height: 520px;
  margin-bottom: 40px;
}

.secret-icon {
  position: relative;
  height: 320px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secret-icon img.secret-icon-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.secret-content {
  padding: 15px 40px;
  text-align: center;
}
.secret-content h5 {
  font-size: 22px;
  margin-bottom: 13px;
}
.secret-content p {
  margin-bottom: 0px;
}

/* secret-area-end */

/* about-home */

.about-home.section-padding {
  padding-top: 45px;
}
.about-home .section-title {
  margin-bottom: 45px;
}
.about-shap-1 {
  left: 80px;
  top: -100px;
}
.about-shap-2 {
  right: 30px;
  top: 562px;
}

.about-h-item {
  background: var(--white-color);
  box-shadow: 0px 8px 24px rgba(25, 40, 61, 0.08);
  border-radius: 30px;
  padding: 50px;
  margin-bottom: 40px;
  position: relative;
}
.about-h-img {
  flex: 0 0 auto;
  width: 580px;
}
.about-h-img img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}
.about-h-content {
  padding: 40px 10px 0 100px;
}
.about-h-content h3 {
  margin-bottom: 18px;
}
.about-h-content .about-h-desc p {
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
}
.about-h-content .about-h-desc {
  position: relative;
}
.about-h-content .about-h-desc::after {
  position: absolute;
  left: -35px;
  top: 0px;
  width: 5px;
  height: 100%;
  content: "";
  background-color: var(--primery-color);
}

.about-h-item.about-h-item-left .about-h-content {
  padding-left: 50px;
  padding-right: 55px;
}
/* about-home-end */

/* serve-area */

.serve-area.section-padding {
  padding-bottom: 60px;
}
.serve-area .section-title {
  margin-bottom: 55px;
}

.mini-menu {
  background: rgba(254, 113, 11, 0.8);
  padding: 0px 30px;
  border-radius: 50px;
}
.mini-menu li {
  padding: 15px 0px;
}
.mini-menu li a {
  font-size: 22px;
  color: var(--white-color);
  font-weight: 500;
  display: inline-block;
  padding: 0px 20px;
  position: relative;
  text-decoration: none;
}
.mini-menu li a::after {
  position: absolute;
  right: 0px;
  top: 0px;
  content: "I";
  font-weight: normal;
}
.mini-menu li:last-child a::after {
  display: none;
}

.gmap_canvas {
  box-shadow: 0px 8px 24px rgba(25, 40, 61, 0.08);
}
#gmap_canvas {
  border-radius: 30px;
  box-shadow: 0px 8px 24px rgba(25, 40, 61, 0.08);
}

/* serve-area-end */

/* customer-area */

.customers-shap-1 {
  top: -150px;
  right: 79px;
}

.customers-padding {
  padding-top: 45px;
  padding-bottom: 50px;
}
.our-customers img {
  border-radius: 30px;
}

.customer-img {
  padding: 43px 48px;
  border-radius: 30px;
  box-shadow: 0px 8px 24px rgba(25, 40, 61, 0.08);
}

/* customer-area-end */

/* cta-area */

.cta-padding {
  padding-top: 40px;
  padding-bottom: 89px;
}
.cta-wrapper {
  background-color: #fe710bb3;
  border-radius: 30px;
  padding: 69px 20px;
  text-align: center;
}
.cta-content {
  max-width: 1200px;
  margin: 0 auto;
}
.cta-content .mini-menu {
  margin-bottom: 35px;
  background: rgba(255, 255, 255, 0.2);
}
.cta-content .mini-menu li a {
  font-size: 16px;
}
.cta-content h2 {
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 25px;
}
.cta-content p {
  font-size: 28px;
  line-height: 42px;
}
.cta-content .cta-btns {
  margin-top: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-content .cta-btns a {
  margin: 0px 8px;
}
.cta-shape-3 {
  top: 0px;
  right: 0px;
}
.cta-shape-2 {
  right: 0px;
  bottom: 0px;
}
.cta-shape-1 {
  left: -74px;
  bottom: -61px;
}
/* cta-area-end */

/* footer */
.footer {
  padding-bottom: 0px;
}
.footer-top {
  padding-top: 45px;
  padding-bottom: 20px;
}

.footer-menu li a {
  color: var(--white-color);
  text-decoration: none;
  font-size: 18px;
  padding: 15px 0px;
  display: block;
}
.footer-menu li a:hover {
  color: var(--primery-color);
}
.footer-menu li:first-child a {
  padding-top: 0px;
}
.footer-contact li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white-color);
  font-size: 18px;
  padding: 15px 0px;
}
.footer-contact li a:hover {
  color: var(--primery-color);
}
.footer-contact li a span {
  display: inline-block;
  width: 28px;
  display: inline-block;
}
.footer-newsletter h6 {
  margin-bottom: 18px;
}
.footer-newsletter p {
  margin-bottom: 25px;
}
.copy-text {
  border-top: 1px solid rgba(242, 242, 242, 0.4);
}

/* footer-end */

/* ===================== */
/*  Meal Page css -start
/* ===================== */
.meal-plan-hero {
  padding-top: 55px;
  padding-bottom: 65px;
}
.page-hero {
  min-height: 415px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-hero .unsure-wrapper {
  background: linear-gradient(
    94.64deg,
    rgba(255, 255, 255, 0.8) 1.45%,
    rgba(255, 255, 255, 0.5) 98.88%
  );
}

.layout-sh-1 {
  top: 30%;
  right: 48px;
  z-index: -1;
}
.layout-sh-2 {
  top: 70%;
  left: 48px;
  z-index: -1;
}
.layout-sh-3 {
  right: 0px;
  top: 15%;
  z-index: -1;
}

/* ===================== */
/*  Meal Page css -end
/* ===================== */

/* ===================== */
/*  menu Item Page css -start
/* ===================== */

.feature-item {
  flex: 0 0 auto;
  width: 144px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.feature-icon span img {
  /* padding-top: 12px; */
}

.feature-text h6 {
  line-height: 28px;
  color: var(--white-color);
  margin-bottom: 0px;
}

.menu-filter .site-select .nice-select {
  border: 1px solid #e2e2e2;
  border-radius: 50px;
  height: 46px;
  line-height: 46px;
  border-radius: 40px;
  font-size: 16px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
.menu-filter .site-select .nice-select::after {
  width: 16px;
  height: 16px;
  top: 19px;
  right: 22px;
}
.menu-filter .site-select {
  flex-grow: 1;
}

.menu-filter button {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
  margin-left: 12px;
  flex: 0 0 auto;
  background-color: transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.menu-filter .site-select .nice-select.open::after {
  top: 12px;
}
.menu-filter .site-select .nice-select.open {
  border-radius: 22px;
  border-bottom: none;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.menu-filter .site-select .nice-select .list {
  margin-top: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  box-shadow: none;
  border: 1px solid #e2e2e2;
  border-top: none;
}

.menu-items-padding {
  padding-top: 60px;
}

.cat-menu ul li {
  padding-right: 15px;
}
.cat-menu li a {
  display: inline-block;
  background: rgba(255, 140, 6, 0.1);
  padding: 6px 33px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: #ff8c06;
  border-radius: 40px;
  text-decoration: none;
}
.cat-menu li span {
  display: inline-block;
  background: rgba(255, 140, 6, 0.1);
  padding: 6px 33px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: #ff8c06;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
}
.cat-menu input:checked ~ label span {
  color: white;
  background: #ff8c06;
}

.cat-menu {
  scrollbar-width: none;
}
.cat-menu::-webkit-scrollbar {
  display: none;
}

.sidebar-widget {
  background-color: var(--white-color);
  box-shadow: 0px 8px 24px rgba(25, 40, 61, 0.08);
  padding: 24px 30px;
  border-radius: 24px;
  margin-bottom: 20px;
}
.widget-header {
  border-bottom: 1px solid #e6e6e6;
}
.widget-header h4 {
  margin-bottom: 18px;
}

.widget-content ul li {
  padding: 8px 0px;
}

.testimonial-item.testimonial-item-card {
  padding: 40px 35px 40px 40px;
  min-height: 464px;
}
.testimonial-item.testimonial-item-card .testimonial-desc {
  padding-left: 15px;
}
.mb-28 {
  margin-bottom: 28px !important;
}

.total-box {
  /*background: rgba(0, 0, 0, 0.2);*/
  backdrop-filter: blur(12px) contrast(100%);
  -webkit-backdrop-filter: blur(12px) contrast(100%);
  position: fixed;
  z-index: 999;
  padding: 15px 0px;
  bottom: 0;
  width: 100%;
}

.total-wrapper h2 {
  display: flex;
  align-items: center;
}
.total-wrapper h2 img {
  max-width: 60px;
  margin-right: 14px;
}

.total {
  font-weight: 600;
}

/* ===================== */
/*  menu Item Page css -end
/* ===================== */

/* ===================== */
/*  menu plane Page css -start
/* ===================== */
.menu-layout {
  padding-top: 25px;
  padding-bottom: 25px;
}
.menu-plane-item {
  flex: 0 0 auto;
  /*width: 26.3%;*/
}
.menu-plane-btn {
  flex: 0 0 auto;
  width: 100%;
  text-align: end;
}
.menu-plane-btn a.f-btn {
  padding: 16px 0px;
  flex: 0 0 auto;
  width: 100%;
  text-align: center;
}
.menu-plane-btn input.f-btn {
  width: inherit;
}

.menu-day {
  padding-top: 33px;
  padding-bottom: 33px;
}
.menu-day-header h3 {
  display: inline-block;
  padding: 5px 18px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: -18px;
}

.menu-day-slide.owl-carousel .owl-stage-outer {
  padding-top: 22px;
  margin-bottom: -35px;
}

.menu-day-header a.f-btn.f-btn-borderd {
  border-color: var(--primery-color);
  color: var(--primery-color);
  padding: 15px 30px;
  text-transform: inherit;
}
.menu-day-header a.f-btn.f-btn-borderd:hover {
  border-color: var(--secondry-color);
  background-color: var(--secondry-color);
  color: var(--white-color);
}

.plan-info {
  position: absolute;
  padding: 14px 18px;
  width: 100%;
  height: auto;
  bottom: 0px;
  left: 0px;
}
.plan-info p {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--white-color);
  text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 7px;
}
.plan-info p img {
  max-width: 18px;
  margin-left: 10px;
}
.plan-info .site-select .nice-select {
  line-height: 46px;
  height: 46px;
  font-size: 16px;
  font-weight: 500;
  padding-left: 18px;
}
.plan-info .site-select .nice-select::after {
  width: 15px;
  height: 17px;
}
.plan-info .site-select .nice-select.open::after {
  top: 13px;
}

.menu-sh-1 {
  right: 40px;
  top: 70%;
  z-index: -1;
}
.menu-sh-2 {
  top: 40%;
  right: 50px;
  z-index: -1;
}
.f-checkbox.active label span::after {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu.show {
  display: block;
  text-color: white;
  padding: 5px;
}
.floating-checkout {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px) contrast(100%);
  -webkit-backdrop-filter: blur(12px) contrast(100%);
  position: fixed;
  z-index: 999;
  width: 100%;
  border: 0px;
}
.floating-checkout ul li {
  color: var(--primery-color);
}
.floating-checkout ul li .total-price {
  color: black !important;
}
.floating-checkout ul li.total::after {
  border-right: 3px solid var(--primery-color);
}

.btn-primary {
  color: white !important;
  background-color: var(--primery-color) !important;
  border-color: transparent !important;
  border-radius: 50px !important;
  padding-left: 25px;
  padding-right: 25px;
}

.btn {
  border-radius: 50px !important;
  padding-left: 25px;
  padding-right: 25px;
}

.btn-primary:hover {
  background-color: var(--hover-primery-color) !important;
}
.account-sidebar .btn-light {
  border-color: white !important;
}

.lbHdr {
  background: var(--primery-color) !important;
}
.lbHdr-white {
  background: var(--white-color) !important;
}
.dblColBox input.lgn,
input.membrYtSbmt {
  background: var(--primery-color) !important;
  color: white !important;
}
.modal-lg,
.modal-xl {
  max-width: 900px;
}
.meal-plan-layout-form form select {
  border-radius: 10px !important;
}
.plan-name {
  min-height: 69px !important;
}
.lboxOne {
  width: 500px;
  left: 55%;
}
.meal-card-bottom {
  height: 48px;
}
.overlay-menu {
  text-align: center;
  color: #fff !important;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(35, 31, 32, 0.5);
  border-radius: 20px 20px 0px 0px;
}
.overlay-menu h1 {
  color: #fff !important;
}
#meal-description-modal .atc input[type="button"] {
  background: var(--primery-color) !important;
  color: #000;
}
#meal-description-modal .atc input[type="button"]:hover {
  background: var(--hover-primery-color) !important;
  color: #000;
}
.floating-checkout ul li.total::after {
  margin: 15px;
}
.modal-header {
  background-color: var(--primery-color) !important;
}
.activity input[type="radio"] + label {
  background-color: var(--primery-color) !important;
  line-height: 25px !important;
}
.new-special-offer {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  border: 2px solid green;
  border-radius: 24px;
  background: #14ff00;
  padding: 25px;
}
.new-free-item {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  border: 2px solid black;
  border-radius: 24px;
  padding: 25px;
  margin-top: 12px;
}
.popBox {
  border-radius: 20px;
}

#card-element {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
}

#card-element .StripeElement--focus {
  border-color: #1e87f0;
  box-shadow: 0 0 0 2px rgba(30, 135, 240, 0.3);
}

#card-element .StripeElement--invalid {
  border-color: #f44336;
}

.promo-text-font {
  font-family: Acumin Pro, normal !important;
}

.bs-stepper-header {
  display: block;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.bootstrap-srm {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
.bootstrap-srm *,
.bootstrap-srm ::after,
.bootstrap-srm ::before {
  box-sizing: border-box;
}
.bootstrap-srm img,
.bootstrap-srm svg {
  vertical-align: middle;
}
.srm-funnel-logo {
  text-align: center;
  margin: 15px auto;
}
.srm-funnel-logo img {
  max-width: 100%;
  max-height: 120px;
  margin: 0 auto;
}
.bs-stepper-content {
  padding: 0 20px 20px;
  display: block;
}

@media (min-width: 1200px) {
  .bootstrap-srm h3,
  .bootstrap-srm h3 {
    font-size: 1.75rem;
  }
}

.bootstrap-srm .p-4 {
  padding: 1.5rem !important;
}
.bootstrap-srm .mb-5 {
  margin-bottom: 3rem !important;
}
.bootstrap-srm .bg-white {
  --bs-bg-opacity: 1;
}
.bs-stepper {
  margin: 25px 25px;
  text-align: center;
  display: table;
  min-width: auto;
  max-width: 50vw;
}
.bootstrap-srm h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.srm-funnel-heading,
.srm-funnel-prompt {
  text-align: center;
  margin-bottom: 30px;
}
#srm-funnel-questions {
  display: inline;
  margin: 0 !important;
  padding: 0 !important;
}
#srm-funnel-positive.srm-funnel-icon {
  color: #7ed026;
  --theme-color-text_link: #7ed026;
}
#srm-funnel-questions li {
  display: inline-block !important;
}
#srm-funnel-positive {
  margin-right: 15px;
}
.srm-funnel-decision {
  cursor: pointer;
}
.srm-funnel-decision.srm-funnel-icon {
  font-size: 7em;
}
.srm-funnel-icon {
  display: inline-block;
  width: unset !important;
  height: unset !important;
}
.fa-face-smile:before,
.fa-smile:before {
  content: "\f118";
}
#srm-funnel-negative.srm-funnel-icon {
  color: #e96e48;
  --theme-color-text_link: #e96e48;
  transform: rotateY(-180deg);
  margin-top: 35px;
  /* margin-left: 15px; */
}
.fa-face-frown:before,
.fa-frown:before {
  content: "\f119";
}
.bootstrap-srm *,
.bootstrap-srm ::after,
.bootstrap-srm ::before {
  box-sizing: border-box;
}
.srm-funnel-powered-by {
  font-size: 80%;
  text-align: center;
  margin-top: 30px;
}
.bootstrap-srm a {
  text-decoration: underline;
}

/* ===================== */
/*  menu plane Page css -start
/* ===================== */

.home-page .plan-name {
  font-size: 24px;
  line-height: 26px;
  text-align: start;
  font-weight: 600;
  padding-bottom: 20px;
}

.home-page .options p {
  font-size: 16px;
  text-align: start;
  font-weight: bold;
  line-height: 24px;
  color: #6a6a6a;
}

.home-page button {
  background: black !important;
  position: relative;
  padding-left: 0px !important;
  margin-bottom: 24px;
}

.home-page button::after {
  content: ""; /* Necessary for the pseudo-element to display */
  position: absolute;
  top: 50%; /* Centers the arrow vertically */
  right: 25%; /* Positions the arrow to the right */
  transform: translateY(-50%); /* Centers the arrow vertically */
  width: 40px; /* Adjust the width of the arrow */
  height: 16px; /* Adjust the height of the arrow */
  background-image: url("../../images/new-layout/img/icons/white_arrow.svg") !important;
  background-repeat: no-repeat; /* Prevents repeating of the background image */
  background-position: center; /* Centers the background image */
}

.home-page .plan-detail p {
  text-align: start;
  font-size: 12px !important;
}
.home-page .plan-detail li {
  font-weight: 400;
  color: #4e4e4e;
  text-align: start;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  padding-bottom: 15px;
  align-items: center; /* Aligns items vertically in the center */
}
.home-page .plan-detail img {
  margin-right: 10px; /* Adds space between image and text */
}

.home-page .plan-detail {
  height: 98px; /* Set the desired height */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limit the number of lines */
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
}

.home-page .plan-img {
  height: 228px;
}

.home-page .plan-name {
  min-height: 53px;
}

.del {
  text-decoration: line-through;
  font-weight: 400;

  padding-right: 10px;
}

.new-value {
  color: red;
}

.toggle-container {
  background-color: #ffd580;
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 50px;
  margin-top: 50px;
}

.toggle-option {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #ffd580;
  color: grey;
  border-radius: 30px;
  margin: 8px;
  font-weight: bold;
}

.toggle-option.active {
  background-color: #ff9602;
  color: white;
}

.toggle-option:not(.active):hover {
  background-color: #ff9602;
}

.total {
  color: black !important;
}

.bg-new-orange {
  background-color: #ff9602 !important;
}

.feature-item-new {
  width: 200px;
}

.feature-item-new p {
  margin-top: 12px;
  font-size: 16px;
}
.category .site-select {
  flex-direction: column;
}

.meal-plan-layout-form .section-title {
  margin-top: 32px;
}
.meal-plan-layout-form .section-title p {
  padding: 12px 0 0 30px;
}
.color-title {
  color: #80531e;
}

/*meal plan filter css*/

.list-group-items {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 1.375rem 1.75rem 1.75rem 1.75rem;
  margin-bottom: 0.5rem;
  background-color: #fff;
  cursor: pointer;
}
.list-group-items.active {
  background-color: rgba(254, 113, 11, 0.25);
  border: 2px solid rgba(254, 113, 11);
}
.list-group-items:hover {
  background-color: rgba(254, 113, 11, 0.25);
}
.btn-group .btn1 {
  border: 1px solid #ced4da;
  background-color: #fff;
  color: black !important;
  border-radius: 0;
  padding: 0.65rem 2.5rem;
}
.btn-group .btn1:hover {
  background-color: rgba(254, 113, 11, 0.25);
}
.btn-group .btn1:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.btn-group .btn1:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.btn-group .btn1.active {
  background-color: rgba(254, 113, 11, 0.25);
  border: 2px solid rgba(254, 113, 11);
}
.card-selected {
  border-color: #28a745;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
  border-radius: 20px;
}
.about-us p {
  text-align: justify;
}
.card-selected h5 {
  font-size: 16px;
}
.main-filter-div {
  display: grid;
  grid-template-columns: repeat(auto-fit, 30%);
  justify-content: center;
  column-gap: 4%;
}
.filter-plan-info {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 1.375rem 0;
  margin-bottom: 0.5rem;
  background-color: #fff;
}

.filter-plan-info-sub {
  padding: 0 1.375rem;
}

.card-selected .form-check-input:checked {
  background-color: rgba(254, 113, 11);
  border-color: rgba(254, 113, 11);
}
.per-serving {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.card-selected .description-list {
  border: 1px solid black;
  border-radius: 0.25rem;
  margin-top: 1.25rem;
}

.filter-plan-detail {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  color: rgba(100, 105, 110);
  height: 75px;
  overflow: hidden;
  text-align: center;
}
.filter-sub-head {
  font-weight: 300;
  font-size: 15px;
  color: rgba(100, 105, 110);
}

@media (min-width: 600px) and (max-width: 1700px) {
  .main-filter-div {
    grid-template-columns: repeat(auto-fit, 42%);
  }
}

@media (max-width: 600px) {
  .main-filter-div {
    display: flex;
    flex-direction: column;
  }
  .btn-group .btn1 {
    padding: 0.375rem 1.5rem;
  }
  .card-selected {
    padding: 1rem !important;
  }
  .filter-plan-info-sub {
    padding: 0 0.375rem;
  }
}

/*filter page end*/
.header-top-red {
  background-color: red;
}

.header-top-green {
  background-color: green;
}

.free-items-offer {
  display: grid;
  grid-template-columns: repeat(auto-fit, 45%);
  justify-content: center;
  column-gap: 4%;
  row-gap: 2%;
}

.meal-container.selected {
  border: 1px solid #ff9602;
  background-color: #f0f8ff;
}

.meal-container.selected .selected-overlay {
  display: block;
}

.selected-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1.5rem;
  text-align: center;
  line-height: 100px; /* Adjust based on your needs */
  z-index: 10;
  border-radius: 19px 19px 0 0;
}

.free_item_float {
  width: 100px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 3px;
  background-color: #0485f1;
  color: #fff;
  position: fixed;
  bottom: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 12px;
  border-radius: 7px;
  -webkit-box-shadow: 2px 2px 5px #666;
  box-shadow: 2px 2px 5px #666;
  text-decoration: none;
  z-index: 1;
}

.header_free_item {
  display: grid;
  grid-template-columns: repeat(auto-fit, 15%);
  justify-content: center;
  column-gap: 4%;
  row-gap: 2%;
  margin-bottom: 2rem;
}

.home-page .plan-detail .lists img {
  width: auto !important;
}

/* === 20-12-2024 CSS Start === */
.italic {
  font-style: italic;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.page-content {
  position: relative;
  margin-top: 130px;
}
.pages-banner {
  text-align: center;
  background-size: cover;
  padding: 60px 20px;
  position: relative;
  background-position: center;
}

.pages-banner .banner-text h1 {
  font-size: 52px;
  line-height: 60px;
  font-style: italic;
  font-weight: 800;
  color: #ff8c06;
  max-width: 880px;
  margin: 0 auto;
}

.pages-banner .banner-text p {
  color: #222222;
  font-weight: 600;
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 8px;
}
.offer-banner {
  position: relative;
  width: 100%;
}
.offer-banner #slimtrim {
  background: url(../../img/banner-img-1.jpg) no-repeat center;
  background-size: cover;
}
.offer-banner #personal {
  background: url(../../img/banner-img-2.jpg) no-repeat center;
  background-size: cover;
}
.offer-banner .subpage-block {
  border-radius: 15px;
  padding: 40px 16px;
  margin: 0 10px;
  font-size: 12px;
  position: relative;
  width: 100%;
  min-height: 260px;
  height: auto;
}
.offer-banner .subpage-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  /* background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.2) 50%); */
  border-radius: 15px;
}
.offer-banner .offer-caption {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0px 20%;
}
.offer-banner .offer-caption .btn-primary {
  background-color: #ffffff !important;
  color: #fe710b !important;
}
.offer-banner .offer-caption .btn-primary:focus {
  box-shadow: none;
}
.offer-banner .offer-caption h2,
.offer-banner .offer-caption label {
  color: #ffffff;
}
.offer-banner .offer-caption h2 {
  font-family: "Playfair Display", serif !important;
  font-size: 36px;
  line-height: 42px;
  font-style: italic;
}

.offer-banner .offer-caption p {
  color: #fff7ed;
}
#order-btn {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
#order-btn:hover:after {
  top: 0;
  height: 100%;
}
#order-btn:focus {
  top: 2px;
}
.why-chefgood {
  width: 100%;
  position: relative;
}
.why-chefgood .title h4 {
  color: var(--heading-color);
  font-size: 24px;
  line-height: 36px;
  padding-bottom: 20px;
}
.why-chefgood .chefgood-box {
  width: 100%;
  height: 480px;
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-1);
  background: #ffffff;
}
.why-chefgood .chefgood-box img {
  width: 200px;
}
.why-chefgood .chefgood-box h5 {
  color: #fe710b;
  font-size: 20px !important;
  line-height: 28px;
  font-weight: bold;
  font-family: "Playfair Display", serif !important;
}
.why-chefgood .chefgood-box p {
  font-size: 16px;
  line-height: 24px;
  color: #4e4e4e;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.customer-reviews {
  padding: 60px 0;
  /* background: #ff8c06; */
  background: rgb(255, 160, 6);
  background: linear-gradient(
    180deg,
    rgb(255 160 6 / 84%) 41%,
    rgb(255 140 6) 100%
  );
}
.euBiGU {
  background-color: #ff8c06 !important;
}
.idHrF,
.hiafvJ {
  background-color: #ffffff !important;
}
.gyfGWt {
  display: none !important;
}
.eWlnOb {
  line-height: 36px !important;
  font-size: 36px !important;
  padding-bottom: 20px;
  font-weight: 600;
  font-family: "Playfair Display", serif !important;
  font-style: italic !important;
}
.why-chefgood .title h4::after {
  background-color: #000000;
}
.customer_reviews .customer-image {
  padding-bottom: 20px;
}

.customer_reviews .star-image {
  max-width: 140px;
  padding-bottom: 10px;
}

.most-popular .popular-box {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  display: block;
}
.most-popular .popular-box p {
  font-size: 24px !important;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #ffffff;
  margin-top: 20px;
  line-height: 1.3;
  margin: 20px auto 0 auto;
}
.most-popular .popular-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
}

.most-popular .popular-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.1) 42%
  );
  border-radius: 15px;
}
.most-popular .popular-box .items-name {
  width: 100%;
  padding: 0 15px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.Why-choose ul li {
  list-style: disc;
}

.Faq-section .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: transparent;
}
.Faq-section .accordion-item {
  background-color: #fff;
  border: none;
}
.Faq-section .accordion-button:focus {
  border-color: #ff8c06;
  box-shadow: none;
}
.Faq-section .accordion-button {
  border-bottom: 1px solid #ddd;
}
.how-it-section .how-content a,
.Why-choose .container a,
.Faq-section .accordion .accordion-body a {
  color: #ff8c06;
}
.how-it-section .title h4,
.why-chefgood .title h4,
.most-popular .title h4,
.Faq-section .title h4,
.Why-choose .title h4 {
  font-size: 36px;
  line-height: 42px;
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  color: #ff8c06;
  font-weight: bold;
}
.Why-choose .title h4,
.most-popular .title h4,
.how-it-section .title h4 {
  color: #000;
}
.how-it-section {
  background: #ffcb7026;
  padding: 80px 0px 40px;
}

.how-it-section .how-content h2 {
  font-family: "Playfair Display", serif !important;
  padding-bottom: 10px;
  font-weight: bold;
}
.how-it-section .how-content h4 {
  font-size: 24px;
  line-height: 32px;
  padding-bottom: 10px;
  font-weight: 600;
}
.how-it-section .how-content p {
  color: #868686;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.Why-choose .why-content h4 {
  font-size: 24px !important;
  line-height: 30px;
  padding-bottom: 0px;
  font-weight: 600;
}
.Why-choose .why-image img {
  width: 100%;
}
.Why-choose .why-content {
  padding: 40px;
  background: #cdcdcd70;
  border-radius: 20px;
}
.how-it-section .how-image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 20px;
}
.how-it-section .head {
  margin-bottom: 60px;
}
.most-popular {
  width: 100%;
  position: relative;
}
.home-left-vector-image {
  position: absolute;
  left: 0;
  top: -20%;
  z-index: -1;
}
.home-right-vector-image {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 60%;
}
.home-left-vector-image img,
.home-right-vector-image img {
  width: 100%;
}

/* Dyanamic ::content CSS */

.dynamic-content {
  background: #ffcb7026;
  padding: 80px 0px 40px;
}
.dynamic-content h1 {
  font-size: 48px;
  line-height: 54px;
  font-weight: 700;
  padding-bottom: 15px;
}
.dynamic-content h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  padding-bottom: 15px;
}
.dynamic-content h3 {
  font-size: 22px;
  line-height: 34px;
  font-weight: bold;
  padding-bottom: 15px;
}
.dynamic-content a {
  color: #ff8c06;
}
.dynamic-content p {
  font-size: 16px;
  line-height: 28px;
  color: #4e4e4e;
  font-weight: 400;
}

.dynamic-content strong {
  font-family: var(--poppins) !important;
}

/* General Table Styling */
.dynamic-content table {
  width: 50%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 1rem;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.dynamic-content thead tr {
  background-color: #ffc065;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.dynamic-content th,
.dynamic-content td {
  padding: 5px 12px;
  border: 1px solid #ddd;
}

/* .dynamic-content tbody tr:nth-child(even) {
  background-color: #f2f2f2;
} */

.dynamic-content tbody tr:hover {
  background-color: #f9f9f9;
}

.dynamic-content ul {
  margin: revert;
}
.dynamic-content li {
  list-style: disc;
  position: relative;
  left: 50px;
  line-height: 30px;
}
.customers-review {
  background: #fff;
  padding: 40px 15px;
  margin: 50px 0;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.customers-review .idHrF,
.customers-review .hiafvJ {
  background-color: #f7f7f7 !important;
}
.customers-review #pr-reviews-horizontal-widget {
  padding: 0 40px;
}
.customers-review .pr-do-not-use-dbff-a-1du9rlh {
  padding-top: 2rem;
}
.customer-reviews .btn-primary {
  background-color: #ffffff !important;
  color: #fe710b !important;
}
.sitemap-section {
  position: relative;
  padding: 80px 40px 40px;
  background: #ffcb7026;
}
.sitemap-section a {
  color: #ff8c06;
}
.sitemap-section .home-right-vector-image {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 0px;
}
@media (max-width: 768px) {
  .dynamic-content table {
    font-size: 0.9rem;
  }
  .dynamic-content th,
  .dynamic-content td {
    padding: 10px;
  }
}

/* Responsive CSS Start */
@media (max-width: 1540px) {
  .offer-banner .offer-caption {
    padding: 0px 12%;
  }
  .page-content {
    margin-top: 110px;
  }
}
@media (min-width: 1200px) {
  .Faq-section .container,
  .Why-choose .container {
    max-width: 1200px;
  }
}

@media (max-width: 1199px) {
  .page-content {
    margin-top: 95px;
  }
}

@media (max-width: 991px) {
  .dynamic-content table {
    width: 100%;
  }
  .how-it-section .md-flex-reverse {
    flex-direction: column-reverse;
  }
  .how-it-section .how-content {
    padding: 20px 0;
  }
  .why-chefgood .chefgood-box {
    width: 100%;
    height: 380px;
  }
  .why-chefgood .chefgood-box img {
    width: 140px;
  }
  .why-chefgood .chefgood-box {
    padding: 20px;
    margin-bottom: 20px;
  }
  footer .row {
    padding-top: 0px !important;
  }
  .how-it-section .how-image img {
    width: 100%;
    height: auto;
  }
  .most-popular {
    padding: 40px 0px 0px !important;
  }

  .pages-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.4) 50%
    );
  }
  .pages-banner .banner-text h1,
  .pages-banner .banner-text p {
    color: #ffffff;
  }
  .pt-60 {
    padding-top: 40px;
  }
  .pb-60 {
    padding-bottom: 40px;
  }
  .page-content {
    margin-top: 95px;
  }
  .pages-banner .banner-text {
    z-index: 11;
    position: relative;
  }
  .offer-banner .subpage-block {
    margin-bottom: 40px;
    padding: 30px 12px;
    min-height: auto;
    height: auto;
  }
  .Faq-section .title h4,
  .Why-choose .title h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .offer-banner.pb-60 {
    padding-bottom: 0px;
  }
  .how-it-section {
    padding: 40px 0px 40px;
  }
  .customer-reviews {
    padding: 40px 0;
  }
}
@media (max-width: 576px) {
  .offer-banner .offer-caption {
    padding: 0px 5%;
  }
  .pages-banner .banner-text h1 {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .pages-banner {
    padding: 40px 15px;
  }
  .most-popular .popular-box p {
    font-size: 20px !important;
  }
  .eWlnOb {
    line-height: 32px !important;
    font-size: 24px !important;
    padding-bottom: 5px;
  }
  .Why-choose .why-content h4 {
    font-size: 20px !important;
    line-height: 24px !important;
  }
  .Why-choose .why-content {
    padding: 30px;
  }
  .how-it-section .how-content h4 {
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 5px;
  }
  .why-chefgood .chefgood-box h5 {
    font-size: 18px !important;
    line-height: 28px;
  }
  .how-it-section .title h4,
  .why-chefgood .title h4,
  .most-popular .title h4,
  .Faq-section .title h4,
  .Why-choose .title h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .Faq-section .accordion-button {
    width: 100%;
    padding: 0.6rem 0.8rem;
    line-height: 22px;
    font-size: 14px;
  }
  .Faq-section .accordion-body p {
    font-size: 14px !important;
    line-height: 22px !important;
  }
}

.m-card-highlight{
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  font-weight: 600;
}
