




.section-hero {
    font-size: 62.5%;

  background-color: rgb(210 229 211);
  padding: 1.4rem 0 1.6rem 0;
}

.hero {
 
  max-width: 130rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 4.3rem;
  margin: 0 auto;
  align-items: center;
  gap: 0 6rem;
}

.heading-primary {
  font-size: 3.5rem;
  color: #333;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.7rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.hero-img-box {
  grid-column: 2/2;
  grid-row: 1 / 2;
}

.hero-img {
  width: 100%;
}

.btn:link,
.btn:visited {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  margin-bottom: 15px;
  /* margin-top: 4.8rem; */
  padding: 0.8rem 1rem;
  text-decoration: none;

  transition: background-color 500ms;
}

.btn--fill:link,
.btn--fill:visited {
  background-color: #618264;
  color: #fff;
}

.btn--outline:link,
.btn--outline:visited {
  color: #555;
  background-color: #fff;
}

.btn--fill:hover,
.btn--fill:active {
  background-color: #89a78c;
  text-decoration: none;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #69845d;
  /* Now we'll not use border as in border the outlines are on the outside. Instead we'll use the outline or box-shadow property */
  box-shadow: inset 0px 0px 0px 3px #fff;
  text-decoration: underline;
  /* outline: #fff solid 3px; */
}

/* We'll create a utility class that can be used for any element by simply adding a class. */
.margin-right-btn {
  margin-right: 2.4rem;
}

.delivered-meals {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.delivered-imgs img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  outline: #fdf2e9 solid 3px;
}

.delivered-text {
  font-size: 1.7rem;
  font-weight: 600;
}

.delivered-text span {
  color: #2f3e30;
}
@media only screen and (max-width: 480px) {
    .hero{
        display: block;
        padding: 0 1.3rem;

    }
    .heading-primary{
        margin-top: 70px;
        font-size: 2.5rem;

    }
}