.promoted-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  width: 50%;
}

@media (max-width: 1023px) {
  .promoted-categories {
    width: 100%;
  }
}

.promoted-categories > a {
  display: block;
  position: relative;
  background-color: var(--color, #ececec);
  width: calc(100% / 3);
  text-align: center;
  padding-top: 1em;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.17em;
  overflow: hidden;
}

.promoted-categories > a .outer {
  position: relative;
  padding-top: 80%;
}

@media (max-width: 1023px) {
  .promoted-categories > a .outer {
    padding-top: 50%;
  }
}

.promoted-categories > a .outer > .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media (max-width: 1023px) {
  .promoted-categories > a {
    width: 100%;
  }
}

.promoted-categories > a img {
  display: block;
  width: 80%;
  position: absolute;
  left: 10%;
  top: 3em;
  -webkit-transition: -webkit-transform .2s linear;
  transition: -webkit-transform .2s linear;
  transition: transform .2s linear;
  transition: transform .2s linear, -webkit-transform .2s linear;
}

@media (max-width: 1023px) {
  .promoted-categories > a img {
    width: 50%;
    left: 25%;
  }
}

.promoted-categories > a:hover img,
.promoted-categories > a:focus img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}
/*# sourceMappingURL=homepage.css.map */