.categories-block {
  padding-top: 40px;
  padding-bottom: 80px;
}
.categories-content {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.category-block-item {
  text-decoration: none;
}
.category-block-image {
  width: 276px;
  height: 276px;
  background: #5144391a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.category-block-item:hover .category-block-image {
  background-color: #f7bc00;
}
.category-block-image img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  object-position: center;
}
.category-block-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background-color: #f7bc00;
  font-weight: 800;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  align-self: center;
  text-decoration: none;
}
.category-block-all:hover {
  background-color: #e8b000;
}
.category-block-name {
  font-weight: 800;
  font-size: 16px;
  line-height: 22px;
  color: #514439;
  text-align: center;
  margin-top: 10px;
}
.category-block-count {
  font-size: 12px;
  line-height: 16px;
  color: #514439;
  opacity: 0.75;
  text-align: center;
}
.category-block-all-icon {
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 50%;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-block-all-icon svg {
  width: 14px;
  height: 12px;
}
@media only screen and (max-width: 1199px) {
  .category-block-image {
    width: 226px;
    height: 226px;
  }
}
@media only screen and (max-width: 991px) {
  .category-block-image {
    width: 170px;
    height: 170px;
  }
  .category-block-all {
    font-size: 14px;
    width: 110px;
    height: 110px;
  }
}

@media only screen and (max-width: 767px) {
  .category-block-item {
    width: 50%;
    margin-bottom: 20px;
  }
  .categories-content {
    flex-wrap: wrap;
  }
  .category-block-image {
    margin: auto;
  }
  .category-block-all {
    margin: auto;
  }
}
@media only screen and (max-width: 410px) {
  .category-block-image {
    width: 140px;
    height: 140px;
  }
  .category-block-name {
    font-size: 14px;
    line-height: 20px;
  }
  .category-block-all {
    margin-top: 20px;
  }
}
