/* color variables */
/*Transition*/
@import url("https://use.typekit.net/tyg6div.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html, body {
  height: 100%;
}

/*common css start here*/
body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "massilia";
  font-weight: 300;
  color: #000;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: url("../images/main-bg.jpg") center center no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  overflow-x: hidden;
}

/*css change*/
ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

/*reset variables*/
.noDisplay {
  display: none;
}

/* iPad portrait mode */
/* Tablet Portrait size to standard 960 (devices and browsers) */
/* Mobile layout css */
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
  }
}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
header {
  width: 100%;
  height: 100px;
  top: 0;
  z-index: 9;
  transition: all 0.3s ease;
  position: fixed;
  background-color: rgba(0, 131, 115, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 999;
}
header.shrink {
  height: 70px;
}
header.shrink .navbar .navbar-brand {
  height: 70px;
}
header .navbar {
  padding: 0;
  width: 100%;
  z-index: 1000;
}
header .navbar .navbar-brand {
  transition: all 0.3s ease;
  height: 100px;
}
header .navbar .navbar-brand img {
  height: 100%;
  transition: all 0.3s ease;
}
header .navbar .nav-item {
  padding: 0 1rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
header .navbar .nav-item .nav-item:last-child {
  padding-right: 0;
}
header .navbar .nav-item .nav-item .nav-link {
  padding: 0.5rem 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: "massilia";
  font-weight: 300;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}
header .navbar .nav-item .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #ffffff;
}
header .navbar .navbar-nav {
  height: 100%;
}
@media (max-width: 480px) {
  header .navbar .navbar-nav {
    margin-top: 20px;
    align-items: center;
    justify-content: center;
  }
}
header .navbar .navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease;
  color: #ffffff;
  letter-spacing: 0.5px;
  font-size: 1rem;
  line-height: 1;
}
@media (max-width: 480px) {
  header .navbar .navbar-nav .nav-link {
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
  }
}
header .navbar .navbar-nav .nav-link.active {
  color: #ffffff !important;
}
@media (max-width: 480px) {
  header .navbar .navbar-nav .nav-item {
    height: auto;
    margin: 0.5rem 0;
  }
}
header .navbar .navbar-nav .nav-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #ffffff;
}

.burger-menu {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}
.burger-menu[aria-expanded=true] {
  z-index: 10;
}
.burger-menu[aria-expanded=true] span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
  opacity: 0;
}
.burger-menu[aria-expanded=true] span:nth-child(2) {
  transform: rotate(45deg);
}
.burger-menu[aria-expanded=true] span:nth-child(3) {
  transform: rotate(-45deg);
}
.burger-menu[aria-expanded=true] span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
  opacity: 0;
}
.burger-menu:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.burger-menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.burger-menu span:nth-child(1) {
  top: 0px;
}
.burger-menu span:nth-child(2), .burger-menu span:nth-child(3) {
  top: 10px;
}
.burger-menu span:nth-child(4) {
  top: 20px;
}

@media (max-width: 480px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    width: 100%;
    height: auto;
    background-color: rgba(0, 113, 103, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    height: 100vh;
    display: flex;
    justify-content: center !important;
    align-items: center;
  }
}
.navbar-collapse.show {
  transform: translateY(0) !important;
  opacity: 1;
  visibility: visible;
  height: 100vh;
  background: rgba(0, 113, 103, 0.95);
}

footer {
  background-color: #007167;
  padding: 25px 0;
  border-top: none;
}
footer .footer-logo {
  display: flex;
  flex-direction: column;
  width: 100px;
}
@media (max-width: 480px) {
  footer .footer-logo {
    align-items: center;
  }
}
footer p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}
footer .social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
@media (max-width: 480px) {
  footer .social-icons {
    justify-content: center;
  }
}
footer .social-icons a {
  font-size: 16px;
  color: #ef4123;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .social-icons a:hover {
  color: #ffffff;
  background-color: #ef4123;
}

