/*
    ---01 TYPOGRAPHY SYSTEM 

    
    -----FONT SIZES SYSTEM (px)
      10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

    
      ---Font weight
    Default: 400

    
    ----Line height
    Default: 1.8

      ----- 02 COLOR
    
      Primary: #e67e22

      ----Tints: 
 #cf711f;
 #51cf66
 

      #fdf2e9
      
      ----Shade: 
      ----Accents:
      ----Gray: 
      #555
      #333


      -------03 SHADOWS

      --------04 BORDER-RADIUS

      --------05 WHITESPACE

      SPACING SYSTEM (px)
      2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
      
      */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  color: #333;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
.navigation-list {
  display: flex;
  gap: 3.2rem;
  list-style: none;
  transition: all 1s;
  align-items: center;
}
.nav-links {
  text-decoration: none;
  font-size: 1.8rem;
  color: #555;
  font-weight: 600;
}
.nav-links:link,
.nav-links:visited {
  text-decoration: none;
  font-size: 1.8rem;
  color: #555;
  font-weight: 600;
  transition: all 0.3s;
}
.nav-links:hover,
.nav-links:active {
  text-decoration: none;
  font-size: 1.8rem;
  color: #cf711f;
  font-weight: 600;
  display: inline-block;
}
/* MOBILE */
.NAV-ICONS {
  display: none;
}

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}
.icon-mobile-nav {
  font-size: 4.8rem;
  color: #333;
}
.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.Navigation {
  height: 9.6rem;
  background-color: #fdf2e9;
  display: flex;
  padding: 4.8rem 4.8rem 8rem 4.8rem;

  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 7.4rem;
}
.nav-CTA:link,
.nav-CTA:visited {
  padding: 1.2rem 2.4rem;
  background-color: #e67e22;
  border-radius: 11px;
  color: #fff;
  display: inline-block;
}
.nav-CTA:hover,
.nav-CTA:active {
  padding: 1.2rem 2.4rem;
  background-color: #cf711f;
  border-radius: 11px;
  color: #fff;
}

/* HELPER CLASS */
/* HELPER CLASS */

/* margin-bottom: 4.5rem; */
/* HELPER CLASS */

/* CONTAINER / RE-USABLE GRID */
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 9.6rem 2.4rem;
}
/* HELPER CLASS */
.margin-helper {
  margin-bottom: 8rem !important;
}
.padding-helper {
  padding-top: 0 !important;
  padding-bottom: 0rem !important;
}
.paddintop {
  padding-top: 4.8rem !important;
}
.padding-2-helper {
  padding-top: 9.6rem !important;
  padding-bottom: 4.8rem !important;
}
.padding-bottom2-helper {
  padding-bottom: 4.8rem !important;
}
.margin-b {
  margin-bottom: 0 !important;
}
/* HELPER CLASS */

.grid {
  display: grid;
  gap: 3rem;
}
.two-grid-temp-colum {
  grid-template-columns: 48fr 52fr;
}
.grid-how {
  display: grid;
  row-gap: 6.8rem;
}
.two-grid-template-colum {
  grid-template-columns: repeat(2, 1fr);
}
/*RE-USABLE GRID  */

/* HERO */
.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 6.4rem 2rem 4.8rem 2.4rem;
}

.header {
  background-color: #fdf2e9;
}

.tertiary-header {
  font-size: 5rem;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
  letter-spacing: -1px;
  word-spacing: 2px;
  color: #333;
  line-height: 1;
}
.hero-img {
  width: 100%;
}
.hero-sub-contents {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 2.4rem;
  color: #777;
  margin-bottom: 3.2rem;
}
.hero-CTA-list {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  margin-top: 4.8rem;
}
.hero-CTA-links:link,
.hero-CTA-links:visited {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background-color: #e67e22;
  border-radius: 11px;
  padding: 1.2rem 2.4rem;
  transition: all 0.3s;
  display: inline-block;
  margin-top: -1.2rem;
}
.hero-CTA-links:hover,
.hero-CTA-links:active {
  background-color: #cf711f;
}
.learn-more:link,
.learn-more:visited {
  background-color: #fff;
  color: #cf711f;
}
.learn-more:hover,
.learn-more:active {
  background-color: #fdf2e9;
  color: #cf711f;
  box-shadow: inset 0 0 0 4px #fff;
}
.social-proves {
  display: flex;
  margin-top: 4.8rem;
  align-items: center;
}
.social-prov-img {
  height: 4.8rem;
  border-radius: 100px;
  margin-left: -1.2rem;
  border: solid 3px #fff;
}
.social-decription {
  font-size: 1.6rem;
  font-weight: 500;
  color: #666;
}
.social-decription-span {
  color: #e67e22;
  margin-left: 1.8rem;
}
/* HERO */

/* FEATURE- */
.featured-in-con {
  padding: 4.8rem 0;
}
.featured-in {
  border-bottom: 2.2px dotted rgba(201, 201, 201, 0.556);
  /* border-top: 2px dotted rgb(201, 201, 201); */
  background-color: rgba(246, 246, 246, 0.183);
}
.featured-in-header {
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  color: #777;
}
.featured-in-img {
  opacity: 50%;
  filter: brightness(0);
  height: 3.2rem;
}
.feature-in-logos {
  display: flex;
  gap: 3.2rem;
  padding-bottom: 2.4rem;
  justify-content: space-around;
}

