/* #region home_product (parts/home-products.php, mirrored in sytpl/home5-home_product) */
.home_product {
  position: relative;
  padding: 9rem 0 14.5rem;
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(157, 202, 224, 0.03) 0%, rgba(157, 202, 224, 0.13) 22%, rgba(157, 202, 224, 0.2) 42%, rgba(157, 202, 224, 0.2) 65%, rgba(157, 202, 224, 0.12) 86%, rgba(157, 202, 224, 0) 100%);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .home_product .tcon h2 em.gradient {
    background-image: linear-gradient(180deg, #73bc38 0%, #b8eaa2 100%);
  }
}
.home_product .home_product_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.97rem;
  row-gap: 3.28rem;
  margin-top: 6.6rem;
}
.home_product .home_product_grid .item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 36.27rem;
  padding: 1.6rem 3.7rem 3.5rem;
  border-radius: 2.24rem;
  border: 1px solid #fff;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.63) 100%);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.home_product .home_product_grid .item::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  background: linear-gradient(90deg, #73bc38 0%, #b8eaa2 60%, #73bc38 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
}
.home_product .home_product_grid .item.active::before {
  opacity: 1;
}
.home_product .home_product_grid .item.active {
  box-shadow: 0 1rem 3rem rgba(115, 188, 56, 0.08);
}
.home_product .home_product_grid .img {
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 33.4rem;
  margin: 0 auto;
}
.home_product .home_product_grid .img img {
  transition: transform 0.5s;
}
.home_product .home_product_grid .item:hover .img img {
  transform: scale(1.04);
}
.home_product .home_product_grid .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.4rem;
}
.home_product .home_product_grid .title {
  color: #303030;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3;
  transition: color 0.3s;
}
.home_product .home_product_grid .item.active .title {
  color: var(--primary);
}
.home_product .home_product_grid .arrow {
  display: block;
  flex-shrink: 0;
  width: 2.2rem;
  height: 1.6rem;
  color: var(--primary);
  transition: transform 0.3s;
}
.home_product .home_product_grid .arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
.home_product .home_product_grid .item:hover .arrow {
  transform: translateX(0.5rem);
}
.home_product .btn_box {
  text-align: center;
  margin-top: 5.2rem;
}
.home_product .btn_box .btn {
  font-weight: 700;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .home_product .home_product_grid .title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 896px) {
  .home_product .home_product_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .home_product {
    padding: 50px 0;
  }
  .home_product .home_product_grid {
    column-gap: 12px;
    row-gap: 12px;
    margin-top: 24px;
  }
  .home_product .home_product_grid .item {
    height: auto;
    padding: 12px 12px 14px;
    border-radius: 12px;
  }
  .home_product .home_product_grid .img {
    flex: none;
    height: 120px;
  }
  .home_product .home_product_grid .info {
    gap: 8px;
    margin-top: 10px;
  }
  .home_product .home_product_grid .title {
    font-size: 14px;
  }
  .home_product .home_product_grid .arrow {
    width: 16px;
    height: 12px;
  }
  .home_product .btn_box {
    margin-top: 30px;
  }
}
/* #endregion */
