.product-categories-block {
  position: relative;
}
.product-categories-block .background {
  display: none;
  position: absolute;
  top: 130px;
  right: 0;
  aspect-ratio: 598/1186;
  width: 32%;
  min-width: 540px;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
  max-height: 1050px;
  background-position: right;
}
.product-categories-block > .container {
  padding: 20px 15px;
}
.product-categories-block > .container .title {
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 20px;
}
.product-categories-block > .container .description {
  font-size: 14px;
  line-height: 19px;
  margin: 0 0 20px;
}
.product-categories-block .product-categories {
  margin: 40px 0;
  border-top: 5px solid #00A5C0;
  border-radius: 12px;
  overflow: hidden;
  padding: 15px 8px;
  box-shadow: 4px 3px 14px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  position: relative;
  z-index: 1;
}
.product-categories-block .category {
  width: calc(50% - 16px);
  margin: 15px 8px;
  padding: 6px;
  box-sizing: border-box;
  background: #FFFFFF;
  box-shadow: 0px 2px 6px 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
}
.product-categories-block .category h2 {
  font-size: 14px;
  color: #333;
  padding: 8px 28px 10px 7px;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.product-categories-block .category h2:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 19px;
  height: 19px;
  content: "";
  border: 1px solid #526366;
  border-radius: 50%;
  margin: auto;
  transition: all 0.2s;
}
.product-categories-block .category h2:after {
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin: auto 0;
  transform: rotate(45deg);
  border-top: 2px solid #526366;
  border-right: 2px solid #526366;
  content: " ";
  transition: all 0.2s;
}
.product-categories-block .category > a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.product-categories-block .category > a:hover .name:before {
  background: #526366;
}
.product-categories-block .category > a:hover .name:after {
  border-color: #fff;
}
.product-categories-block .category .image {
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}
.product-categories-block .category .image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 2/1;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .product-categories-block .background {
    display: block;
  }
  .product-categories-block > .container .title {
    font-size: 40px;
    line-height: 32px;
    padding: 0 40px;
  }
  .product-categories-block > .container .description {
    padding: 0 40px;
    font-size: 16px;
    line-height: 22px;
  }
  .product-categories-block .product-categories {
    padding: 40px 30px;
  }
  .product-categories-block .category {
    padding: 10px;
  }
  .product-categories-block .category h2 {
    font-size: 16px;
    line-height: 20px;
    padding: 12px 45px 12px 15px;
  }
  .product-categories-block .category h2:before {
    width: 30px;
    height: 30px;
    right: 5px;
  }
  .product-categories-block .category h2:after {
    width: 8px;
    height: 8px;
    right: 17px;
  }
}
@media (min-width: 1024px) {
  .product-categories-block .product-categories {
    border-top: 9px solid #00A5C0;
  }
  .product-categories-block .category {
    width: calc(25% - 16px);
  }
}
