.product-section{
	margin: 0;
}
.product-section .section-title {
	display: flex;
	text-align: left;
	justify-content: space-between;
	align-items: flex-end;
}

.product-section .section-title .title {
	width: 50%;
}

.product-section {
	background: #f0e4d3;
	padding: 90px 0;
}

.product-section .title-text {
	width: 31%;
}

.product-section .section-title p {
	max-width: 100%;
}

.product-section .section-title .title h2 {
	margin: 0;
}

.product-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -9px -18px -9px;
}

.product-wrapper .product-col {
	width: 33.33%;
	padding: 0 9px;
	margin-bottom: 18px;
}

.product-item {
	border-radius: 26px;
	overflow: hidden;
	box-shadow: 0 14px 42px rgba(23, 21, 20, .08);
	transition: .3s ease;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.product-description {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
	padding: 22px;
	background-color: #ffffff;
}

.product-image img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s;
}

.product-item:hover .product-image img {
	transform: scale(1.07);
}

.product-image {
	height: 236px;
	position: relative;
	overflow: hidden;
}

.product-description span {
	display: inline-block;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--rust);
}

.product-description h3 {
	font-size: 24px;
	margin: 8px 0 10px;
	letter-spacing: -.02em;
}

.product-btn {
	margin-top: 15px;
}

.product-btn .read-more-btn {
	font-weight: 900;
	color: var(--rust);
}

.product-btn .read-more-btn:after {
	content: '→';
	font-weight: 900;
	color: var(--rust);
	margin-left: 8px;
	transition: all .3s;
}

.product-item:hover .read-more-btn::after {
	margin-left: 12px;
}

@media only screen and (max-width: 1199px) {
	.product-section {
		padding: 60px 0;
	}
}

@media only screen and (max-width: 991px) {
	.product-description h3 {
    font-size: 20px;
}
	.product-wrapper .product-col {
		width: 50%;
	}

	.product-section {
		padding: 40px 0;
	}

	.product-section .section-title .title {
		width: 100%;
		margin-bottom: 10px;
	}

	.product-section .title-text {
		width: 100%;
	}

	.product-section .section-title {
		flex-wrap: wrap;
	}

	.product-section .section-title p {
		max-width: 100%;
	}

	.section-title {
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 767px) {
	.product-wrapper .product-col {
		width: 100%;
	}
}