.yt-video-popup {
  display: none;
}

.blog-listing-section {
  margin-top: 5rem;
}
.blog-listing-section h1 {
  color: #008373;
  font-size: 4rem;
  letter-spacing: 1px;
  font-family: "monigue_demoregular";
  font-weight: normal;
}
@media (max-width: 480px) {
  .blog-listing-section h1 {
    font-size: 2.6rem;
    text-align: center;
  }
}

.blog-wrapper {
  margin-top: 5rem;
}
.blog-wrapper .sticky-top {
  top: 100px;
}
.blog-wrapper .sticky-top a p {
  color: #000;
}

.hero-section {
  position: relative;
  width: 100%;
  display: block;
  visibility: visible;
  opacity: 1;
  margin-top: 100px;
  padding: 0;
}
.hero-section .slider-wrap {
  width: 100%;
}
.hero-section .slider-wrap .slides {
  width: 100%;
}
.hero-section .slider-wrap .slides img {
  width: 100%;
  display: block;
}
.hero-section .slider-wrap .flickity-prev-next-button {
  background: #ffffff;
}
.hero-section .slider-wrap .flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40%;
  height: 40%;
  transform: translate(-50%, -50%);
}
.hero-section .slider-wrap .flickity-button-icon {
  fill: #007167;
}
.hero-section .slider-wrap .flickity-button:focus {
  outline: none;
  box-shadow: none;
}

.scroll-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50px;
  z-index: 10;
}
.scroll-down a {
  padding-top: 60px;
}
.scroll-down a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 3px solid #007167;
  border-bottom: 3px solid #007167;
  transform: rotate(-45deg);
  animation: sdb04 2s infinite;
  box-sizing: border-box;
}
@keyframes sdb04 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}

.video-section .slider-wrap {
  width: 100%;
}
.video-section .slider-wrap .slides {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: #ffffff solid 1px;
}
@media (min-width: 1025px) {
  .video-section .slider-wrap .flickity-prev-next-button.previous {
    left: -60px;
  }
}
@media (min-width: 1025px) {
  .video-section .slider-wrap .flickity-prev-next-button.next {
    right: -60px;
  }
}

.uplife-way-section .gradient-circle {
  position: absolute;
  left: 60%;
  top: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 226, 210, 0.9), rgba(255, 143, 80, 0.9));
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
@media (max-width: 480px) {
  .uplife-way-section .gradient-circle {
    left: 30%;
    transform: translateX(-50%);
    top: 10%;
    width: 30vw;
    height: 30vw;
    z-index: 1;
  }
}
.uplife-way-section .lettuce-icon {
  width: 25%;
  position: absolute;
  left: -10%;
  top: 50%;
}
.uplife-way-section .lettuce-icon img {
  width: 100%;
}
.uplife-way-section .carrot-icon {
  width: 25%;
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -40%);
  pointer-events: none;
  z-index: -1;
}
.uplife-way-section .carrot-icon img {
  width: 100%;
}
.uplife-way-section .section2-thumb1 {
  width: 32%;
  height: 70%;
  position: relative;
  overflow: hidden;
}
.uplife-way-section .section2-thumb1 img {
  width: 100%;
  margin-left: -30px;
  z-index: 1;
  position: relative;
}
.uplife-way-section .section2-thumb1::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  content: "";
  width: 100%;
  height: 40%;
  z-index: 2;
  border-left: 1px solid rgb(255, 255, 255);
}
.uplife-way-section .section2-thumb1::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  content: "";
  width: 100%;
  height: 80%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 50px inset;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0.95;
  border-radius: 200px 200px 0px 0px;
  background: linear-gradient(94deg, rgb(222, 165, 133) 0%, rgba(222, 165, 133, 0.243) 77%);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  -o-border-image: initial;
     border-image: initial;
}
.uplife-way-section .section2-thumb2 {
  width: 40%;
  height: 90%;
  margin-left: 1.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.uplife-way-section .section2-thumb2 img {
  width: 100%;
  margin-left: -30px;
  z-index: 1;
  position: relative;
}
.uplife-way-section .section2-thumb2::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 40%;
  z-index: 2;
  border-left: 1px solid rgb(255, 255, 255);
}
.uplife-way-section .section2-thumb2.section2-thumb2::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 90%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 40px inset;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 200px 200px 150px 0px;
  background: linear-gradient(94deg, rgb(139, 189, 184) 0%, rgba(139, 189, 184, 0.243) 100%);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  -o-border-image: initial;
     border-image: initial;
}
.uplife-way-section .uplife-way-content {
  padding-right: 5%;
}
@media (max-width: 480px) {
  .uplife-way-section .uplife-way-content {
    padding: 15px;
    margin-top: 30px;
  }
}
.uplife-way-section .chinese-dish {
  width: 18%;
  position: absolute;
  right: 0px;
  top: 0px;
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.05s ease-out;
}
@media (max-width: 480px) {
  .uplife-way-section .chinese-dish {
    width: 35%;
    right: 5%;
  }
}
.uplife-way-section .chinese-dish img {
  width: 100%;
}
.uplife-way-section .lemon-icon {
  width: 10%;
  position: absolute;
  right: 0%;
  top: 100%;
  transform: translate(-50%, -40%);
  pointer-events: none;
}
@media (max-width: 480px) {
  .uplife-way-section .lemon-icon {
    width: 20%;
    right: 5%;
    top: 110%;
  }
}
.uplife-way-section img {
  width: 100%;
}

