.product {
  padding: 50px 2%;
}

.product_title {
}

.product_box_box {
  display: flex;
  justify-content: space-between;
}

.product_box {
  width: 48%;
  margin-top: 25px;
  margin-bottom: 10px;
  background-color: #fbfbfb;
  overflow: hidden;
  position: relative;
}

.product_box:hover span {
  color: #024f52;
}

.product_box img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.product_box:hover img {
  transform: scale(1.05);
}

.product_box_text {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  font-size: 16px;
}

/* .product_box_text span:nth-child(1) {

} */

@media (max-width: 720px) {
  .product {
    padding: 10px 3%;
  }
  .product_box_box {
    flex-direction: column;
  }

  .product_box {
    width: 100%;
  }

  .product_box {
    margin-top: 18px;
  }
}
