.product {
	background-color: #fff;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	border-radius: 8px;
  transition: all 0.3s;
}

.product:hover {
	cursor: pointer;
  background-color: #f7f7f7;
  transform: translateY(-5px);
}

.product img {
	min-width: 50%;
	max-width: 50%;
	height: auto;
	margin-right: 20px;
  max-height: 410px;
  object-fit: cover;
  object-position: center;
}
  
.product-details {
	padding: 15px;
	flex: 1;
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
  justify-content: space-between;
  max-width: 45%;
}

.product-details p {
  word-wrap: break-word;
  /* -webkit-line-clamp: 5; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 82px;
  margin-block-end: 0px;
  font-size: 14px;
}

.read-more {
  font-style: italic;
  font-size: small;
  margin-block-end: 1em;
}

.price {
  color: white;
  background-color: #C80001;
  border-radius: 50px;
  padding-top: 12px;
  padding-right: 10px;
  padding-bottom: 12px;
  padding-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  gap: 10px;
  font-family: Tektur;
  font-weight: 600;
  font-size: 13px;
  line-height: 22.53px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.property-select {
  background-color: #E8EBF0;
  border-radius: 50px;
  padding-top: 12px;
  padding-right: 10px;
  padding-bottom: 12px;
  padding-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  gap: 10px;
  font-family: Tektur;
  font-weight: 600;
  font-size: 13px;
  line-height: 22.53px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-select {
  background-color: rgba(19, 24, 34, 0.029999999329447746) !important;
  border-radius: 5px;
  /* color: rgba(19, 24, 34, 0.4000000059604645) !important; */
	color: black !important;
  text-align: left;
  vertical-align: text-top;
  font-size: 14px;
  font-family: Tektur;
  line-height: 18.2px;
  outline: none;
  border: none;
  padding: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 768px) {
	.product {
		flex-direction: column;
		align-items: center;
	}

  .product-details>h3 {
    font-size: 14px;
  }

	.product img {
		margin-bottom: 10px;
	}

  .product-details p {
    font-size: 11px;
  }
  .read-more {
    font-size: x-small;
  }
}