section {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 480px) {
  section {
    padding: 40px 0;
  }
}
section .parallax-icon {
  position: absolute;
  transition: transform 0.1s ease-out;
  will-change: transform;
  pointer-events: none;
}
section .section-title {
  color: #008373;
  font-size: 4rem;
  letter-spacing: 1px;
  font-family: "monigue_demoregular";
  font-weight: normal;
}
@media (max-width: 480px) {
  section .section-title {
    font-size: 2.6rem;
    text-align: center;
  }
}
section .section-title span {
  font-family: "ciabatta";
}
@media (max-width: 480px) {
  section .section-title span {
    font-size: 2.6rem;
  }
}
section .buy-now-btn {
  background-color: #008373;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 0.7rem 2.5rem 0.8rem 2.5rem;
  border-radius: 30px;
  margin-top: 20px;
  border: 2px solid #ffffff;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  line-height: 1;
  transition: all 0.3s ease;
}
section .buy-now-btn:hover {
  background-color: rgba(0, 131, 115, 0.8);
  color: #ffffff;
  border: 2px solid #008373;
}

.gut-pro-section .card {
  /* width: 98%; */
  margin: 0 auto;
  padding-top: 2rem;
  border-radius: 20px;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex-direction: row;
  z-index: 1;
  position: relative;
  transition: background-color 0.5s ease, border-color 0.5s ease;
}
.gut-pro-section .card.showing-gut-pro {
  background: rgb(139, 189, 184);
  background: linear-gradient(94deg, rgb(139, 189, 184) 0%, rgba(139, 189, 184, 0.2427564776) 100%);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.gut-pro-section .card.showing-lite {
  background: rgb(222, 165, 133);
  background: linear-gradient(94deg, rgb(222, 165, 133) 0%, rgba(222, 165, 133, 0.2427564776) 77%);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.gut-pro-section .card.showing-lite .balanced-gut-icon {
  background-color: rgba(239, 65, 35, 0.6);
}
.gut-pro-section .card.showing-lite .sub-title {
  background-color: rgba(239, 65, 35, 0.6);
}
.gut-pro-section .card.showing-lite .product-title {
  color: #ef4123;
}
.gut-pro-section .card.showing-lite .buy-now-btn {
  background-color: #ef4123;
}
.gut-pro-section .card.showing-lite .buy-now-btn:hover {
  background-color: rgba(239, 65, 35, 0.8);
  border: 2px solid #ef4123;
}
.gut-pro-section .card.showing-lite .benefit-item h4 {
  color: #ef4123;
}
.gut-pro-section .card .product-nav-arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 5;
}
@media (max-width: 480px) {
  .gut-pro-section .card .product-nav-arrows {
    width: 86%;
    height: auto;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.gut-pro-section .card .product-nav-arrows .prev-product,
.gut-pro-section .card .product-nav-arrows .next-product {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  margin: 0 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.gut-pro-section .card .product-nav-arrows .prev-product i,
.gut-pro-section .card .product-nav-arrows .next-product i {
  color: #333;
  font-size: 1rem;
}
.gut-pro-section .card .product-nav-arrows .prev-product {
  transform: translateX(-20%);
}
@media (max-width: 480px) {
  .gut-pro-section .card .product-nav-arrows .prev-product {
    transform: translateX(-100%);
  }
}
.gut-pro-section .card .product-nav-arrows .prev-product:hover {
  background-color: #fff;
  transform: scale(1.1) translateX(-20%);
}
@media (max-width: 480px) {
  .gut-pro-section .card .product-nav-arrows .prev-product:hover {
    transform: scale(1.1) translateX(-100%);
  }
}
.gut-pro-section .card .product-nav-arrows .next-product {
  transform: translateX(20%);
}
@media (max-width: 480px) {
  .gut-pro-section .card .product-nav-arrows .next-product {
    transform: translateX(100%);
  }
}
.gut-pro-section .card .product-nav-arrows .next-product:hover {
  background-color: #fff;
  transform: scale(1.1) translateX(20%);
}
@media (max-width: 480px) {
  .gut-pro-section .card .product-nav-arrows .next-product:hover {
    transform: scale(1.1) translateX(100%);
  }
}
.gut-pro-section .card .product-showcase {
  text-align: center;
  width: 100%;
}
@media (max-width: 480px) {
  .gut-pro-section .card .product-showcase {
    width: 65%;
    margin: 0px auto;
  }
}
.gut-pro-section .card .product-showcase img {
  cursor: pointer;
  transition: all 0.3s ease;
  transform: rotate(10deg) scale(0.8);
  filter: drop-shadow(5px 5px 5px #8d8d8d);
}
.gut-pro-section .card .product-showcase img.bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  transform: translate(-50%, -50%) scale(1.3) !important;
}
.gut-pro-section .card .prd-sm {
  width: 15%;
  position: absolute;
  left: -6%;
  top: 50%;
  transform: translate(-40%, -50%);
  pointer-events: all;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .gut-pro-section .card .prd-sm {
    width: 40%;
    left: -18%;
    top: 21%;
  }
}
.gut-pro-section .card .prd-sm img {
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  transform: rotate(-10deg) scale(0.8);
  filter: drop-shadow(5px 5px 5px #8d8d8d);
}
.gut-pro-section .card .gut-pro-content {
  padding-left: 5%;
}
@media (max-width: 480px) {
  .gut-pro-section .card .gut-pro-content {
    padding: 15px;
    margin-top: 0px;
  }
}
.gut-pro-section .card .balanced-gut-icon {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 13%;
  top: 8%;
  transform: translateX(-50%);
  padding: 10px;
  background-color: rgba(0, 131, 115, 0.6);
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .gut-pro-section .card .balanced-gut-icon {
    width: 75px;
    height: 75px;
    left: 4%;
    top: 0%;
  }
}
.gut-pro-section .card .balanced-gut-icon img {
  width: 100%;
}
.gut-pro-section .card .sub-title {
  color: #ffffff;
  font-size: 1.2rem;
  text-transform: uppercase;
  background-color: rgba(0, 131, 115, 0.6);
  display: inline-block;
  width: auto;
  padding: 10px 15px 10px 15px;
  border-radius: 10px;
  line-height: 1;
  border: 1px solid #ffffff;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}
.gut-pro-section .card .product-title {
  font-size: 3.6vw;
  margin: 20px 0;
  font-family: "monigue_demoregular";
  color: #008373;
  line-height: 1;
  font-weight: normal;
}
@media (max-width: 480px) {
  .gut-pro-section .card .product-title {
    font-size: 2.6rem;
  }
}
.gut-pro-section .card .product-title span {
  font-family: "ciabatta";
  display: block;
  color: #202020;
  font-size: 2.5vw;
}
@media (max-width: 480px) {
  .gut-pro-section .card .product-title span {
    font-size: 1.6rem;
  }
}
.gut-pro-section .card .tabsContainer {
  overflow: hidden;
}
.gut-pro-section .card .tabsContainer .tabsBox {
  display: flex;
  width: 100%;
  position: relative;
  isolation: isolate;
}
@media (max-width: 480px) {
  .gut-pro-section .card .tabsContainer .tabsBox {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: 0;
    margin-right: 0;
    gap: 10px !important;
    padding-bottom: 1.5rem;
  }
}
.gut-pro-section .card .tabsContainer .tabsBox .indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3996192227) 100%);
  border-radius: 20px;
  overflow: visible;
}
@media (max-width: 480px) {
  .gut-pro-section .card .tabsContainer .tabsBox .indicator {
    height: 60px;
  }
}
.gut-pro-section .card .tabsContainer .tabsBox .indicator::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #FFFFFF transparent transparent transparent;
  transform: rotate(0deg);
  z-index: 99999;
  transform: translateX(-50%);
}
.gut-pro-section .card .tabsContainer .tabsBox .benefit-item {
  background: none;
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  flex-grow: 1;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 20px;
  line-height: 1;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 480px) {
  .gut-pro-section .card .tabsContainer .tabsBox .benefit-item {
    padding: 0.95rem 1rem;
  }
}
.gut-pro-section .card .tabsContainer .tabsBox .benefit-item img {
  max-height: 60px;
}
@media (max-width: 480px) {
  .gut-pro-section .card .tabsContainer .tabsBox .benefit-item img {
    max-width: 30px;
    height: auto;
    margin-right: 10px;
  }
}
.gut-pro-section .card .tabsContainer .tabsBox .benefit-item h4 {
  font-size: 1.5vw;
  color: #008373;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  margin-left: 1rem;
}
@media (max-width: 480px) {
  .gut-pro-section .card .tabsContainer .tabsBox .benefit-item h4 {
    font-size: 1rem;
    margin: 0;
    white-space: nowrap;
  }
}
.gut-pro-section .card .tabsContainer .tabsContentContainer {
  display: flex;
  overflow: hidden;
}
.gut-pro-section .card .tabsContainer .tabsContentContainer .contentBox {
  flex-shrink: 0;
  width: 100%;
  padding: clamp(1rem, 2vw, 2rem);
}

.meal-types-section .meal-card {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.meal-types-section .meal-card .thumb {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 480px) {
  .meal-types-section .meal-card {
    width: 100%;
    margin: 0px auto 2rem auto;
  }
}
.meal-types-section .meal-card img {
  max-width: 100%;
}
.meal-types-section .meal-card h5 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #202020;
}
@media (max-width: 480px) {
  .meal-types-section .meal-card h5 {
    font-size: 1.2rem;
  }
}
.meal-types-section .meal-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 60%;
  border-radius: 24px;
  background: linear-gradient(to bottom, #f1f0eb, #dfc5b5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0.8;
  z-index: -1;
  border: 2px solid #dfc5b5;
}
.meal-types-section .carrot-icon {
  width: 15%;
  position: absolute;
  left: -2%;
  top: 0;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 480px) {
  .meal-types-section .carrot-icon {
    width: 35%;
  }
}
.meal-types-section .carrot-icon img {
  width: 100%;
}
.meal-types-section .broccoli-icon {
  width: 10%;
  position: absolute;
  left: 45%;
  top: 55%;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 480px) {
  .meal-types-section .broccoli-icon {
    width: 35%;
    top: 50%;
    left: 10%;
  }
}
.meal-types-section .broccoli-icon img {
  width: 100%;
}
.meal-types-section .yellow-capsicum-icon {
  width: 15%;
  position: absolute;
  left: 68%;
  top: 45%;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 480px) {
  .meal-types-section .yellow-capsicum-icon {
    width: 35%;
    top: 20%;
    left: 62%;
  }
}
.meal-types-section .yellow-capsicum-icon img {
  width: 100%;
}
.meal-types-section .tomato-icon {
  width: 12%;
  position: absolute;
  right: 0%;
  top: 100%;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 480px) {
  .meal-types-section .tomato-icon {
    width: 35%;
    top: 30%;
    right: 3%;
    display: none;
  }
}
.meal-types-section .tomato-icon img {
  width: 100%;
}
.meal-types-section .onion-icon {
  width: 8%;
  position: absolute;
  left: 45%;
  transform: translateX(-50%);
  top: 60%;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 480px) {
  .meal-types-section .onion-icon {
    width: 20%;
    top: 70%;
    left: -10%;
  }
}
.meal-types-section .onion-icon img {
  width: 100%;
}

.faq-section .card {
  width: 98%;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 20px;
  background: rgb(139, 189, 184);
  background: linear-gradient(94deg, rgb(139, 189, 184) 0%, rgba(139, 189, 184, 0.2427564776) 100%);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex-direction: row;
  z-index: 1;
  position: relative;
}
@media (max-width: 480px) {
  .faq-section .card {
    padding: 2rem 0;
  }
}
.faq-section.page {
  margin-top: 3rem;
}
.faq-section.page .card {
  background: none;
  box-shadow: none;
  border: none;
}
@media (max-width: 480px) {
  .faq-section.page .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .faq-section .section-title {
    font-size: 1.5rem;
  }
}
.faq-section .accordion-item {
  border: none;
  border-radius: 10px;
  padding: 0px 0;
  margin: 0 0 1rem 0;
  overflow: hidden;
  background: none;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.faq-section .accordion-item.active {
  border: 1px solid #ffffff;
}
.faq-section .accordion-item.active::after {
  height: 0;
}
.faq-section .accordion-item::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #007167;
  position: absolute;
  bottom: 0;
  left: 0;
}
.faq-section .accordion-item .accordion-header {
  margin: 0;
}
.faq-section .accordion-item .accordion-header .accordion-button {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #007167;
  background-color: transparent;
  padding: 20px 25px;
  box-shadow: none;
}
@media (max-width: 480px) {
  .faq-section .accordion-item .accordion-header .accordion-button {
    font-size: 1.4rem;
    padding: 15px 20px;
    align-items: flex-start;
  }
}
.faq-section .accordion-item .accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008373'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #007167;
  box-shadow: none;
}
.faq-section .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq-section .accordion-item .accordion-header .accordion-button::after {
  background-size: 25px;
  width: 25px;
  height: 25px;
  transition: all 0.3s ease;
}
.faq-section .accordion-body {
  padding: 0 25px 20px;
  background-color: #007167;
}
.faq-section .accordion-body p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0;
}
.faq-section .red-capsicum-icon {
  width: 10%;
  position: absolute;
  left: 30%;
  top: 15%;
  z-index: -1;
  pointer-events: none;
}
.faq-section .red-capsicum-icon img {
  width: 100%;
}
.faq-section .lettuce-icon {
  width: 10%;
  position: absolute;
  left: 70%;
  top: 0;
  z-index: -1;
  pointer-events: none;
}
.faq-section .lettuce-icon img {
  width: 100%;
}

