.producthover_bxuhc {
  box-sizing: border-box;
  width: 100%;
  margin: var(--margin_tb) 0;
  color: #333;
  background: #fff;
  --theme_color_alpha_22: color-mix(in srgb, var(--theme_color) 22%, transparent);
}

.producthover_bxuhc * {
  box-sizing: border-box;
}

.producthover_bxuhc__inner {
  width: 100%;
  max-width: var(--custom-content-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--padding_lr);
  padding-right: var(--padding_lr);
}

.producthover_bxuhc__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.producthover_bxuhc__item {
  min-width: 0;
  height: 400px;
  padding: 0px;
  overflow: visible;
  background: transparent;
  transition-property: box-shadow, border-color;
  transition-duration: .5s;
  transition-timing-function: ease;
}

.producthover_bxuhc__item:focus-within {
  box-shadow: 0 0 0 2px var(--theme_color_alpha_22);
}

.producthover_bxuhc__card {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.producthover_bxuhc__card:not(a) {
  cursor: default;
}

.producthover_bxuhc__media.custom_image_wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #f4f4f4;
}

.producthover_bxuhc__image.custom_image {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition-property: transform;
  transition-duration: .5s;
  transition-timing-function: ease;
}

.producthover_bxuhc__hover-panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.producthover_bxuhc__hover-title {
  position: relative;
  display: block;
  width: 60%;
  padding: .5rem 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
}

.producthover_bxuhc__hover-title::before,
.producthover_bxuhc__hover-title::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 60%;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
  transition: width .5s ease;
}

.producthover_bxuhc__hover-title::before {
  top: 0;
}

.producthover_bxuhc__hover-title::after {
  bottom: 0;
}

.producthover_bxuhc__body {
  display: block;
  height: 130px;
  padding: 20px 20px 10px;
  overflow: visible;
  border: 1px solid #f2f2f2;
  background: #fff;
}

.producthover_bxuhc__title {
  display: block;
  margin: 0;
  overflow: hidden;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.producthover_bxuhc__more {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  max-width: 100%;
  height: 38px;
  margin-top: 10px;
  padding-left: 24px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 38px;
  transition: color .5s ease, padding-left .5s ease, padding-right .5s ease;
}

.producthover_bxuhc__more-mark {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--theme_color);
  transform: translateY(-50%);
  transition-property: width, border-radius;
  transition-duration: .5s;
  transition-timing-function: ease;
}

.producthover_bxuhc__more-text {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.producthover_bxuhc__card:hover .producthover_bxuhc__image.custom_image,
.producthover_bxuhc__card:focus-visible .producthover_bxuhc__image.custom_image {
  transform: translate(-50%, -50%) scale(1.1);
}

.producthover_bxuhc__card:hover .producthover_bxuhc__hover-panel,
.producthover_bxuhc__card:focus-visible .producthover_bxuhc__hover-panel {
  opacity: 1;
}

.producthover_bxuhc__card:hover .producthover_bxuhc__hover-title::before,
.producthover_bxuhc__card:hover .producthover_bxuhc__hover-title::after,
.producthover_bxuhc__card:focus-visible .producthover_bxuhc__hover-title::before,
.producthover_bxuhc__card:focus-visible .producthover_bxuhc__hover-title::after {
  width: 1rem;
}

.producthover_bxuhc__more:hover,
.producthover_bxuhc__card:focus-visible .producthover_bxuhc__more {
  padding-right: 24px;
  color: #fff;
}

.producthover_bxuhc__more:hover .producthover_bxuhc__more-mark,
.producthover_bxuhc__card:focus-visible .producthover_bxuhc__more-mark {
  width: 100%;
  border-radius: 25px;
}

.producthover_bxuhc__card:active .producthover_bxuhc__image.custom_image {
  transform: translate(-50%, -50%) scale(1.06);
}

.rtlAr .producthover_bxuhc__more {
  padding-left: 0;
  padding-right: 24px;
}

.rtlAr .producthover_bxuhc__more:hover,
.rtlAr .producthover_bxuhc__card:focus-visible .producthover_bxuhc__more {
  padding-left: 24px;
}

.rtlAr .producthover_bxuhc__more-mark {
  left: auto;
  right: 0;
}

@media (max-width: 1024px) {
  .producthover_bxuhc__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .producthover_bxuhc__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .producthover_bxuhc__grid{
    gap:20px;
  }
  .producthover_bxuhc__item{
    height: auto;
  }

  .producthover_bxuhc__grid {
    grid-template-columns: 1fr;
  }
}
