#intro {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #intro {
    height: 500px;
  }
}
#intro:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100px;
  background: white;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
@media screen and (min-width: 768px) {
  #intro:after {
    height: 180px;
  }
}

#recipe-detail {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  #recipe-detail {
    padding-top: 50px;
  }
}
#recipe-detail h1.name {
  color: #222;
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #recipe-detail h1.name {
    margin-bottom: 30px;
    font-size: 60px;
  }
}
#recipe-detail h2 {
  color: #222;
  font-weight: bold;
  font-size: 32px;
  line-height: 0.8;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #recipe-detail h2 {
    margin-bottom: 30px;
    font-size: 48px;
  }
}
#recipe-detail .ingredients-table,
#recipe-detail .steps-table {
  padding-bottom: 30px;
}
#recipe-detail .ingredients-table .title,
#recipe-detail .steps-table .title {
  color: #222;
  font-size: 20px;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #recipe-detail .ingredients-table .title,
#recipe-detail .steps-table .title {
    font-size: 30px;
  }
}
#recipe-detail .ingredients-table .subtitle,
#recipe-detail .steps-table .subtitle {
  color: #222;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  #recipe-detail .ingredients-table .subtitle,
#recipe-detail .steps-table .subtitle {
    font-size: 24px;
  }
}
#recipe-detail .ingredients-table li {
  font-family: Work Sans;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  #recipe-detail .ingredients-table li {
    font-size: 15px;
  }
}
#recipe-detail .steps-table img {
  margin-bottom: 15px;
  border-radius: 10px;
}
#recipe-detail .steps-table p {
  font-family: Work Sans;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  #recipe-detail .steps-table p {
    font-size: 15px;
  }
}
#recipe-detail .product-link {
  background-color: #F7F7F7;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}
#recipe-detail .product-link .name {
  font-size: 18px;
  font-weight: bold;
}
#recipe-detail .product-link a {
  font-family: Montserrat;
  font-weight: 500;
  line-height: 17px;
  display: inline-block;
  color: #162F23;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  font-size: 14px;
}
#recipe-detail .product-link a:hover {
  color: #162F23;
  text-decoration: none;
}

#related-recipes {
  background-image: url("https://green-life.s3.us-west-2.amazonaws.com/products/wood-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}
#related-recipes .circle-icon {
  background-color: #FFFFFF;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
#related-recipes .circle-icon img {
  width: 50%;
  height: auto;
}
#related-recipes h2.title {
  padding-top: 10px;
  font-family: Josefin Sans;
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #related-recipes h2.title {
    padding-top: 20px;
    font-size: 48px;
  }
}
#related-recipes .swiper-button-next,
#related-recipes .swiper-button-prev {
  color: #FFFFFF;
}

.recipe-item {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .recipe-item {
    margin-bottom: 40px;
  }
}
@media (min-width: 425px) {
  .recipe-item .recipe {
    max-width: 395px;
  }
}
.recipe-item .recipe-img {
  border-radius: 10px 10px 0 0;
  display: block;
}
.recipe-item figure {
  margin: 0;
}
.recipe-item .info {
  border-radius: 0 0 10px 10px;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .recipe-item .info {
    padding: 25px;
  }
}
.recipe-item .name {
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 5px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .recipe-item .name {
    font-size: 24px;
    line-height: 24px;
    height: 80px;
  }
}
.recipe-item .description {
  font-size: 12px;
  line-height: 14px;
  height: 28px;
  color: #fff;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .recipe-item .description {
    font-size: 16px;
    line-height: 18px;
    height: 54px;
  }
}
.recipe-item a {
  font-family: Montserrat;
  font-weight: 500;
  line-height: 17px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  font-size: 14px;
}
.recipe-item a:hover {
  color: #fff;
  text-decoration: none;
}

.recipe-arvejas .info {
  background-color: #dd9b23;
}

.recipe-chauchas .info {
  background-color: #bdbc27;
}

.recipe-choclo .info {
  background-color: #edc65b;
}

.recipe-mix-primavera .info {
  background-color: #cb5b6f;
}

.recipe-acelga .info {
  background-color: #4799d1;
}

.recipe-brocoli .info {
  background-color: #659639;
}

.recipe-espinaca .info {
  background-color: #A96299;
}