.sec-category {
 margin-bottom: 43px;
}
@media all and (max-width: 767px) {
 .sec-category {
  margin-bottom: 25px;
 }
}
.sec-category__lst {
 /* max-width: 1000px; */
 margin: 0 auto;
 display: flex;
 justify-content: center;
 align-items: flex-end;
 flex-wrap: wrap;
}
@media all and (max-width: 767px) {
 .sec-category__lst {
  padding: 0 15px;
 }
}
.sec-category__lst--item {
 min-width: 180px;
 margin: 0 10px 25px;
 display: flex;
 align-items: center;
 justify-content: center;
 min-height: 50px;
 padding: 10px;
 background-color: #e8e8e8;
 transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
 border-radius: 8px 8px 0 0;
}
.sec-category__lst--item span {
 font-size: 18px;
 font-weight: bold;
 line-height: 1.4;
 text-transform: capitalize;
}
@media all and (min-width: 1024px) {
 .sec-category__lst--item:hover {
  border: 1px solid #e60012;
 }
}
@media all and (max-width: 767px) {
 .sec-category__lst--item {
  min-width: 48%;
  /* max-width: 250px; */
  min-height: 44px;
  margin: 0 1% 15px;
 }
 .sec-category__lst--item span {
  line-height: 1.4;
 }
}
.sec-category__lst--item.active {
 background-color: #e60012;
 min-height: 65px;
}
@media all and (max-width: 767px) {
 .sec-category__lst--item.active {
  min-height: 55px;
 }
}
.sec-category__lst--item.active span {
 color: #fff;
 font-size: 20px;
}