/* FEATURE- */

/* HOW T WORKS- */
.section-tag {
  font-size: 1.8rem;
  font-weight: 600;
  color: #cf711f;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.secondary-heading {
  font-size: 4.5rem;
  line-height: 1;
  color: #333;
  margin-bottom: 4.8rem;
  font-weight: 700;
  /* text-align: center; */
}
.how-it-work-cont {
  padding: 9.6rem 2.4rem;
}
.how--work-grid {
  padding: 4.8rem 0;
}
.number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #9999;
  display: inline-block;
}
.how-work-header {
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
}
.contents-how {
  line-height: 1.6;
  font-size: 1.8rem;
  color: #555;
  margin-top: 3.2rem;
}
.app-img {
  width: 35%;
}
.how-it-work-app-image-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.app-img {
  z-index: 2;
}
.how-it-work-app-image-cont::after {
  content: "";
  padding-bottom: 60%;
  width: 60%;
  background-color: #fbf0e7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.how-it-work-app-image-cont::before {
  content: "";
  padding-bottom: 50%;
  width: 45%;
  background-color: #fff9f4e7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
/* HOW T WORKS- */

/* MEALS- */

.meal-headers-con {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 4.5rem;
}
.meal-grid {
  display: grid;
  gap: 6.4rem;
  padding: 9.6rem;
}
.meal-grid-temp-con {
  grid-template-columns: repeat(3, 1fr);
}
.meals-card-section {
  padding: 8rem 0 0 2.4rem;
}
.meal-img {
  width: 100%;
}
.container.meal.addintop {
  margin-top: 0;
  padding-top: 0;
}
.meal-list {
  font-size: 1.8rem;
  font-weight: 400;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.meal-tag-1 {
  padding: 0.4rem 0.8rem;
  background-color: #51cf66;
  display: inline-block;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.8rem;
}
.meal-tag-01 {
  padding: 0.4rem 0.8rem;
  background-color: #45260a;
  display: inline-block;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.8rem;
  color: #f9e18a;
}
.meal-card--header {
  font-size: 2.4rem;
  margin-top: 1.6rem;
  font-weight: 600;
}
.meal-card-text-info {
  padding: 2.4rem 3.2rem 3.2rem 3.2rem;
}
.meal-card {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.104);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.3s;
}
.meal-card:hover {
  transform: translateY(-1.2rem);
}
.meal-list-con {
  margin-top: 3.2rem;
}
.meal-icon {
  margin-right: 1.2rem;
  font-size: 2.4rem;
  text-align: center;
  color: #e67e22;
}
.card-list-flex-con {
  display: flex;
  align-items: center;
}
.rating,
.nutriscore,
.calories {
  color: #555;
}
.and {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0 0.4rem;
}
.navive-soup {
  background-color: #eda007;
  padding: 0.6rem 1.2rem;
  color: #fff;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.work-with-any-diet-header {
  font-size: 3rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
.work-with-li {
  display: flex;
  align-items: center;
}
.work-with-list-item {
  font-size: 1.8rem;
  color: #555;
}
.work-with-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  line-height: 1.8;
}
.work-with-icon {
  font-size: 2.4rem;
  margin-right: 1.2rem;
  color: #e67e22;
}

.recip-cont {
  padding: 4.8rem;
  display: flex;
  justify-content: center;
}
.recipe:link,
.recipe:visited {
  color: #e67e22;
  text-decoration: none;
  padding: 0.6px 0;
  border-bottom: solid 1px #e67e22;
  transition: all 0.3s;
  display: inline-block;
  font-size: 1.8rem;
}
.recipe:hover,
.recipe:active {
  border-bottom: solid 1px transparent;
  color: #cf711f;
}
/* TESTIMONIALS */
.testimonial-section {
  display: grid;
  grid-template-columns: 55fr 45fr;
  background-color: #fdf2e9;
  align-items: center;
}
.try-it {
  padding-bottom: 0.1rem;
  border-bottom: #e67e22 solid 3px;
}
.text-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 6.4rem;
  column-gap: 2.4rem;
}
.testimonia-container {
  padding: 0 4.8rem;
}

.customers-name {
  font-size: 1.4rem;
  color: #777;
  margin-top: 1.2rem;
}
.qoute-img {
  width: 5rem;
  border-radius: 50%;
}
.quotes {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #555;
}
.testimonia-img {
  overflow: hidden;
}
.gallary-pix {
  display: block;
  width: 100%;
  transition: all 0.4s;
  filter: contrast(0.8);
}
.gallary-pix:hover {
  transform: scale(1.1);
}

.testimonial-gallary-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding: 0.8rem;
}
.qoute-img {
  margin-bottom: 0.8rem;
}
.margin-bottom {
  margin-bottom: 9rem;
}
.margin-top {
  margin-top: 3.2rem;
  display: inline-block;
}
/* MEALS- */

/* TESTIMONIAL-SECTION */

/* TESTIMONIAL-SECTION */
/* 
    -----FONT SIZES SYSTEM (px)
      10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
      SPACING SYSTEM (px)
      2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
            Primary: #e67e22

      ----Tints: 
 #cf711f;
 #fdf2e9
  
 container
*/
