/* 

01 TYPOGRAPHY SYSYEM
/*
- SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

- FONT WEIGHT:
Default: 400

- LINE HEIGHTS:

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

--02 COLORS

Primary: #e67e22

Tints:
Shades:
Accent:
Greys:

--03 -UI FACES SITE


--03 SHADOW

06 BORDER-RADIUS

---07 WHITESPACE
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* scroll-behavior: smooth; */
}

*:focus {
  outline: 10px solid rgba(255, 211, 173, 0.5);
  /* outline: 4px dotted #e67e22; */
  outline-offset: 18px solid rgba(230, 125, 34, 0.5);
  box-shadow: 0 0 0 0.9rem rgba(230, 125, 34, 0.5);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  /* 1rem = 16px */
}

body {
  position: relative;
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-y: hidden;
}
.nav-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 9.6rem;
  padding: 0 3rem;

  background-color: #fdf2e9;
}
.logo {
  height: 2.2rem;
}

.main-nav-list {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  list-style: none;
  font-weight: 500;
}

.btn-mobile-nav {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

/* for navigation iocn */
.btn-mobile-nav [name="close-outline"] {
  display: none;
}

.icon-mobile-nav {
  width: 4.8rem;
  height: 4.8rem;
  color: #555;
}

.main-nav-link:link,
.main-nav-link:visited {
  font-size: 1.8rem;
  text-decoration: none;
  display: inline-block;
  color: #333;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #e67e22;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 130rem;
  margin: 0 auto;
  align-items: center;
  padding: 0 3.2rem;
  gap: 9.6rem;
}

.ctrl-btn:link,
.ctrl-btn:visited {
  background-color: #e67e22;
  padding: 1.2rem 2.4rem;
  color: rgb(255, 255, 255);
  border-radius: 8px;
  transition: 0.3s;
}

.ctrl-btn:hover,
.ctrl-btn:active {
  background-color: #cf711f;
}

.delivered-imgs {
  display: flex;
}
.hero-img {
  width: 100%;
}
.delivered-meals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 8rem;
}
.delivered-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fdf2e9;
}
.delivered-text span {
  color: #cf711f;
  font-weight: 700;
}
.delivered-imgs img:last-child {
  margin: 0;
  margin-right: 0rem;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.section-hero {
  background-color: #fdf2e9;
  padding: 4.8rem 0 9.6rem 0;
}

.heading-primary {
  font-size: 5.2rem;
  margin-bottom: 3.2rem;
  line-height: 1.05;
}
.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-primary,
.heading-secondary {
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #333;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}
.btn:link,
.btn:visited {
  color: white;
  font-size: 2rem;
  padding: 1.6rem 3.2rem;
  text-decoration: none;
  border-radius: 9px;
  display: flex;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
}
.btn--full:link,
.btn--full:visited {
  background-color: #e67e22;
}
.btn--outline:link,
.btn--outline:visited {
  background-color: white;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fdf2e9;
  box-shadow: inset 0 0 0 3px #fff;
  color: #555;
  margin-left: 1.4rem;
}

.btn--full:hover,
.btn--full:active {
  background-color: #cf711f;
}
.margin-right-sm {
  margin-right: 1.6rem !important;
}
.heading-featured-in {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  opacity: 50%;
  filter: brightness(0);
}

.logos {
  display: flex;
  justify-content: space-around;
}
.logos img {
  height: 3.2rem;
  opacity: 50%;
  filter: brightness(0);
}
.section-featured {
  padding: 4.8rem 0 3.2rem 0;
}
.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.section-how {
  padding: 9.6rem 0;
}

.grid {
  display: grid;
  row-gap: 9.6rem;
  column-gap: 5rem;
}

.grid-center-v {
  align-items: center;
}

.grid--col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--col-3 {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6.8rem;
  row-gap: 6.4rem;
}
.step-img {
  width: 35%;
}

.step-number {
  font-size: 9.8rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.sub-heading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  color: #333;
}
.step-description {
  font-size: 1.7rem;
  line-height: 1.8;
}
.step-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.step-img-box::after,
.step-img-box::before {
  content: "";
  display: block;

  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  z-index: -2;
  width: 60%;
  padding-bottom: 60%;
  background-color: #fdf2e9;
}

.step-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #fae5d3;
  z-index: -1;
}
.section-meal {
  padding: 9.6rem 0;
}
.meal-img {
  width: 100%;
}
.meal-title {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 2rem;
}
.meal-attribute {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.meal-attributes {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  gap: 1.8rem;
}
.meal-attribute-gap {
  gap: 1.6rem;
}

.meal-icon {
  color: #cf711f;
  height: 2.4rem;
  width: 2.4rem;
}
.meal-icons {
  color: #e67e22;
  font-size: 3.2rem;
}
strong {
  font-weight: 500;
}
.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2em;
  color: #333;
  text-transform: uppercase;
  border-radius: 100px;
  font-weight: 600;
}

.tag--vegan {
  background-color: #94d82d;
}
.tag--vegeatarian {
  background-color: #51cf66;
}
.tag--paleo {
  background-color: #ffd43b;
  margin-left: 0.6rem;
}
.meal-tag,
.meal-tags {
  margin-bottom: 1.2rem;
}
.meal {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s;
}
.meal-content {
  padding: 3.2rem 4.8rem;
  padding-bottom: 5rem;
}
.meal-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}
.diet-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #333;
}
.center-text {
  text-align: center;
}
.all-recipes {
  text-align: center;
  font-size: 1.8rem;
}
.link:link,
.link:visited {
  display: inline-block;
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}
.link:hover,
.link:active {
  color: #cf711f;
  border-bottom: 1px solid transparent;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.section-testimonials {
  background-color: #fdf2e9;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.testimonials-container {
  padding: 9.6rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.1);
}
.gallery-item img:hover {
  transform: scale(1.1);
}
.meal:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.075);
}
.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.ml-auto img {
  height: 11.6rem;
}
.d-lg-flex {
  display: flex;
  align-items: center;
  /* align-items: center;
  justify-content: center; */
  /* margin: 2rem auto;
  max-width: 85rem; */
  max-width: 95rem;
  gap: 3rem;
}
h4 {
  font-size: 33px;
  line-height: 41.21px;
  margin-bottom: 1.6rem;
  color: #333;
}
.text {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.fw-medium {
  font-size: 1.6rem;
}
.investments {
  display: flex;
  justify-content: center;
  padding: 10rem;
}
.content {
  color: #333;
  margin-left: 22px;
}
.col-md-4 {
  padding-left: 135px;
}

/* Mobile phone section */

.img-phone {
  height: 57rem;
  padding-left: 18rem;
}
.access-grid-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100rem;
  align-items: center;
  margin: 8rem auto;
  margin-bottom: 0;
}
.access-title {
  font-size: 4.5rem;
  font-weight: 600;
  color: #333;
}
.title-explanation {
  font-size: 1.7rem;
  line-height: 1.5;
  margin-top: 2.3rem;
  margin-bottom: 3.5rem;
}
a.linka:link {
  font-size: 1.7rem;
  font-weight: 300;
  color: #c9a1f5;
}
.return {
  font-size: 1.7rem;
  font-weight: 500;
  display: inline-block;
  padding: 1.5rem;
  color: #7813e5;
  background-color: #f2e7fcc4;
  margin-bottom: 3rem;
  border-radius: 30px;
}
.img-box,
.small-box {
  position: relative;
}
.img-box::after,
.img-box::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 33%;
  border-radius: 50%;
  display: block;
}
.img-box::before {
  width: 25%;
  padding-bottom: 25%;
  background-color: #ffffff;
  z-index: -1;
}
.img-box::after {
  width: 60%;
  padding-bottom: 60%;
  background-color: #f2e7fcb9;
  z-index: -2;
}
.small-box::after,
.small::before {
  content: "";
  position: absolute;
  transform: translate(50%, -50%);
  top: 50%;
  left: 33%;
  border-radius: 50%;
  display: block;
}

