.sub-product-container_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (min-width: 769px) {
  .sub-product-container_center {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media (min-width: 1025px) {
  .sub-product-container_center {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.sub-product-title {
  display: none;
}
@media (min-width: 769px) {
  .sub-product-title {
    display: block;
    color: #000;
    font-size: 28px;
    font-weight: 400;
  }
}
@media (min-width: 1025px) {
  .sub-product-title {
    font-size: 32px;
  }
}
@media (min-width: 769px) {
  .sub-product-tabs {
    margin: 40px 0;
  }
}
@media (min-width: 1025px) {
  .sub-product-tabs {
    margin: 50px 0;
  }
}
.sub-product-tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sub-product-tabs_head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 769px) {
  .sub-product-tabs_head {
    gap: 15px;
  }
}
@media (min-width: 1025px) {
  .sub-product-tabs_head {
    gap: 20px;
  }
}
.sub-product-tabs_head .tabs_head_item {
  padding: 10px 15px;
  color: #333;
  background-color: #ededed;
  border-radius: 25px;
  font-size: 14px;
}
@media (min-width: 769px) {
  .sub-product-tabs_head .tabs_head_item {
    font-size: 16px;
    border-radius: 30px;
    padding: 12px 18px;
  }
}
@media (min-width: 1025px) {
  .sub-product-tabs_head .tabs_head_item {
    font-size: 20px;
    padding: 14px 20px;
  }
}
.sub-product-tabs_head .tabs_head_item {
  cursor: pointer;
}
.sub-product-tabs_head .tabs_head_item:hover,
.sub-product-tabs_head .active {
  background-color: #11a897;
  color: #fff;
}
.tabs-body-tolerance {
  width: 100%;
}
.tabs_body_item {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  gap: 10px;
  margin: 20px 0;
}
@media (min-width: 769px) {
  .tabs_body_item {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
  }
}
@media (min-width: 1025px) {
  .tabs_body_item {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 60px 0;
  }
}
.sub-product-card {
  display: block;
}
.sub-product-card .name {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  padding: 10px 0;
  background-color: #24242499;
  text-align: center;
  transition: background-color 0.3s;
}
@media (min-width: 769px) {
  .sub-product-card .name {
    padding: 16px 0;
    font-size: 18px;
  }
}
.sub-product-card {
  border: 1px solid #d8d8d8 !important;
  padding: 10px;
}
.sub-product-card:hover{
    border-color: #11a897 !important;
}
.sub-product-card .img {
  width: 100%;
  overflow: hidden;
  padding-bottom: 105%;
  position: relative;
}
.sub-product-card .img img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 1s;
}
.sub-product-card:hover .name {
  color: #fff;
  background-color: #11a897;
}
.sub-product-card:hover img {
  transform: scale(1.2);
}
