.subcategories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.subcategories img {
  max-width: 100%;
  -webkit-user-drag: none;
  user-drag: none;
}
.subcategories > a > div {
  position: relative;
}
.subcategories > a > div:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  transition: .2s;
}
.subcategories > a:hover > div:before {
  background: rgba(0, 0, 0, .1);
}
.subcategories  > a > span {
  color: #3d3d3d;
  font-size: 16px;
  display: block;
  width: 100%;
  text-align: center;
  min-height: 45px;
  margin-top: 10px;
}
.subcategories > a:hover > span {
  font-weight: bold;
}

@media (max-width: 1199.98px) {
  .subcategories {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 767.98px) {
  .subcategories {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}