.small-box::before {
  width: 15%;
  padding-bottom: 15%;
  background-color: #9a3131;
  z-index: 3;
}

.small-box::after {
  width: 15%;
  padding-bottom: 15%;
  background-color: #602d91b9;
  z-index: 1;
}

.pricing {
  margin-top: 12rem;
}
.price-card-box-right {
  justify-self: start;
}
.price-card {
  padding: 5rem;
  padding-bottom: 6rem;
  display: inline-block;

  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
.price-card-shadow {
  box-shadow: 0 0 0.2rem #e67d229c;
}

.bg-color {
  background-color: #cf711f13;
}

.starter-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #e67e22;
  margin-bottom: 4rem;
}

.starter-price {
  font-size: 6.3rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: #333;
}

.starter-info {
  text-align: center;
  font-size: 1.6rem;
}

.details {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}

.sym {
  font-size: 3rem;
}

.micon {
  font-size: 2.6rem;
  margin-right: 1rem;
}

.starter-detail {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.button-start {
  display: inline-block;
  margin-top: 6rem;
  background-color: #e67e22;
  padding: 2rem 3rem;
  font-size: 2rem;
  color: white;
  font-weight: 700;
  border-radius: 1rem;
  cursor: pointer;
  text-align: center;
}

.eating-button {
  display: flex;
  justify-content: center;
}

.price-card-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem;
  margin-bottom: 5rem;
}
.price-card-box-left {
  justify-self: end;
}

