.col-sm-4.product-item-big-card {
  padding-bottom: 26px;
}
.product-item{
  transition: all .3s;
  padding: clamp(18px, 3vw, 25px);
  cursor: pointer;
  border-radius: 30px;
  box-shadow: 0 0 13px #00000016;
  height: 300px;
  &:hover {
    box-shadow: 0 6px 27px #00000026;
  }
  .product_item_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
    flex-direction: column;
    .item_title{
      color: black;
      font-size: 20px;
      font-weight: 600;
    }
  }
}