.instagram-section .follow-btn {
  background-color: #008373;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 25px 5px;
  line-height: 1;
  border-radius: 30px;
}
.instagram-section .insta-post {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.instagram-section .insta-post img {
  transition: transform 0.3s ease;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-overlay .popup-container {
  position: fixed;
  top: 50%;
  left: 0px;
  right: 0px;
  transform: translateY(100vh) translateX(0px) translateY(-50%);
  max-width: 90%;
  width: 90%;
  will-change: transform;
  margin: 0px auto;
  border-radius: 20px;
  background: url(../images/buy-now-pop-bg.png) center center/cover no-repeat;
}
.popup-overlay .popup-container .close-popup {
  background-color: #008373;
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-left: 15px;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  border-radius: 50%;
  transition: 0.3s;
  border-width: 2px;
  border-style: solid;
  border-color: #ffffff;
  -o-border-image: initial;
     border-image: initial;
  z-index: 9;
}
.popup-overlay .popup-container .close-popup:hover {
  background-color: #ef4123;
  transform: rotate(90deg);
}
.popup-overlay .popup-container .cont {
  width: 90%;
  margin: 0px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .popup-overlay .popup-container .cont {
    padding: 2rem 1rem;
  }
}
.popup-overlay .popup-container .cont .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: sticky;
  top: 0px;
  z-index: 5;
  padding-top: 10px;
}
.popup-overlay .popup-container .cont .popup-header h2 {
  color: #008373;
  font-family: "monigue_demoregular";
  font-size: 2.5rem;
  margin: 0;
  font-weight: normal;
}
.popup-overlay .popup-container .cont .tabsContainer {
  width: 50%;
  overflow: visible;
  margin: 0px auto;
}
@media (max-width: 480px) {
  .popup-overlay .popup-container .cont .tabsContainer {
    width: 100%;
  }
}
.popup-overlay .popup-container .cont .tabsContainer .tabsBox {
  display: flex;
  width: 100%;
  position: relative;
  isolation: isolate;
}
@media (max-width: 480px) {
  .popup-overlay .popup-container .cont .tabsContainer .tabsBox {
    width: auto;
  }
}
.popup-overlay .popup-container .cont .tabsContainer .tabsBox .indicator {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 100%);
  border-radius: 20px;
  overflow: visible;
}
.popup-overlay .popup-container .cont .tabsContainer .tabsBox .indicator::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  width: 0px;
  height: 0px;
  z-index: 99999;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 15px 15px 0px;
  border-color: rgb(255, 255, 255) transparent transparent;
}
.popup-overlay .popup-container .cont .tabsContainer .tabsBox .benefit-item {
  background: none;
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  flex-grow: 1;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 1;
  border-radius: 20px;
  line-height: 1;
}
@media (max-width: 480px) {
  .popup-overlay .popup-container .cont .tabsContainer .tabsBox .benefit-item {
    width: 45%;
    flex-direction: column;
  }
}
.popup-overlay .popup-container .cont .tabsContainer .tabsBox .benefit-item img {
  max-height: 60px;
}
.popup-overlay .popup-container .cont .tabsContainer .tabsBox .benefit-item h4 {
  font-size: 1.5vw;
  color: #008373;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  margin-left: 1rem;
}
@media (max-width: 480px) {
  .popup-overlay .popup-container .cont .tabsContainer .tabsBox .benefit-item h4 {
    font-size: 1rem;
    margin: 0;
  }
}
.popup-overlay .popup-container .cont .tabsContainer .tabsBox .benefit-item[data-tab=pop-gut-pro] {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(0, 131, 115, 0.2);
}
.popup-overlay .popup-container .cont .tabsContainer .tabsBox .benefit-item[data-tab=pop-lite] {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(239, 65, 35, 0.2);
}
.popup-overlay .popup-container .cont .popup-content {
  width: 100%;
  margin: 0px auto;
}
.popup-overlay .popup-container .cont .popup-content .tabsContentContainer {
  display: flex;
  overflow: hidden;
}
.popup-overlay .popup-container .cont .popup-content .tabsContentContainer .contentBox {
  flex-shrink: 0;
  width: 100%;
  padding: clamp(0rem, 2vw, 2rem);
  transition: 0.3s;
}
.popup-overlay .popup-container .cont .popup-content .tabsContentContainer .contentBox .platform-box {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem;
}
@media (max-width: 480px) {
  .popup-overlay .popup-container .cont .popup-content .tabsContentContainer .contentBox .platform-box {
    padding: 0.5rem;
  }
}
.popup-overlay .popup-container .cont .popup-content .tabsContentContainer .contentBox .platform-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s;
}
.popup-overlay .popup-container .cont .popup-content .tabsContentContainer .contentBox .platform-box img:hover {
  transform: scale(1.1);
}

