.category-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  overflow: auto;
  margin-bottom: 45px;
}
.category-tags__item {
  background: #FFFFFF;
  border-radius: 1px;
  position: relative;
  padding: 15px 35px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s;
  margin-bottom: 15px;
}
.category-tags__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background-color: var(--dark);
  border-radius: 1px;
  transition: all 0.3s;
}
.category-tags__item.active {
  border-color: var(--main);
  --color: var(--main);
}
.category-tags__item.active:before {
  background: var(--main);
}
.category-tags__item:hover {
  border-color: var(--main);
  --color: var(--main);
}
.category-tags__item:hover:before {
  background: var(--main);
}
.category-item {
  display: block;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.category-item:before {
  content: "";
  padding-bottom: 100%;
  display: block;
}
.category-item:after {
  content: "";
  display: block;
  background-color: var(--dark);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  transition: all 0.3s;
}
.category-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  --color: #F4F1E9;
  z-index: 2;
  opacity: 1;
  transition: all 0.3s;
  text-align: center;
  padding: 0 30px;
}
.category-link {
  background-color: var(--main);
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.category-link__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  --color: #F4F1E9;
  text-align: center;
  padding: 0 30px;
}
.category-link:hover {
  background-color: var(--grey98);
}
.category-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 45px;
}

.category-page .seo-text {
  margin-top: 40px;
}
.category-page .advantages-block {
  margin-top: 40px;
}
.category-page .advantages-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.category-page .advantages-wrap .advantage-item {
  display: flex;
  align-items: center;
  padding: 15px 35px;
  background: #FFFFFF;
  border-radius: 1px;
}
.category-page .advantages-wrap .advantage-item > *:not(:last-child) {
  margin-right: 21px;
}
.category-page .advantages-wrap .advantage-item__icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.category-page .number-block {
  padding: 60px 0;
}
.category-page .number-title {
  position: relative;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.category-page .number-title:after {
  content: "";
  width: 230px;
  height: 1px;
  background: #A0A0A4;
  position: absolute;
  bottom: 0;
}
.category-page .number-wrap {
  display: flex;
  gap: 30px;
}
.category-page .number-item {
  text-align: center;
  flex-grow: 1;
}
.category-page .number-item__title {
  margin-bottom: 20px;
}
.category-page .number-item__number {
  --color: var(--main);
}

@media (max-width: 1199px) {
  .category-page .number-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (max-width: 992px) {
  .category-wrap {
    gap: 15px;
  }
  .category-page .advantages-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .category-page .number-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .category-tags {
    margin-right: -15px;
  }
  .category-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-item:after {
    opacity: 0.7;
  }
  .category-title {
    opacity: 1;
    padding: 0 10px;
  }
  .category-page .advantages-block {
    margin-top: 20px;
  }
  .category-page .seo-text {
    margin-top: 20px;
  }
}
@media (max-width: 592px) {
  .category-page .advantages-wrap {
    grid-template-columns: 1fr;
  }
  .category-page .advantages-wrap .advantage-item {
    padding: 15px 20px;
  }
  .category-page .advantages-wrap .advantage-item > *:not(:last-child) {
    margin-right: 15px;
  }
  .category-page .advantages-wrap .advantage-item__icon {
    width: 40px;
    height: 40px;
  }
  .category-page .number-block {
    padding: 30px 0;
  }
  .category-page .number-title {
    margin-bottom: 25px;
  }
  .category-page .number-wrap {
    grid-template-columns: 1fr;
  }
  .category-page .number-item__title {
    margin-bottom: 10px;
  }
  .category-page .number-item__title br {
    display: none;
  }
}
@media (max-width: 498px) {
  .category-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}/*# sourceMappingURL=taxonomy.css.map */