h1 {
  font-family: kari, serif;
  color: #DF6A2E;
  font-size: 3.25rem;
  grid-column: 2/3;
  margin-top: 3vh;
  margin-left: 2vw;
}

.nav-background {
  grid-row: nav;
  background-image: url("../img/blue-outline-tiles.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  grid-column: 1/-1;
}

.tiles {
  position: static;
  top: auto;
  grid-row: auto;
}

.tiles.footer {
  position: relative;
  top: 5vh;
}

section {
  grid-column: container;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 7vh [content] minmax(30vh, auto) 5vh;
  -moz-column-gap: 2vw;
  column-gap: 2vw;
  padding: 0 2vw;
}
section .col {
  grid-column: 1/2;
  grid-row: content;
}
section h2 {
  font-family: kari, sans-serif;
  color: #1E355E;
  font-size: 2.75rem;
  grid-column: 1/-1;
  align-self: end;
  line-height: 1em;
  margin-bottom: 1rem;
  /* text-transform: uppercase; */
}
section .col.reverse {
  grid-column: 2/3;
}
section .image {
  grid-row: content;
  grid-column: 2/3;
}
section .image img {
  width: 100%;
}
section .image.reverse {
  grid-column: 1/2;
}
section .boxed-content {
  padding: 2rem;
  border: 1px solid #DF6A2E;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
}
section .boxed-content h3,
section .boxed-content .combo-price {
  grid-row: 1/2;
  grid-column: 1/-1;
  font-family: kari, sans-serif;
  font-size: 1.5em;
  color: #DF6A2E;
}
section .boxed-content .combo-price {
  justify-self: right;
  align-self: end;
}
section .boxed-content .combo-price::before {
  content: "$";
}
section .boxed-content h3.protein-heading {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
section .boxed-content h4 {
  font-family: kari, sans-serif;
  font-size: 1.25em;
  color: #1E355E;
  margin-top: 1rem;
}
section .boxed-content .left {
  grid-row: 2/3;
  grid-column: 1/2;
}
section .boxed-content .right {
  grid-row: 2/3;
  grid-column: 2/3;
}

.item,
.boxed-content.protein {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2em;
  -moz-column-gap: 2vh;
       column-gap: 2vh;
}
.item h3,
.item .item-price,
.boxed-content.protein h3,
.boxed-content.protein .item-price {
  font-size: 1.25rem;
  font-family: kari, serif;
  color: #DF6A2E;
}
.item h3,
.boxed-content.protein h3 {
  flex-basis: 70%;
}
.item .item-price,
.boxed-content.protein .item-price {
  flex-basis: 20%;
  text-align: right;
}
.item .item-price::before,
.boxed-content.protein .item-price::before {
  content: "$";
}
.item .item-ingredients,
.boxed-content.protein .item-ingredients {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  flex-basis: 25rem;
}

@media screen and (max-width: 480px) {
  h1 {
    grid-column: 1/-1;
    margin-left: 5vw;
  }
  section {
    grid-template-columns: 1fr;
    grid-template-rows: [tiles] auto [heading] auto [image] auto [content] minmax(30vh, auto) 5vh;
    padding: 5vw;
  }
  section .col,
section .col.reverse,
section .image,
section .image.reverse {
    grid-column: 1/-1;
  }
  section .image,
section .image.reverse {
    grid-row: image;
    margin-bottom: 5vw;
  }
  section h2 {
    grid-row: heading;
  }
}/*# sourceMappingURL=menu.css.map */