.price-paragraph {
  font-size: 1.8rem;
  margin-bottom: 9.6rem;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.price-card-tag::after {
  content: "best value";
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.5rem;
  position: absolute;
  top: 40px;
  right: -50px;
  padding: 0.7rem 5.4rem;
  background-color: #ffd43b;
  transform: rotate(47deg);
}

.main-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.7rem;
}
.feature-box {
  margin-top: 0;
}
.main-title-paragraph {
  font-size: 1.8rem;
  line-height: 1.8;
}
.ficons {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #fdf2e9;
  padding: 1.6rem;
  border-radius: 50%;
  margin-bottom: 3.2rem;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 9.6rem;
  gap: 6.4rem;
}

.sign-up {
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-top: 10rem;
  background-image: linear-gradient(to right bottom, #eb984e, #e67e22);
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  border-radius: 2rem;
  overflow: hidden;
}
.sinx {
  margin-top: 12rem;
}

.signup-img {
  background-image: linear-gradient(
      to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(230, 125, 34, 0.35)
    ),
    url(../img/eating.jpg);
  background-size: cover;
  width: 100%;
  background-position: center;
}
.sign-title {
  font-size: 4.4rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #45260a;
}
.sign-paragraph {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 5rem;
  color: #45260a;
}
.sign-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #45260a;
}
.containers {
  padding: 8rem;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}
.btn--form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}
.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
  column-gap: 4.8rem;
  row-gap: 6.4rem;
}
.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  filter: brightness(0);
  opacity: 60%;
  margin-bottom: 6rem;
}

.footer {
  margin-top: 12rem;
  border-top: 1.4px solid rgba(51, 51, 51, 0.122);
  padding-top: 12rem;
  padding-bottom: 10rem;
}

.footer-logo {
  margin-bottom: 3rem;
}
.Copyright {
  margin-top: auto;
  font-size: 1.4rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}
.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

/* STICKY NAV */
.sticky .nav-heading {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.986);
  z-index: 999;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 7rem 0.1rem 1rem 1.2rem rgba(0, 0, 0, 0.03);
}

.sticky.section-hero {
  margin-top: 9.6rem;
}