.contact-us {
  background: url(../images/contact-us-pop-up.jpg) center center no-repeat;
  background-size: 100%;
  width: 100%;
  padding: 8rem 0;
}
@media (max-width: 480px) {
  .contact-us {
    padding-bottom: 3rem;
    background-size: cover;
  }
}
.contact-us .wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  .contact-us .wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.contact-us .wrapper .cont {
  width: 60%;
  background: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin: 0;
}
@media (max-width: 480px) {
  .contact-us .wrapper .cont {
    width: 100%;
  }
}
.contact-us .wrapper .cont .content-holder {
  max-height: 70vh;
  overflow-y: scroll;
  padding-right: 10px;
}
@media (max-width: 480px) {
  .contact-us .wrapper .cont .content-holder {
    max-height: 100%;
  }
}
.contact-us .wrapper .cont .content-holder ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-us .wrapper .cont .content-holder ul li {
  width: 45%;
  padding: 0;
  border-radius: 10px;
  margin: 0 0 2rem 0;
}
@media (max-width: 480px) {
  .contact-us .wrapper .cont .content-holder ul li {
    width: 100%;
  }
}
.contact-us .wrapper .cont .content-holder ul li .title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-us .wrapper .cont .content-holder ul li .title .icon {
  width: 10%;
  margin: 0;
  padding: 0;
}
.contact-us .wrapper .cont .content-holder ul li .title .icon img {
  width: 100%;
}
.contact-us .wrapper .cont .content-holder ul li .title .text {
  width: 85%;
  font-size: 1.5rem;
  color: #008373;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
.contact-us .wrapper .cont .content-holder ul li .desc {
  width: 100%;
  font-size: 1.2rem;
  color: #202020;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  margin-top: 0.5rem;
}
.contact-us .wrapper .cont .content-holder ul li .desc a {
  color: #202020;
  text-decoration: none;
}
.contact-us .wrapper .form-container {
  width: 30%;
  background: rgb(0, 113, 103);
  background: linear-gradient(221deg, rgb(0, 113, 103) 0%, rgba(0, 113, 103, 0.520067402) 75%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 20px;
  border: 2px solid #ffffff;
}
@media (max-width: 480px) {
  .contact-us .wrapper .form-container {
    width: 100%;
    margin-top: 2rem;
  }
}
.contact-us .wrapper h3 {
  font-size: 1.5rem;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.contact-us .wrapper .form-group {
  width: 100%;
  margin: 0 0 1rem 0;
}
.contact-us .wrapper .form-group input {
  width: 100%;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
}
.contact-us .wrapper .form-group input::-moz-placeholder {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
}
.contact-us .wrapper .form-group input::placeholder {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
}
.contact-us .wrapper .form-group textarea {
  width: 100%;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
}
.contact-us .wrapper .form-group textarea::-moz-placeholder {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
}
.contact-us .wrapper .form-group textarea::placeholder {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
}
.contact-us .wrapper #formSubmitStatus {
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}
.contact-us .wrapper button[type=submit] {
  width: auto;
  padding: 0.6rem 2.5rem;
  border-radius: 30px;
  border: 1px solid #007167;
  background: #ffffff;
  color: #007167;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

@font-face {
  font-family: "monigue_demoregular";
  src: url("../fonts/moniguedemo-webfont.woff2") format("woff2"), url("../fonts/moniguedemo-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}/*# sourceMappingURL=main.css.map */