@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap);
@import url(https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
/* --- breakpoints --- */
/* ----- */
:root {
  --c-purple-light: #cdc9ec;
  --c-yellow: #ffa700;
  --c-line: #645c9c;
  --c-blue: #18284a;
  --c-mediumgrey: #797979;
  --c-grey: #131313;
  --c-fgrey: #323232;
  --c-lightgrey: #f1f1f1;
  --c-darkred: #a70009;
  --c-red: #e30713;
  --c-black: black;
}

.categories .cont {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.categories .cont .box .product--cont .btn {
  color: white;
  text-transform: uppercase;
  font-weight: 800;
  padding: 15px 40px;
  font-size: 18px;
  line-height: 16px;
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  transition: padding 0.3s ease-in-out;
  z-index: 1;
}
.categories .cont .box .product--cont .btn:before {
  content: "";
  background-color: var(--c-red);
  height: 100%;
  width: 100%;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.categories .cont .box .product--cont .btn:after {
  content: "";
  height: 100%;
  width: 0;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--c-grey) url(../../../images/arrow-white.svg) no-repeat 97% center;
  background-size: 28px;
  z-index: -1;
  transition: width 0.3s ease-in-out;
}
.categories .cont .box .product--cont .btn:hover:after {
  width: 100%;
}

.wp-block[data-type="acf/categories"] {
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 0px !important;
}

.categories {
  padding: 40px 0;
}
.categories h2 {
  color: var(--c-fgrey);
  text-align: center;
}
.categories .cont {
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-start;
}
.categories .cont .box {
  width: 19%;
  text-align: left;
  text-decoration: none;
  margin: 20px 0.5% 20px;
}
.categories .cont .box .product--image {
  border: 3px solid #dcdcdc;
  box-shadow: 0px 0px 8px #cecece;
}
.categories .cont .box .product--image img {
  width: 100%;
  height: 210px;
  display: block;
  position: relative;
  transition: all 0.5s ease-in-out;
  left: 0;
  top: 0;
  padding: 20px;
  box-sizing: border-box;
  object-fit: contain;
}
.categories .cont .box .product--cont {
  margin-top: 20px;
}
.categories .cont .box .product--cont .title {
  font-weight: 900;
  color: black;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
}
.categories .cont .box .product--cont .price {
  color: black;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  font-weight: 500;
}
.categories .cont .box .product--cont .btn {
  font-weight: 900;
  margin-top: 15px;
  padding: 8px 25px;
  font-size: 14px;
  line-height: 20px;
}
.categories .cont .box:nth-child(5n) {
  margin-right: 0;
}

@media screen and (max-width: 812px) {
  .categories {
    padding: 10px 0;
  }
  .categories .cont .box {
    width: 49%;
  }
}
/*# sourceMappingURL=categories.css.map */
