.shop-container {
  z-index: 1;
  position: relative;
}
.mid-page {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 24px;
  color: #000;
  font-weight: 100;
  text-align: center;
}
.mid-page-text {
  width: 80%;
  align-self: center
}
.banner-parent {
  position: relative;
  width: 100%;
  margin-bottom: 48px;
  height: 350px;
/*  background-image: url(/media/static/images/banner-pattern-green3.png);*/
/*
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
*/
}
.banner-buttons-container {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.banner-parent img, .banner-parent img[src*=".svg"] {
  height: 350px;
  width: auto;
}
.bannerBtn {
  display: inline-block;
  padding: 16px 20px 16px 20px;
  margin: 6px 0 6px 0;
  border-radius: 40px;
  border: 2px white solid;
  width: 400px;
  background: #245C2E;
  color: #FFF;
  text-align: center;
  font-weight: 300;
  font-size: 2.25rem;
  letter-spacing: .5px;
  font-family: filson-soft, sans-serif;
  font-style: normal;
  /*  border-right: 4px solid #245C2E;*/
  box-shadow: inset 0 0 0 0 #245C2E;
  -webkit-transition: ease-out 0.5s;
  -moz-transition: ease-out 0.5s;
  -ms-transition: ease-out 0.5s;
  -o-transition: ease-out 0.5s;
  transition: ease-out 0.5s;
}
.bannerBtn:hover, .bannerBtn:focus {
  background: #EDF3D6;
  color: black;
  text-decoration: none;
  /*  box-shadow: inset 200px 0 0 0 #245C2E;*/
}
.how-to-shop-home {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%
}
.how-to-shop-circle-home {
  background-color: rgba(175, 210, 65, .15);
  border-radius: 50%;
  position: absolute;
  height: 115px;
  width: 115px;
}
.how-to-shop-item-home {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  width: 250px;
  text-align: center;
}
.how-to-shop-item-header-home {
  font-weight: bold;
  font-size: 1.25rem;
  font-family: filson-soft, sans-serif;
  font-style: normal;
}
@media only screen and (max-width: 1024px) {
  .how-to-shop-home {
    gap: 10px;
  }
}
@media only screen and (max-width: 749px) {
  .mid-page-text {
    width: 100%;
    margin: auto;
  }
  .banner-parent {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -ms-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
  }
  .bannerBtn {
    font-size: 1.5rem;
    width: 300px;
    padding: 6px 20px 6px 20px;
  }
  .banner-buttons-container {
    top: 75px;
  }
}