.blurb {
  background: #fff;
  padding: 8%;
  border-radius: 10px;
  box-shadow: 1px 1px 15px rgba(80, 36, 123, 0.24);
}
.blurb__headline {
  font-family: "Quicksand", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 150%;
}
.blurb__image {
  width: 100px;
}
@media screen and (max-width: 1024px) {
  .blurb__image {
    margin: auto;
  }
}
.blurb__link {
  align-items: stretch;
  display: flex;
}
@media screen and (min-width: 768px) {
  .blurb--single {
    padding: 8% 12%;
  }
  .blurb--single img {
    margin-bottom: 20px;
  }
  .blurb--row {
    display: flex;
  }
  .blurb--row .blurb__content {
    margin-left: 20px;
  }
}

a > .blurb {
  color: #4a4a4a;
  transition: 0.2s ease;
}
a > .blurb:hover {
  box-shadow: 4px 3px 20px rgba(80, 36, 123, 0.3);
  transition: 0.2s ease;
}

.brands {
  padding: 0 5%;
}
@media screen and (min-width: 1024px) {
  .brands {
    padding: 0;
  }
}

.brand {
  border: 4px solid;
  border-radius: 10px;
  padding: 15% 5% 10% 5%;
  position: relative;
  text-align: center;
  margin: 5%;
  display: flex;
  justify-content: space-evenly;
}
@media screen and (min-width: 768px) {
  .brand {
    margin: 0;
  }
}
.brand--mommy-and-me-art-box {
  border-color: #50247b;
}
.brand--daddy-and-me-art-box {
  border-color: #3273dc;
}
.brand--create-together-art-box {
  border-color: #e50052;
}
.brand--my-artist-box {
  border-color: #19baed;
}
@media screen and (min-width: 768px) {
  .brand__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.brand__logo {
  width: 240px;
  margin: auto;
  border: 4px solid;
  display: flex;
  border-radius: 50px;
  position: absolute;
  height: 84px;
  top: -42px;
  left: 0;
  right: 0;
  background: #fff;
  justify-content: center;
  align-items: center;
}
.brand__logo > img {
  max-height: 80px;
}
.brand__logo--mommy-and-me-art-box {
  border-color: #50247b;
}
.brand__logo--daddy-and-me-art-box {
  border-color: #3273dc;
}
.brand__logo--create-together-art-box {
  border-color: #e50052;
}
.brand__logo--my-artist-box {
  border-color: #19baed;
}
.brand__featured-image {
  border-radius: 10px;
  margin-top: 20px;
  max-height: 340px;
}
.brand__link {
  text-transform: uppercase;
  text-decoration: underline;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .brand__logo {
    width: 210px;
    height: 76px;
    top: -42px;
  }
  .brand__logo > img {
    max-height: 64px;
  }
}
.related-product {
  margin-bottom: 10px;
  padding: 15px;
  border: 3px solid transparent;
  display: inline-block;
  transition: 0.1s ease;
  text-align: center;
}
.related-product:hover {
  border: 3px solid #E1C3FF;
  box-sizing: border-box;
  border-radius: 10px;
  transition: 0.1s ease;
}
.related-product__image {
  max-width: 200px;
  margin: auto;
}
.related-product__image img {
  border-radius: 10px;
}
.related-product__info {
  margin-top: 15px;
  margin-bottom: 10px;
}

.-boxed {
  border: 2px solid #eee;
  border-radius: 30px;
  padding: 20px;
}

.home-hero {
  background-image: url(/img/hero/hero-superfunboxes.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 0 4% 7% 2%;
}
@media screen and (min-width: 768px) {
  .home-hero {
    padding: 0 5% 5% 5%;
  }
}
.home-hero__badge {
  padding: 5%;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  font-family: "Quicksand", sans-serif;
  font-style: normal;
  font-weight: bold;
  line-height: 150%;
  max-width: 240px;
  position: relative;
  left: 3%;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .home-hero__badge {
    padding: 3%;
    left: 6%;
    font-size: 28px;
    max-width: 320px;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero__badge {
    font-size: 40px;
    max-width: 420px;
  }
}
.home-hero__badge--purple {
  background: #50247b;
  color: #ffffff;
}
.home-hero__frame {
  position: absolute;
  right: 0;
  width: 50vw;
  max-width: 750px;
  top: 15%;
}
@media screen and (min-width: 600px) {
  .home-hero__frame {
    top: -10%;
  }
}
.home-hero__author {
  font-family: "Manrope", sans-serif;
}

.home-intro {
  padding: 0% 10%;
}
@media screen and (min-width: 1024px) {
  .home-intro {
    padding: 0 0 5% 0;
  }
}

.specials {
  position: relative;
}
@media screen and (max-width: 768px) {
  .specials {
    background: #EFEFEF;
  }
}
@media screen and (min-width: 768px) {
  .specials__bg {
    position: absolute;
    background: #EFEFEF;
    width: 100%;
    height: 74%;
    bottom: 0;
    top: 0;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .specials .columns.is-vcentered {
    text-align: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*# sourceMappingURL=superfunboxes.css.map */
