/*============================================================================================
   Start Category Area
=============================================================================================*/
.category.style-1 .category-wrapper {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.category.style-1 .category-card {
  margin: auto;
}
.category.style-1 .category-img {
  width: 132px !important;
  height: 132px !important;
  border-radius: 20px;
}
.category.style-1 .category-img img {
  width: 132px !important;
  height: 132px !important;
  border-radius: 20px;
  overflow: hidden;
  object-fit: cover;
  transition: all 0.3s ease;
}
.category.style-1 .category-img {
  overflow: hidden;
  transition: all 0.3s ease;
}
.category.style-1 .category-card:hover .category-img img {
  transform: scale(1.04);
}
.category.style-1 .category-info p {
  border-radius: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  text-align: center;
  margin-top: 10px;
  color: var(--title-color);
  transition: all 0.3s ease;
}
.category.style-1 .category-card:hover .category-info p {
  color: var(--primary-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .category.style-1 .category-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .category.style-1 .category-wrapper {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .category.style-1 .category-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .category.style-1 .category-img img {
    width: 72px !important;
    height: 72px !important;
    border-radius: 12px;
  }
  .category.style-1 .category-img {
    width: 72px !important;
    height: 72px !important;
    border-radius: 12px;
  }

  .category.style-1 .category-info p {
    font-size: 12px;
    margin-top: 8px;
  }
}

/*============================================================================================
   End Category Area
=============================================================================================*/
